2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2008-02-06 12:39:01 +03:00
|
|
|
/*
|
|
|
|
* w1-gpio interface to platform code
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Ville Syrjala <syrjala@sci.fi>
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_W1_GPIO_H
|
|
|
|
#define _LINUX_W1_GPIO_H
|
|
|
|
|
2017-09-26 21:27:09 +03:00
|
|
|
struct gpio_desc;
|
|
|
|
|
2008-02-06 12:39:01 +03:00
|
|
|
/**
|
|
|
|
* struct w1_gpio_platform_data - Platform-dependent data for w1-gpio
|
|
|
|
*/
|
|
|
|
struct w1_gpio_platform_data {
|
2017-09-26 21:27:09 +03:00
|
|
|
struct gpio_desc *gpiod;
|
|
|
|
struct gpio_desc *pullup_gpiod;
|
2009-06-18 03:28:15 +04:00
|
|
|
void (*enable_external_pullup)(int enable);
|
2014-01-24 03:56:18 +04:00
|
|
|
unsigned int pullup_duration;
|
2008-02-06 12:39:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _LINUX_W1_GPIO_H */
|