blob: 46d97014342ef1f27f37046332e35d6e40a5b108 [file] [log] [blame]
Ville Syrjalaad8dc962008-02-06 01:39:01 -08001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Ville Syrjalaad8dc962008-02-06 01:39:01 -080015#include <linux/w1-gpio.h>
Mark Browne250b342012-02-04 16:33:55 +000016#include <linux/gpio.h>
Daniel Mack5f3d1382012-07-23 16:36:35 +020017#include <linux/of_platform.h>
18#include <linux/of_gpio.h>
Pantelis Antoniou277ed0d2012-11-22 01:13:29 +040019#include <linux/pinctrl/consumer.h>
20#include <linux/err.h>
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +040021#include <linux/of.h>
Ville Syrjalaad8dc962008-02-06 01:39:01 -080022
23#include "../w1.h"
24#include "../w1_int.h"
25
Ville Syrjalaad8dc962008-02-06 01:39:01 -080026static void w1_gpio_write_bit_dir(void *data, u8 bit)
27{
28 struct w1_gpio_platform_data *pdata = data;
29
30 if (bit)
31 gpio_direction_input(pdata->pin);
32 else
33 gpio_direction_output(pdata->pin, 0);
34}
35
36static void w1_gpio_write_bit_val(void *data, u8 bit)
37{
38 struct w1_gpio_platform_data *pdata = data;
39
40 gpio_set_value(pdata->pin, bit);
41}
42
43static u8 w1_gpio_read_bit(void *data)
44{
45 struct w1_gpio_platform_data *pdata = data;
46
Daniel Mack8d0df7a2009-03-12 14:31:25 -070047 return gpio_get_value(pdata->pin) ? 1 : 0;
Ville Syrjalaad8dc962008-02-06 01:39:01 -080048}
49
Johan Hovold34ccd872013-03-08 11:08:00 +010050#if defined(CONFIG_OF)
Daniel Mack5f3d1382012-07-23 16:36:35 +020051static struct of_device_id w1_gpio_dt_ids[] = {
52 { .compatible = "w1-gpio" },
53 {}
54};
55MODULE_DEVICE_TABLE(of, w1_gpio_dt_ids);
Johan Hovold34ccd872013-03-08 11:08:00 +010056#endif
Daniel Mack5f3d1382012-07-23 16:36:35 +020057
58static int w1_gpio_probe_dt(struct platform_device *pdev)
59{
60 struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
61 struct device_node *np = pdev->dev.of_node;
Daniel Mack5f3d1382012-07-23 16:36:35 +020062
63 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
64 if (!pdata)
65 return -ENOMEM;
66
67 if (of_get_property(np, "linux,open-drain", NULL))
68 pdata->is_open_drain = 1;
69
70 pdata->pin = of_get_gpio(np, 0);
71 pdata->ext_pullup_enable_pin = of_get_gpio(np, 1);
72 pdev->dev.platform_data = pdata;
73
74 return 0;
75}
Daniel Mack5f3d1382012-07-23 16:36:35 +020076
Hauke Mehrtens06a8f1f2013-01-27 21:07:57 +010077static int w1_gpio_probe(struct platform_device *pdev)
Ville Syrjalaad8dc962008-02-06 01:39:01 -080078{
79 struct w1_bus_master *master;
Daniel Mack5f3d1382012-07-23 16:36:35 +020080 struct w1_gpio_platform_data *pdata;
Pantelis Antoniou277ed0d2012-11-22 01:13:29 +040081 struct pinctrl *pinctrl;
Ville Syrjalaad8dc962008-02-06 01:39:01 -080082 int err;
83
Pantelis Antoniou277ed0d2012-11-22 01:13:29 +040084 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
85 if (IS_ERR(pinctrl))
86 dev_warn(&pdev->dev, "unable to select pin group\n");
87
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +040088 if (of_have_populated_dt()) {
89 err = w1_gpio_probe_dt(pdev);
90 if (err < 0) {
91 dev_err(&pdev->dev, "Failed to parse DT\n");
92 return err;
93 }
94 }
Daniel Mack5f3d1382012-07-23 16:36:35 +020095
96 pdata = pdev->dev.platform_data;
97
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +040098 if (!pdata) {
99 dev_err(&pdev->dev, "No configuration data\n");
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800100 return -ENXIO;
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400101 }
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800102
103 master = kzalloc(sizeof(struct w1_bus_master), GFP_KERNEL);
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400104 if (!master) {
105 dev_err(&pdev->dev, "Out of memory\n");
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800106 return -ENOMEM;
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400107 }
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800108
109 err = gpio_request(pdata->pin, "w1");
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400110 if (err) {
111 dev_err(&pdev->dev, "gpio_request (pin) failed\n");
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800112 goto free_master;
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400113 }
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800114
Daniel Mackd2323cf2012-07-25 22:54:29 +0200115 if (gpio_is_valid(pdata->ext_pullup_enable_pin)) {
116 err = gpio_request_one(pdata->ext_pullup_enable_pin,
117 GPIOF_INIT_LOW, "w1 pullup");
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400118 if (err < 0) {
119 dev_err(&pdev->dev, "gpio_request_one "
120 "(ext_pullup_enable_pin) failed\n");
Daniel Mackd2323cf2012-07-25 22:54:29 +0200121 goto free_gpio;
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400122 }
Daniel Mackd2323cf2012-07-25 22:54:29 +0200123 }
124
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800125 master->data = pdata;
126 master->read_bit = w1_gpio_read_bit;
127
128 if (pdata->is_open_drain) {
129 gpio_direction_output(pdata->pin, 1);
130 master->write_bit = w1_gpio_write_bit_val;
131 } else {
132 gpio_direction_input(pdata->pin);
133 master->write_bit = w1_gpio_write_bit_dir;
134 }
135
136 err = w1_add_master_device(master);
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400137 if (err) {
138 dev_err(&pdev->dev, "w1_add_master device failed\n");
Daniel Mackd2323cf2012-07-25 22:54:29 +0200139 goto free_gpio_ext_pu;
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400140 }
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800141
Daniel Mackc8a06c12009-06-17 16:28:15 -0700142 if (pdata->enable_external_pullup)
143 pdata->enable_external_pullup(1);
144
Daniel Mackd2323cf2012-07-25 22:54:29 +0200145 if (gpio_is_valid(pdata->ext_pullup_enable_pin))
146 gpio_set_value(pdata->ext_pullup_enable_pin, 1);
147
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800148 platform_set_drvdata(pdev, master);
149
150 return 0;
151
Daniel Mackd2323cf2012-07-25 22:54:29 +0200152 free_gpio_ext_pu:
153 if (gpio_is_valid(pdata->ext_pullup_enable_pin))
154 gpio_free(pdata->ext_pullup_enable_pin);
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800155 free_gpio:
156 gpio_free(pdata->pin);
157 free_master:
158 kfree(master);
159
160 return err;
161}
162
Johan Hovold01230552013-03-08 11:07:59 +0100163static int w1_gpio_remove(struct platform_device *pdev)
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800164{
165 struct w1_bus_master *master = platform_get_drvdata(pdev);
166 struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
167
Daniel Mackc8a06c12009-06-17 16:28:15 -0700168 if (pdata->enable_external_pullup)
169 pdata->enable_external_pullup(0);
170
Daniel Mackd2323cf2012-07-25 22:54:29 +0200171 if (gpio_is_valid(pdata->ext_pullup_enable_pin))
172 gpio_set_value(pdata->ext_pullup_enable_pin, 0);
173
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800174 w1_remove_master_device(master);
175 gpio_free(pdata->pin);
176 kfree(master);
177
178 return 0;
179}
180
Daniel Mackc8a06c12009-06-17 16:28:15 -0700181#ifdef CONFIG_PM
182
183static int w1_gpio_suspend(struct platform_device *pdev, pm_message_t state)
184{
185 struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
186
187 if (pdata->enable_external_pullup)
188 pdata->enable_external_pullup(0);
189
190 return 0;
191}
192
193static int w1_gpio_resume(struct platform_device *pdev)
194{
195 struct w1_gpio_platform_data *pdata = pdev->dev.platform_data;
196
197 if (pdata->enable_external_pullup)
198 pdata->enable_external_pullup(1);
199
200 return 0;
201}
202
203#else
204#define w1_gpio_suspend NULL
205#define w1_gpio_resume NULL
206#endif
207
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800208static struct platform_driver w1_gpio_driver = {
209 .driver = {
210 .name = "w1-gpio",
211 .owner = THIS_MODULE,
Daniel Mack5f3d1382012-07-23 16:36:35 +0200212 .of_match_table = of_match_ptr(w1_gpio_dt_ids),
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800213 },
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400214 .probe = w1_gpio_probe,
Johan Hovold01230552013-03-08 11:07:59 +0100215 .remove = w1_gpio_remove,
Daniel Mackc8a06c12009-06-17 16:28:15 -0700216 .suspend = w1_gpio_suspend,
217 .resume = w1_gpio_resume,
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800218};
219
Pantelis Antoniou8a1861d2012-11-22 01:13:47 +0400220module_platform_driver(w1_gpio_driver);
Ville Syrjalaad8dc962008-02-06 01:39:01 -0800221
222MODULE_DESCRIPTION("GPIO w1 bus master driver");
223MODULE_AUTHOR("Ville Syrjala <syrjala@sci.fi>");
224MODULE_LICENSE("GPL");