2008-02-06 09:39:01 +00:00
|
|
|
/*
|
|
|
|
* w1-gpio interface to platform code
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Ville Syrjala <syrjala@sci.fi>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_W1_GPIO_H
|
|
|
|
#define _LINUX_W1_GPIO_H
|
|
|
|
|
2017-09-26 18:27:09 +00:00
|
|
|
struct gpio_desc;
|
|
|
|
|
2008-02-06 09:39:01 +00:00
|
|
|
/**
|
|
|
|
* struct w1_gpio_platform_data - Platform-dependent data for w1-gpio
|
|
|
|
*/
|
|
|
|
struct w1_gpio_platform_data {
|
2017-09-26 18:27:09 +00:00
|
|
|
struct gpio_desc *gpiod;
|
|
|
|
struct gpio_desc *pullup_gpiod;
|
2009-06-17 23:28:15 +00:00
|
|
|
void (*enable_external_pullup)(int enable);
|
2014-01-23 23:56:18 +00:00
|
|
|
unsigned int pullup_duration;
|
2008-02-06 09:39:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _LINUX_W1_GPIO_H */
|