1 From 5edc95eee5ef69d7bfe03eede0e711e8f196dedc Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Wed, 8 May 2013 11:46:50 +0100
4 Subject: [PATCH] enabling the realtime clock 1-wire chip DS1307 and 1-wire on
7 1-wire: Add support for configuring pin for w1-gpio kernel module
8 See: https://github.com/raspberrypi/linux/pull/457
10 Add bitbanging pullups, use them for w1-gpio
12 Allows parasite power to work, uses module option pullup=1
14 bcm2708: Ensure 1-wire pullup is disabled by default, and expose as module parameter
16 Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
18 w1-gpio: Add gpiopin module parameter and correctly free up gpio pull-up pin, if set
20 Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
22 w1-gpio: Sort out the pullup/parasitic power tangle
24 drivers/w1/masters/w1-gpio.c | 69 ++++++++++++++++++++++++++++++++++++++++----
25 drivers/w1/w1.h | 6 ++++
26 drivers/w1/w1_int.c | 14 +++++++++
27 drivers/w1/w1_io.c | 18 ++++++++++--
28 include/linux/w1-gpio.h | 1 +
29 5 files changed, 99 insertions(+), 9 deletions(-)
31 --- a/drivers/w1/masters/w1-gpio.c
32 +++ b/drivers/w1/masters/w1-gpio.c
35 #include "../w1_int.h"
37 +static int w1_gpio_pullup = 0;
38 +static int w1_gpio_pullup_orig = 0;
39 +module_param_named(pullup, w1_gpio_pullup, int, 0);
40 +MODULE_PARM_DESC(pullup, "Enable parasitic power (power on data) mode");
41 +static int w1_gpio_pullup_pin = -1;
42 +static int w1_gpio_pullup_pin_orig = -1;
43 +module_param_named(extpullup, w1_gpio_pullup_pin, int, 0);
44 +MODULE_PARM_DESC(extpullup, "GPIO external pullup pin number");
45 +static int w1_gpio_pin = -1;
46 +static int w1_gpio_pin_orig = -1;
47 +module_param_named(gpiopin, w1_gpio_pin, int, 0);
48 +MODULE_PARM_DESC(gpiopin, "GPIO pin number");
50 static u8 w1_gpio_set_pullup(void *data, int delay)
52 struct w1_gpio_platform_data *pdata = data;
53 @@ -67,6 +80,16 @@ static u8 w1_gpio_read_bit(void *data)
54 return gpio_get_value(pdata->pin) ? 1 : 0;
57 +static void w1_gpio_bitbang_pullup(void *data, u8 on)
59 + struct w1_gpio_platform_data *pdata = data;
62 + gpio_direction_output(pdata->pin, 1);
64 + gpio_direction_input(pdata->pin);
67 #if defined(CONFIG_OF)
68 static const struct of_device_id w1_gpio_dt_ids[] = {
69 { .compatible = "w1-gpio" },
70 @@ -80,6 +103,7 @@ static int w1_gpio_probe_dt(struct platf
71 struct w1_gpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
72 struct device_node *np = pdev->dev.of_node;
76 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
78 @@ -88,6 +112,9 @@ static int w1_gpio_probe_dt(struct platf
79 if (of_get_property(np, "linux,open-drain", NULL))
80 pdata->is_open_drain = 1;
82 + if (of_property_read_u32(np, "rpi,parasitic-power", &value) == 0)
83 + pdata->parasitic_power = (value != 0);
85 gpio = of_get_gpio(np, 0);
87 if (gpio != -EPROBE_DEFER)
88 @@ -103,7 +130,7 @@ static int w1_gpio_probe_dt(struct platf
89 if (gpio == -EPROBE_DEFER)
91 /* ignore other errors as the pullup gpio is optional */
92 - pdata->ext_pullup_enable_pin = gpio;
93 + pdata->ext_pullup_enable_pin = (gpio >= 0) ? gpio : -1;
95 pdev->dev.platform_data = pdata;
97 @@ -113,13 +140,15 @@ static int w1_gpio_probe_dt(struct platf
98 static int w1_gpio_probe(struct platform_device *pdev)
100 struct w1_bus_master *master;
101 - struct w1_gpio_platform_data *pdata;
102 + struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
105 - if (of_have_populated_dt()) {
106 - err = w1_gpio_probe_dt(pdev);
109 + if(pdata == NULL) {
110 + if (of_have_populated_dt()) {
111 + err = w1_gpio_probe_dt(pdev);
117 pdata = dev_get_platdata(&pdev->dev);
118 @@ -136,6 +165,22 @@ static int w1_gpio_probe(struct platform
122 + w1_gpio_pin_orig = pdata->pin;
123 + w1_gpio_pullup_pin_orig = pdata->ext_pullup_enable_pin;
124 + w1_gpio_pullup_orig = pdata->parasitic_power;
126 + if(gpio_is_valid(w1_gpio_pin)) {
127 + pdata->pin = w1_gpio_pin;
128 + pdata->ext_pullup_enable_pin = -1;
129 + pdata->parasitic_power = -1;
131 + pdata->parasitic_power |= w1_gpio_pullup;
132 + if(gpio_is_valid(w1_gpio_pullup_pin)) {
133 + pdata->ext_pullup_enable_pin = w1_gpio_pullup_pin;
136 + dev_info(&pdev->dev, "gpio pin %d, external pullup pin %d, parasitic power %d\n", pdata->pin, pdata->ext_pullup_enable_pin, pdata->parasitic_power);
138 err = devm_gpio_request(&pdev->dev, pdata->pin, "w1");
140 dev_err(&pdev->dev, "gpio_request (pin) failed\n");
141 @@ -165,6 +210,14 @@ static int w1_gpio_probe(struct platform
142 master->set_pullup = w1_gpio_set_pullup;
145 + if (pdata->parasitic_power) {
146 + if (pdata->is_open_drain)
147 + printk(KERN_ERR "w1-gpio 'pullup'(parasitic power) "
148 + "option doesn't work with open drain GPIO\n");
150 + master->bitbang_pullup = w1_gpio_bitbang_pullup;
153 err = w1_add_master_device(master);
155 dev_err(&pdev->dev, "w1_add_master device failed\n");
156 @@ -195,6 +248,10 @@ static int w1_gpio_remove(struct platfor
158 w1_remove_master_device(master);
160 + pdata->pin = w1_gpio_pin_orig;
161 + pdata->ext_pullup_enable_pin = w1_gpio_pullup_pin_orig;
162 + pdata->parasitic_power = w1_gpio_pullup_orig;
167 --- a/drivers/w1/w1.h
168 +++ b/drivers/w1/w1.h
169 @@ -173,6 +173,12 @@ struct w1_bus_master
171 u8 (*set_pullup)(void *, int);
174 + * Turns the pullup on/off in bitbanging mode, takes an on/off argument.
175 + * @return -1=Error, 0=completed
177 + void (*bitbang_pullup) (void *, u8);
179 void (*search)(void *, struct w1_master *,
180 u8, w1_slave_found_callback);
182 --- a/drivers/w1/w1_int.c
183 +++ b/drivers/w1/w1_int.c
184 @@ -122,6 +122,20 @@ int w1_add_master_device(struct w1_bus_m
188 + /* bitbanging hardware uses bitbang_pullup, other hardware uses set_pullup
189 + * and takes care of timing itself */
190 + if (!master->write_byte && !master->touch_bit && master->set_pullup) {
191 + printk(KERN_ERR "w1_add_master_device: set_pullup requires "
192 + "write_byte or touch_bit, disabling\n");
193 + master->set_pullup = NULL;
196 + if (master->set_pullup && master->bitbang_pullup) {
197 + printk(KERN_ERR "w1_add_master_device: set_pullup should not "
198 + "be set when bitbang_pullup is used, disabling\n");
199 + master->set_pullup = NULL;
202 /* Lock until the device is added (or not) to w1_masters. */
203 mutex_lock(&w1_mlock);
204 /* Search for the first available id (starting at 1). */
205 --- a/drivers/w1/w1_io.c
206 +++ b/drivers/w1/w1_io.c
207 @@ -134,10 +134,22 @@ static void w1_pre_write(struct w1_maste
208 static void w1_post_write(struct w1_master *dev)
210 if (dev->pullup_duration) {
211 - if (dev->enable_pullup && dev->bus_master->set_pullup)
212 - dev->bus_master->set_pullup(dev->bus_master->data, 0);
214 + if (dev->enable_pullup) {
215 + if (dev->bus_master->set_pullup) {
216 + dev->bus_master->set_pullup(dev->
219 + } else if (dev->bus_master->bitbang_pullup) {
221 + bitbang_pullup(dev->bus_master->data, 1);
222 msleep(dev->pullup_duration);
224 + bitbang_pullup(dev->bus_master->data, 0);
227 + msleep(dev->pullup_duration);
230 dev->pullup_duration = 0;
233 --- a/include/linux/w1-gpio.h
234 +++ b/include/linux/w1-gpio.h
236 struct w1_gpio_platform_data {
238 unsigned int is_open_drain:1;
239 + unsigned int parasitic_power:1;
240 void (*enable_external_pullup)(int enable);
241 unsigned int ext_pullup_enable_pin;
242 unsigned int pullup_duration;