1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
4 */
5
6 #define LOG_CATEGORY UCLASS_PINCTRL
7
8 #include <common.h>
9 #include <malloc.h>
10 #include <asm/global_data.h>
11 #include <dm/device_compat.h>
12 #include <linux/libfdt.h>
13 #include <linux/err.h>
14 #include <linux/list.h>
15 #include <dm.h>
16 #include <dm/lists.h>
17 #include <dm/pinctrl.h>
18 #include <dm/util.h>
19 #include <dm/of_access.h>
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 /**
24 * pinctrl_config_one() - apply pinctrl settings for a single node
25 *
26 * @config: pin configuration node
27 * @return: 0 on success, or negative error code on failure
28 */
pinctrl_config_one(struct udevice * config)29 static int pinctrl_config_one(struct udevice *config)
30 {
31 struct udevice *pctldev;
32 const struct pinctrl_ops *ops;
33
34 pctldev = config;
35 for (;;) {
36 pctldev = dev_get_parent(pctldev);
37 if (!pctldev) {
38 dev_err(config, "could not find pctldev\n");
39 return -EINVAL;
40 }
41 if (pctldev->uclass->uc_drv->id == UCLASS_PINCTRL)
42 break;
43 }
44
45 ops = pinctrl_get_ops(pctldev);
46 return ops->set_state(pctldev, config);
47 }
48
49 /**
50 * pinctrl_select_state_full() - full implementation of pinctrl_select_state
51 *
52 * @dev: peripheral device
53 * @statename: state name, like "default"
54 * @return: 0 on success, or negative error code on failure
55 */
pinctrl_select_state_full(struct udevice * dev,const char * statename)56 static int pinctrl_select_state_full(struct udevice *dev, const char *statename)
57 {
58 char propname[32]; /* long enough */
59 const fdt32_t *list;
60 uint32_t phandle;
61 struct udevice *config;
62 int state, size, i, ret;
63
64 state = dev_read_stringlist_search(dev, "pinctrl-names", statename);
65 if (state < 0) {
66 char *end;
67 /*
68 * If statename is not found in "pinctrl-names",
69 * assume statename is just the integer state ID.
70 */
71 state = dectoul(statename, &end);
72 if (*end)
73 return -ENOSYS;
74 }
75
76 snprintf(propname, sizeof(propname), "pinctrl-%d", state);
77 list = dev_read_prop(dev, propname, &size);
78 if (!list)
79 return -ENOSYS;
80
81 size /= sizeof(*list);
82 for (i = 0; i < size; i++) {
83 phandle = fdt32_to_cpu(*list++);
84 ret = uclass_get_device_by_phandle_id(UCLASS_PINCONFIG, phandle,
85 &config);
86 if (ret) {
87 dev_warn(dev, "%s: uclass_get_device_by_phandle_id: err=%d\n",
88 __func__, ret);
89 continue;
90 }
91
92 ret = pinctrl_config_one(config);
93 if (ret) {
94 dev_warn(dev, "%s: pinctrl_config_one: err=%d\n",
95 __func__, ret);
96 continue;
97 }
98 }
99
100 return 0;
101 }
102
103 /**
104 * pinconfig_post_bind() - post binding for PINCONFIG uclass
105 * Recursively bind its children as pinconfig devices.
106 *
107 * @dev: pinconfig device
108 * @return: 0 on success, or negative error code on failure
109 */
pinconfig_post_bind(struct udevice * dev)110 static int pinconfig_post_bind(struct udevice *dev)
111 {
112 bool pre_reloc_only = !(gd->flags & GD_FLG_RELOC);
113 const char *name;
114 ofnode node;
115 int ret;
116
117 if (!dev_has_ofnode(dev))
118 return 0;
119
120 dev_for_each_subnode(node, dev) {
121 if (pre_reloc_only &&
122 !ofnode_pre_reloc(node))
123 continue;
124 /*
125 * If this node has "compatible" property, this is not
126 * a pin configuration node, but a normal device. skip.
127 */
128 ofnode_get_property(node, "compatible", &ret);
129 if (ret >= 0)
130 continue;
131 /* If this node has "gpio-controller" property, skip */
132 if (ofnode_read_bool(node, "gpio-controller"))
133 continue;
134
135 if (ret != -FDT_ERR_NOTFOUND)
136 return ret;
137
138 name = ofnode_get_name(node);
139 if (!name)
140 return -EINVAL;
141 ret = device_bind_driver_to_node(dev, "pinconfig", name,
142 node, NULL);
143 if (ret)
144 return ret;
145 }
146
147 return 0;
148 }
149
150 #if CONFIG_IS_ENABLED(PINCTRL_FULL)
151 UCLASS_DRIVER(pinconfig) = {
152 .id = UCLASS_PINCONFIG,
153 #if CONFIG_IS_ENABLED(PINCONF_RECURSIVE)
154 .post_bind = pinconfig_post_bind,
155 #endif
156 .name = "pinconfig",
157 };
158
159 U_BOOT_DRIVER(pinconfig_generic) = {
160 .name = "pinconfig",
161 .id = UCLASS_PINCONFIG,
162 };
163 #endif
164
165 static int
pinctrl_gpio_get_pinctrl_and_offset(struct udevice * dev,unsigned offset,struct udevice ** pctldev,unsigned int * pin_selector)166 pinctrl_gpio_get_pinctrl_and_offset(struct udevice *dev, unsigned offset,
167 struct udevice **pctldev,
168 unsigned int *pin_selector)
169 {
170 struct ofnode_phandle_args args;
171 unsigned gpio_offset, pfc_base, pfc_pins;
172 int ret = 0;
173 int i = 0;
174
175 while (ret == 0) {
176 ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3,
177 i++, &args);
178 if (ret) {
179 dev_dbg(dev, "%s: dev_read_phandle_with_args: err=%d\n",
180 __func__, ret);
181 return ret;
182 }
183
184 ret = uclass_get_device_by_ofnode(UCLASS_PINCTRL,
185 args.node, pctldev);
186 if (ret) {
187 dev_dbg(dev,
188 "%s: uclass_get_device_by_of_offset failed: err=%d\n",
189 __func__, ret);
190 return ret;
191 }
192
193 gpio_offset = args.args[0];
194 pfc_base = args.args[1];
195 pfc_pins = args.args[2];
196
197 if (offset >= gpio_offset && offset <= gpio_offset + pfc_pins)
198 break;
199 }
200
201 offset -= gpio_offset;
202 offset += pfc_base;
203 *pin_selector = offset;
204
205 return 0;
206 }
207
208 /**
209 * pinctrl_gpio_request() - request a single pin to be used as GPIO
210 *
211 * @dev: GPIO peripheral device
212 * @offset: the GPIO pin offset from the GPIO controller
213 * @label: the GPIO pin label
214 * @return: 0 on success, or negative error code on failure
215 */
pinctrl_gpio_request(struct udevice * dev,unsigned offset,const char * label)216 int pinctrl_gpio_request(struct udevice *dev, unsigned offset, const char *label)
217 {
218 const struct pinctrl_ops *ops;
219 struct udevice *pctldev;
220 unsigned int pin_selector;
221 int ret;
222
223 ret = pinctrl_gpio_get_pinctrl_and_offset(dev, offset,
224 &pctldev, &pin_selector);
225 if (ret)
226 return ret;
227
228 ops = pinctrl_get_ops(pctldev);
229 assert(ops);
230 if (!ops->gpio_request_enable)
231 return -ENOSYS;
232
233 return ops->gpio_request_enable(pctldev, pin_selector);
234 }
235
236 /**
237 * pinctrl_gpio_free() - free a single pin used as GPIO
238 *
239 * @dev: GPIO peripheral device
240 * @offset: the GPIO pin offset from the GPIO controller
241 * @return: 0 on success, or negative error code on failure
242 */
pinctrl_gpio_free(struct udevice * dev,unsigned offset)243 int pinctrl_gpio_free(struct udevice *dev, unsigned offset)
244 {
245 const struct pinctrl_ops *ops;
246 struct udevice *pctldev;
247 unsigned int pin_selector;
248 int ret;
249
250 ret = pinctrl_gpio_get_pinctrl_and_offset(dev, offset,
251 &pctldev, &pin_selector);
252 if (ret)
253 return ret;
254
255 ops = pinctrl_get_ops(pctldev);
256 assert(ops);
257 if (!ops->gpio_disable_free)
258 return -ENOSYS;
259
260 return ops->gpio_disable_free(pctldev, pin_selector);
261 }
262
263 /**
264 * pinctrl_select_state_simple() - simple implementation of pinctrl_select_state
265 *
266 * @dev: peripheral device
267 * @return: 0 on success, or negative error code on failure
268 */
pinctrl_select_state_simple(struct udevice * dev)269 static int pinctrl_select_state_simple(struct udevice *dev)
270 {
271 struct udevice *pctldev;
272 struct pinctrl_ops *ops;
273 int ret;
274
275 /*
276 * For most system, there is only one pincontroller device. But in
277 * case of multiple pincontroller devices, probe the one with sequence
278 * number 0 (defined by alias) to avoid race condition.
279 */
280 ret = uclass_get_device_by_seq(UCLASS_PINCTRL, 0, &pctldev);
281 if (ret)
282 /* if not found, get the first one */
283 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pctldev);
284 if (ret)
285 return ret;
286
287 ops = pinctrl_get_ops(pctldev);
288 if (!ops->set_state_simple) {
289 dev_dbg(dev, "set_state_simple op missing\n");
290 return -ENOSYS;
291 }
292
293 return ops->set_state_simple(pctldev, dev);
294 }
295
pinctrl_select_state(struct udevice * dev,const char * statename)296 int pinctrl_select_state(struct udevice *dev, const char *statename)
297 {
298 /*
299 * Some device which is logical like mmc.blk, do not have
300 * a valid ofnode.
301 */
302 if (!dev_has_ofnode(dev))
303 return 0;
304 /*
305 * Try full-implemented pinctrl first.
306 * If it fails or is not implemented, try simple one.
307 */
308 if (CONFIG_IS_ENABLED(PINCTRL_FULL))
309 return pinctrl_select_state_full(dev, statename);
310
311 return pinctrl_select_state_simple(dev);
312 }
313
pinctrl_request(struct udevice * dev,int func,int flags)314 int pinctrl_request(struct udevice *dev, int func, int flags)
315 {
316 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
317
318 if (!ops->request)
319 return -ENOSYS;
320
321 return ops->request(dev, func, flags);
322 }
323
pinctrl_request_noflags(struct udevice * dev,int func)324 int pinctrl_request_noflags(struct udevice *dev, int func)
325 {
326 return pinctrl_request(dev, func, 0);
327 }
328
pinctrl_get_periph_id(struct udevice * dev,struct udevice * periph)329 int pinctrl_get_periph_id(struct udevice *dev, struct udevice *periph)
330 {
331 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
332
333 if (!ops->get_periph_id)
334 return -ENOSYS;
335
336 return ops->get_periph_id(dev, periph);
337 }
338
pinctrl_get_gpio_mux(struct udevice * dev,int banknum,int index)339 int pinctrl_get_gpio_mux(struct udevice *dev, int banknum, int index)
340 {
341 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
342
343 if (!ops->get_gpio_mux)
344 return -ENOSYS;
345
346 return ops->get_gpio_mux(dev, banknum, index);
347 }
348
pinctrl_get_pins_count(struct udevice * dev)349 int pinctrl_get_pins_count(struct udevice *dev)
350 {
351 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
352
353 if (!ops->get_pins_count)
354 return -ENOSYS;
355
356 return ops->get_pins_count(dev);
357 }
358
pinctrl_get_pin_name(struct udevice * dev,int selector,char * buf,int size)359 int pinctrl_get_pin_name(struct udevice *dev, int selector, char *buf,
360 int size)
361 {
362 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
363
364 if (!ops->get_pin_name)
365 return -ENOSYS;
366
367 snprintf(buf, size, ops->get_pin_name(dev, selector));
368
369 return 0;
370 }
371
pinctrl_get_pin_muxing(struct udevice * dev,int selector,char * buf,int size)372 int pinctrl_get_pin_muxing(struct udevice *dev, int selector, char *buf,
373 int size)
374 {
375 struct pinctrl_ops *ops = pinctrl_get_ops(dev);
376
377 if (!ops->get_pin_muxing)
378 return -ENOSYS;
379
380 return ops->get_pin_muxing(dev, selector, buf, size);
381 }
382
383 /**
384 * pinctrl_post_bind() - post binding for PINCTRL uclass
385 * Recursively bind child nodes as pinconfig devices in case of full pinctrl.
386 *
387 * @dev: pinctrl device
388 * @return: 0 on success, or negative error code on failure
389 */
pinctrl_post_bind(struct udevice * dev)390 static int __maybe_unused pinctrl_post_bind(struct udevice *dev)
391 {
392 const struct pinctrl_ops *ops = pinctrl_get_ops(dev);
393
394 if (!ops) {
395 dev_dbg(dev, "ops is not set. Do not bind.\n");
396 return -EINVAL;
397 }
398
399 /*
400 * If the pinctrl driver has the full implementation, its child nodes
401 * should be bound so that peripheral devices can easily search in
402 * parent devices during later DT-parsing.
403 */
404 if (CONFIG_IS_ENABLED(PINCTRL_FULL))
405 return pinconfig_post_bind(dev);
406
407 return 0;
408 }
409
410 UCLASS_DRIVER(pinctrl) = {
411 .id = UCLASS_PINCTRL,
412 #if CONFIG_IS_ENABLED(OF_REAL)
413 .post_bind = pinctrl_post_bind,
414 #endif
415 .flags = DM_UC_FLAG_SEQ_ALIAS,
416 .name = "pinctrl",
417 };
418