blob: 84b398619c47cd569479b8c6e29ff14a6c31aac3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wenyou Yangac72e172016-07-20 17:16:27 +08002/*
3 * Atmel PIO4 pinctrl driver
4 *
5 * Copyright (C) 2016 Atmel Corporation
6 * Wenyou.Yang <wenyou.yang@atmel.com>
Wenyou Yangac72e172016-07-20 17:16:27 +08007 */
8
9#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -060010#include <dm.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Sergiu Moga2ed96a82022-09-01 17:22:41 +030012#include <dm/device-internal.h>
13#include <dm/lists.h>
Wenyou Yangac72e172016-07-20 17:16:27 +080014#include <dm/pinctrl.h>
Simon Glasscd93d622020-05-10 11:40:13 -060015#include <linux/bitops.h>
Wenyou Yangac72e172016-07-20 17:16:27 +080016#include <linux/io.h>
17#include <linux/err.h>
Sergiu Moga7086def2022-09-01 17:22:42 +030018#include <dm/uclass-internal.h>
Wenyou Yangac72e172016-07-20 17:16:27 +080019#include <mach/atmel_pio4.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
23/*
24 * Warning:
25 * In order to not introduce confusion between Atmel PIO groups and pinctrl
26 * framework groups, Atmel PIO groups will be called banks.
27 */
28
Simon Glass8a8d24b2020-12-03 16:55:23 -070029struct atmel_pio4_plat {
Wenyou Yangac72e172016-07-20 17:16:27 +080030 struct atmel_pio4_port *reg_base;
Claudiu Beznea8bad34a2021-01-27 15:00:30 +020031 unsigned int slew_rate_support;
Wenyou Yangac72e172016-07-20 17:16:27 +080032};
33
Sergiu Moga2ed96a82022-09-01 17:22:41 +030034/*
35 * Table keeping track of the pinctrl driver's slew rate support and the
36 * corresponding index into the struct udevice_id of the gpio_atmel_pio4 GPIO
37 * driver. This has been done in order to align the DT of U-Boot with the DT of
38 * Linux. In Linux, a phandle from a '-gpio' DT property is linked to the
39 * pinctrl driver, unlike U-Boot which redirects this phandle to a corresponding
40 * UCLASS_GPIO driver. Thus, in order to link the two, a hook to the bind method
41 * of the pinctrl driver in U-Boot has been added. This bind method will attach
42 * the GPIO driver to the pinctrl DT node using this table.
43 * @slew_rate_support pinctrl driver's slew rate support
44 * @gdidx index into the GPIO driver's struct udevide_id
45 * (needed in order to properly bind with driver_data)
46 */
47
48struct atmel_pinctrl_data {
49 unsigned int slew_rate_support;
50 int gdidx;
51};
52
Wenyou Yangac72e172016-07-20 17:16:27 +080053static const struct pinconf_param conf_params[] = {
54 { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 },
55 { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 },
56 { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 },
57 { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 },
58 { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 },
59 { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 },
60 { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 },
Eugen Hristev417eca02021-01-05 10:54:01 +020061 { "atmel,drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 },
Claudiu Beznea8bad34a2021-01-27 15:00:30 +020062 { "slew-rate", PIN_CONFIG_SLEW_RATE, 0},
Wenyou Yangac72e172016-07-20 17:16:27 +080063};
64
Claudiu Beznea8bad34a2021-01-27 15:00:30 +020065static u32 atmel_pinctrl_get_pinconf(struct udevice *config,
66 struct atmel_pio4_plat *plat)
Wenyou Yangac72e172016-07-20 17:16:27 +080067{
68 const struct pinconf_param *params;
69 u32 param, arg, conf = 0;
70 u32 i;
Eugen Hristev417eca02021-01-05 10:54:01 +020071 u32 val;
Wenyou Yangac72e172016-07-20 17:16:27 +080072
73 for (i = 0; i < ARRAY_SIZE(conf_params); i++) {
74 params = &conf_params[i];
Eugen Hristev864a4142021-01-05 10:51:53 +020075 if (!dev_read_prop(config, params->property, NULL))
Wenyou Yangac72e172016-07-20 17:16:27 +080076 continue;
77
78 param = params->param;
79 arg = params->default_value;
80
Claudiu Beznea8bad34a2021-01-27 15:00:30 +020081 /* Keep slew rate enabled by default. */
82 if (plat->slew_rate_support)
83 conf |= ATMEL_PIO_SR;
84
Wenyou Yangac72e172016-07-20 17:16:27 +080085 switch (param) {
86 case PIN_CONFIG_BIAS_DISABLE:
87 conf &= (~ATMEL_PIO_PUEN_MASK);
88 conf &= (~ATMEL_PIO_PDEN_MASK);
89 break;
90 case PIN_CONFIG_BIAS_PULL_UP:
91 conf |= ATMEL_PIO_PUEN_MASK;
92 break;
93 case PIN_CONFIG_BIAS_PULL_DOWN:
94 conf |= ATMEL_PIO_PDEN_MASK;
95 break;
96 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
97 if (arg == 0)
98 conf &= (~ATMEL_PIO_OPD_MASK);
99 else
100 conf |= ATMEL_PIO_OPD_MASK;
101 break;
102 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
103 if (arg == 0)
104 conf |= ATMEL_PIO_SCHMITT_MASK;
105 else
106 conf &= (~ATMEL_PIO_SCHMITT_MASK);
107 break;
108 case PIN_CONFIG_INPUT_DEBOUNCE:
109 if (arg == 0) {
110 conf &= (~ATMEL_PIO_IFEN_MASK);
111 conf &= (~ATMEL_PIO_IFSCEN_MASK);
112 } else {
113 conf |= ATMEL_PIO_IFEN_MASK;
114 conf |= ATMEL_PIO_IFSCEN_MASK;
115 }
116 break;
Eugen Hristev417eca02021-01-05 10:54:01 +0200117 case PIN_CONFIG_DRIVE_STRENGTH:
118 dev_read_u32(config, params->property, &val);
119 conf &= (~ATMEL_PIO_DRVSTR_MASK);
120 conf |= (val << ATMEL_PIO_DRVSTR_OFFSET)
121 & ATMEL_PIO_DRVSTR_MASK;
122 break;
Claudiu Beznea8bad34a2021-01-27 15:00:30 +0200123 case PIN_CONFIG_SLEW_RATE:
124 if (!plat->slew_rate_support)
125 break;
126
127 dev_read_u32(config, params->property, &val);
128 /* And disable it if requested. */
129 if (val == 0)
130 conf &= ~ATMEL_PIO_SR;
131 break;
Wenyou Yangac72e172016-07-20 17:16:27 +0800132 default:
133 printf("%s: Unsupported configuration parameter: %u\n",
134 __func__, param);
135 break;
136 }
137 }
138
139 return conf;
140}
141
142static inline struct atmel_pio4_port *atmel_pio4_bank_base(struct udevice *dev,
143 u32 bank)
144{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700145 struct atmel_pio4_plat *plat = dev_get_plat(dev);
Wenyou Yangac72e172016-07-20 17:16:27 +0800146 struct atmel_pio4_port *bank_base =
147 (struct atmel_pio4_port *)((u32)plat->reg_base +
148 ATMEL_PIO_BANK_OFFSET * bank);
149
150 return bank_base;
151}
152
153#define MAX_PINMUX_ENTRIES 40
154
Sergiu Moga7086def2022-09-01 17:22:42 +0300155static int atmel_process_config_dev(struct udevice *dev, struct udevice *config)
Wenyou Yangac72e172016-07-20 17:16:27 +0800156{
Claudiu Beznea8bad34a2021-01-27 15:00:30 +0200157 struct atmel_pio4_plat *plat = dev_get_plat(dev);
Simon Glasse160f7d2017-01-17 16:52:55 -0700158 int node = dev_of_offset(config);
Sergiu Moga7086def2022-09-01 17:22:42 +0300159 struct atmel_pio4_port *bank_base;
Wenyou Yangac72e172016-07-20 17:16:27 +0800160 u32 offset, func, bank, line;
161 u32 cells[MAX_PINMUX_ENTRIES];
162 u32 i, conf;
163 int count;
164
Claudiu Beznea8bad34a2021-01-27 15:00:30 +0200165 conf = atmel_pinctrl_get_pinconf(config, plat);
Wenyou Yangac72e172016-07-20 17:16:27 +0800166
Sergiu Moga7086def2022-09-01 17:22:42 +0300167 /*
168 * The only case where this function returns a negative error value
169 * is when there is no "pinmux" property attached to this node
170 */
171 count = fdtdec_get_int_array_count(gd->fdt_blob, node, "pinmux",
Wenyou Yangac72e172016-07-20 17:16:27 +0800172 cells, ARRAY_SIZE(cells));
Sergiu Moga7086def2022-09-01 17:22:42 +0300173 if (count < 0)
174 return count;
Wenyou Yangac72e172016-07-20 17:16:27 +0800175
Sergiu Moga7086def2022-09-01 17:22:42 +0300176 if (count > MAX_PINMUX_ENTRIES)
Wenyou Yangac72e172016-07-20 17:16:27 +0800177 return -EINVAL;
Wenyou Yangac72e172016-07-20 17:16:27 +0800178
179 for (i = 0 ; i < count; i++) {
180 offset = ATMEL_GET_PIN_NO(cells[i]);
181 func = ATMEL_GET_PIN_FUNC(cells[i]);
182
183 bank = ATMEL_PIO_BANK(offset);
184 line = ATMEL_PIO_LINE(offset);
185
186 bank_base = atmel_pio4_bank_base(dev, bank);
187
188 writel(BIT(line), &bank_base->mskr);
189 conf &= (~ATMEL_PIO_CFGR_FUNC_MASK);
190 conf |= (func & ATMEL_PIO_CFGR_FUNC_MASK);
191 writel(conf, &bank_base->cfgr);
192 }
193
194 return 0;
195}
196
Sergiu Moga7086def2022-09-01 17:22:42 +0300197static int atmel_pinctrl_set_state(struct udevice *dev, struct udevice *config)
198{
199 int node = dev_of_offset(config);
200 struct udevice *subconfig;
201 int subnode, subnode_count = 0, ret;
202
203 /*
204 * If this function returns a negative error code then that means
205 * that either the "pinmux" property of the node is missing, which is
206 * the case for pinctrl nodes that do not have all the pins with the
207 * same configuration and are split in multiple subnodes, or something
208 * else went wrong and we have to stop. For the latter case, it would
209 * mean that the node failed even though it has no subnodes.
210 */
211 ret = atmel_process_config_dev(dev, config);
212 if (!ret)
213 return ret;
214
215 /*
216 * If we reach here, it means that the subnode pinctrl's DT has multiple
217 * subnodes. If it does not, then something else went wrong in the
218 * previous call to atmel_process_config_dev.
219 */
220 fdt_for_each_subnode(subnode, gd->fdt_blob, node) {
221 /* Get subnode as an udevice */
222 ret = uclass_find_device_by_of_offset(UCLASS_PINCONFIG, subnode,
223 &subconfig);
224 if (ret)
225 return ret;
226
227 /*
228 * If this time the function returns an error code on a subnode
229 * then something is totally wrong so abort.
230 */
231 ret = atmel_process_config_dev(dev, subconfig);
232 if (ret)
233 return ret;
234
235 subnode_count++;
236 }
237
238 /*
239 * If we somehow got here and we do not have any subnodes, abort.
240 */
241 if (!subnode_count)
242 return -EINVAL;
243
244 return 0;
245}
246
Wenyou Yangac72e172016-07-20 17:16:27 +0800247const struct pinctrl_ops atmel_pinctrl_ops = {
248 .set_state = atmel_pinctrl_set_state,
249};
250
251static int atmel_pinctrl_probe(struct udevice *dev)
252{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700253 struct atmel_pio4_plat *plat = dev_get_plat(dev);
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300254 struct atmel_pinctrl_data *priv = (struct atmel_pinctrl_data *)dev_get_driver_data(dev);
Wenyou Yangac72e172016-07-20 17:16:27 +0800255 fdt_addr_t addr_base;
256
Masahiro Yamada25484932020-07-17 14:36:48 +0900257 addr_base = dev_read_addr(dev);
Wenyou Yangac72e172016-07-20 17:16:27 +0800258 if (addr_base == FDT_ADDR_T_NONE)
259 return -EINVAL;
260
261 plat->reg_base = (struct atmel_pio4_port *)addr_base;
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300262 plat->slew_rate_support = priv->slew_rate_support;
Wenyou Yangac72e172016-07-20 17:16:27 +0800263
264 return 0;
265}
266
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300267static int atmel_pinctrl_bind(struct udevice *dev)
268{
269 struct udevice *g;
270 struct driver *drv;
271 ofnode node = dev_ofnode(dev);
272 struct atmel_pinctrl_data *priv = (struct atmel_pinctrl_data *)dev_get_driver_data(dev);
273
Simon Glass42a13b22023-02-05 15:36:17 -0700274 if (!IS_ENABLED(CONFIG_ATMEL_PIO4))
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300275 return 0;
276
277 /* Obtain a handle to the GPIO driver */
278 drv = lists_driver_lookup_name("gpio_atmel_pio4");
279 if (!drv)
280 return -ENOENT;
281
282 /*
283 * Bind the GPIO driver to the pinctrl DT node, together
284 * with its corresponding driver_data.
285 */
286 return device_bind_with_driver_data(dev, drv, drv->name,
287 drv->of_match[priv->gdidx].data,
288 node, &g);
289}
290
291static const struct atmel_pinctrl_data atmel_sama5d2_pinctrl_data = {
292 .gdidx = 0,
293};
294
295static const struct atmel_pinctrl_data microchip_sama7g5_pinctrl_data = {
296 .slew_rate_support = 1,
297 .gdidx = 1,
298};
299
Wenyou Yangac72e172016-07-20 17:16:27 +0800300static const struct udevice_id atmel_pinctrl_match[] = {
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300301 { .compatible = "atmel,sama5d2-pinctrl",
302 .data = (ulong)&atmel_sama5d2_pinctrl_data, },
Claudiu Beznea8bad34a2021-01-27 15:00:30 +0200303 { .compatible = "microchip,sama7g5-pinctrl",
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300304 .data = (ulong)&microchip_sama7g5_pinctrl_data, },
Wenyou Yangac72e172016-07-20 17:16:27 +0800305 {}
306};
307
308U_BOOT_DRIVER(atmel_pinctrl) = {
309 .name = "pinctrl_atmel_pio4",
310 .id = UCLASS_PINCTRL,
311 .of_match = atmel_pinctrl_match,
Sergiu Moga2ed96a82022-09-01 17:22:41 +0300312 .bind = atmel_pinctrl_bind,
Wenyou Yangac72e172016-07-20 17:16:27 +0800313 .probe = atmel_pinctrl_probe,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700314 .plat_auto = sizeof(struct atmel_pio4_plat),
Wenyou Yangac72e172016-07-20 17:16:27 +0800315 .ops = &atmel_pinctrl_ops,
316};