xref: /openbmc/linux/drivers/w1/masters/w1-gpio.c (revision e23feb16)
1 /*
2  * w1-gpio - GPIO w1 bus master driver
3  *
4  * Copyright (C) 2007 Ville Syrjala <syrjala@sci.fi>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation.
9  */
10 
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/slab.h>
15 #include <linux/w1-gpio.h>
16 #include <linux/gpio.h>
17 #include <linux/of_platform.h>
18 #include <linux/of_gpio.h>
19 #include <linux/err.h>
20 #include <linux/of.h>
21 
22 #include "../w1.h"
23 #include "../w1_int.h"
24 
25 static void w1_gpio_write_bit_dir(void *data, u8 bit)
26 {
27 	struct w1_gpio_platform_data *pdata = data;
28 
29 	if (bit)
30 		gpio_direction_input(pdata->pin);
31 	else
32 		gpio_direction_output(pdata->pin, 0);
33 }
34 
35 static void w1_gpio_write_bit_val(void *data, u8 bit)
36 {
37 	struct w1_gpio_platform_data *pdata = data;
38 
39 	gpio_set_value(pdata->pin, bit);
40 }
41 
42 static u8 w1_gpio_read_bit(void *data)
43 {
44 	struct w1_gpio_platform_data *pdata = data;
45 
46 	return gpio_get_value(pdata->pin) ? 1 : 0;
47 }
48 
49 #if defined(CONFIG_OF)
50 static struct of_device_id w1_gpio_dt_ids[] = {
51 	{ .compatible = "w1-gpio" },
52 	{}
53 };
54 MODULE_DEVICE_TABLE(of, w1_gpio_dt_ids);
55 #endif
56 
57 static int w1_gpio_probe_dt(struct platform_device *pdev)
58 {
59 	struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
60 	struct device_node *np = pdev->dev.of_node;
61 
62 	pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
63 	if (!pdata)
64 		return -ENOMEM;
65 
66 	if (of_get_property(np, "linux,open-drain", NULL))
67 		pdata->is_open_drain = 1;
68 
69 	pdata->pin = of_get_gpio(np, 0);
70 	pdata->ext_pullup_enable_pin = of_get_gpio(np, 1);
71 	pdev->dev.platform_data = pdata;
72 
73 	return 0;
74 }
75 
76 static int w1_gpio_probe(struct platform_device *pdev)
77 {
78 	struct w1_bus_master *master;
79 	struct w1_gpio_platform_data *pdata;
80 	int err;
81 
82 	if (of_have_populated_dt()) {
83 		err = w1_gpio_probe_dt(pdev);
84 		if (err < 0) {
85 			dev_err(&pdev->dev, "Failed to parse DT\n");
86 			return err;
87 		}
88 	}
89 
90 	pdata = pdev->dev.platform_data;
91 
92 	if (!pdata) {
93 		dev_err(&pdev->dev, "No configuration data\n");
94 		return -ENXIO;
95 	}
96 
97 	master = kzalloc(sizeof(struct w1_bus_master), GFP_KERNEL);
98 	if (!master) {
99 		dev_err(&pdev->dev, "Out of memory\n");
100 		return -ENOMEM;
101 	}
102 
103 	err = gpio_request(pdata->pin, "w1");
104 	if (err) {
105 		dev_err(&pdev->dev, "gpio_request (pin) failed\n");
106 		goto free_master;
107 	}
108 
109 	if (gpio_is_valid(pdata->ext_pullup_enable_pin)) {
110 		err = gpio_request_one(pdata->ext_pullup_enable_pin,
111 				       GPIOF_INIT_LOW, "w1 pullup");
112 		if (err < 0) {
113 			dev_err(&pdev->dev, "gpio_request_one "
114 					"(ext_pullup_enable_pin) failed\n");
115 			goto free_gpio;
116 		}
117 	}
118 
119 	master->data = pdata;
120 	master->read_bit = w1_gpio_read_bit;
121 
122 	if (pdata->is_open_drain) {
123 		gpio_direction_output(pdata->pin, 1);
124 		master->write_bit = w1_gpio_write_bit_val;
125 	} else {
126 		gpio_direction_input(pdata->pin);
127 		master->write_bit = w1_gpio_write_bit_dir;
128 	}
129 
130 	err = w1_add_master_device(master);
131 	if (err) {
132 		dev_err(&pdev->dev, "w1_add_master device failed\n");
133 		goto free_gpio_ext_pu;
134 	}
135 
136 	if (pdata->enable_external_pullup)
137 		pdata->enable_external_pullup(1);
138 
139 	if (gpio_is_valid(pdata->ext_pullup_enable_pin))
140 		gpio_set_value(pdata->ext_pullup_enable_pin, 1);
141 
142 	platform_set_drvdata(pdev, master);
143 
144 	return 0;
145 
146  free_gpio_ext_pu:
147 	if (gpio_is_valid(pdata->ext_pullup_enable_pin))
148 		gpio_free(pdata->ext_pullup_enable_pin);
149  free_gpio:
150 	gpio_free(pdata->pin);
151  free_master:
152 	kfree(master);
153 
154 	return err;
155 }
156 
157 static int w1_gpio_remove(struct platform_device *pdev)
158 {
159 	struct w1_bus_master *master = platform_get_drvdata(pdev);
160 	struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
161 
162 	if (pdata->enable_external_pullup)
163 		pdata->enable_external_pullup(0);
164 
165 	if (gpio_is_valid(pdata->ext_pullup_enable_pin))
166 		gpio_set_value(pdata->ext_pullup_enable_pin, 0);
167 
168 	w1_remove_master_device(master);
169 	gpio_free(pdata->pin);
170 	kfree(master);
171 
172 	return 0;
173 }
174 
175 #ifdef CONFIG_PM
176 
177 static int w1_gpio_suspend(struct platform_device *pdev, pm_message_t state)
178 {
179 	struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
180 
181 	if (pdata->enable_external_pullup)
182 		pdata->enable_external_pullup(0);
183 
184 	return 0;
185 }
186 
187 static int w1_gpio_resume(struct platform_device *pdev)
188 {
189 	struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
190 
191 	if (pdata->enable_external_pullup)
192 		pdata->enable_external_pullup(1);
193 
194 	return 0;
195 }
196 
197 #else
198 #define w1_gpio_suspend	NULL
199 #define w1_gpio_resume	NULL
200 #endif
201 
202 static struct platform_driver w1_gpio_driver = {
203 	.driver = {
204 		.name	= "w1-gpio",
205 		.owner	= THIS_MODULE,
206 		.of_match_table = of_match_ptr(w1_gpio_dt_ids),
207 	},
208 	.probe = w1_gpio_probe,
209 	.remove	= w1_gpio_remove,
210 	.suspend = w1_gpio_suspend,
211 	.resume = w1_gpio_resume,
212 };
213 
214 module_platform_driver(w1_gpio_driver);
215 
216 MODULE_DESCRIPTION("GPIO w1 bus master driver");
217 MODULE_AUTHOR("Ville Syrjala <syrjala@sci.fi>");
218 MODULE_LICENSE("GPL");
219