blob: 31285cdd5784da2f915f52a5fd2fe4c41079d067 [file] [log] [blame]
Vikas Manocha94d53082017-02-12 10:25:49 -08001#include <common.h>
Vikas Manocha94d53082017-02-12 10:25:49 -08002#include <dm.h>
3#include <dm/pinctrl.h>
Vikas Manocha77417102017-04-10 15:02:57 -07004#include <asm/arch/gpio.h>
5#include <asm/gpio.h>
6#include <asm/io.h>
Vikas Manocha94d53082017-02-12 10:25:49 -08007
8DECLARE_GLOBAL_DATA_PTR;
9
Vikas Manocha58fb3c82017-04-10 15:03:04 -070010#define MAX_PINS_ONE_IP 70
Vikas Manocha77417102017-04-10 15:02:57 -070011#define MODE_BITS_MASK 3
12#define OSPEED_MASK 3
13#define PUPD_MASK 3
14#define OTYPE_MSK 1
15#define AFR_MASK 0xF
16
17static int stm32_gpio_config(struct gpio_desc *desc,
18 const struct stm32_gpio_ctl *ctl)
19{
20 struct stm32_gpio_priv *priv = dev_get_priv(desc->dev);
21 struct stm32_gpio_regs *regs = priv->regs;
22 u32 index;
23
24 if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 ||
25 ctl->pupd > 2 || ctl->speed > 3)
26 return -EINVAL;
27
28 index = (desc->offset & 0x07) * 4;
29 clrsetbits_le32(&regs->afr[desc->offset >> 3], AFR_MASK << index,
30 ctl->af << index);
31
32 index = desc->offset * 2;
33 clrsetbits_le32(&regs->moder, MODE_BITS_MASK << index,
34 ctl->mode << index);
35 clrsetbits_le32(&regs->ospeedr, OSPEED_MASK << index,
36 ctl->speed << index);
37 clrsetbits_le32(&regs->pupdr, PUPD_MASK << index, ctl->pupd << index);
38
39 index = desc->offset;
40 clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index);
41
42 return 0;
43}
Patrick Delaunay8aeba622018-03-12 10:46:13 +010044
Vikas Manocha94d53082017-02-12 10:25:49 -080045static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin)
46{
Patrick Delaunay8aeba622018-03-12 10:46:13 +010047 gpio_dsc->port = (port_pin & 0x1F000) >> 12;
Vikas Manocha94d53082017-02-12 10:25:49 -080048 gpio_dsc->pin = (port_pin & 0x0F00) >> 8;
49 debug("%s: GPIO:port= %d, pin= %d\n", __func__, gpio_dsc->port,
50 gpio_dsc->pin);
51
52 return 0;
53}
54
55static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn, int node)
56{
57 gpio_fn &= 0x00FF;
Vikas Manocha77417102017-04-10 15:02:57 -070058 gpio_ctl->af = 0;
Vikas Manocha94d53082017-02-12 10:25:49 -080059
60 switch (gpio_fn) {
61 case 0:
62 gpio_ctl->mode = STM32_GPIO_MODE_IN;
63 break;
64 case 1 ... 16:
65 gpio_ctl->mode = STM32_GPIO_MODE_AF;
66 gpio_ctl->af = gpio_fn - 1;
67 break;
68 case 17:
69 gpio_ctl->mode = STM32_GPIO_MODE_AN;
70 break;
71 default:
72 gpio_ctl->mode = STM32_GPIO_MODE_OUT;
73 break;
74 }
75
76 gpio_ctl->speed = fdtdec_get_int(gd->fdt_blob, node, "slew-rate", 0);
77
78 if (fdtdec_get_bool(gd->fdt_blob, node, "drive-open-drain"))
79 gpio_ctl->otype = STM32_GPIO_OTYPE_OD;
80 else
81 gpio_ctl->otype = STM32_GPIO_OTYPE_PP;
82
83 if (fdtdec_get_bool(gd->fdt_blob, node, "bias-pull-up"))
84 gpio_ctl->pupd = STM32_GPIO_PUPD_UP;
85 else if (fdtdec_get_bool(gd->fdt_blob, node, "bias-pull-down"))
86 gpio_ctl->pupd = STM32_GPIO_PUPD_DOWN;
87 else
88 gpio_ctl->pupd = STM32_GPIO_PUPD_NO;
89
90 debug("%s: gpio fn= %d, slew-rate= %x, op type= %x, pull-upd is = %x\n",
91 __func__, gpio_fn, gpio_ctl->speed, gpio_ctl->otype,
92 gpio_ctl->pupd);
93
94 return 0;
95}
96
Christophe Kerelload0376e2017-06-20 17:04:18 +020097static int stm32_pinctrl_config(int offset)
Vikas Manocha94d53082017-02-12 10:25:49 -080098{
Vikas Manocha58fb3c82017-04-10 15:03:04 -070099 u32 pin_mux[MAX_PINS_ONE_IP];
Vikas Manocha94d53082017-02-12 10:25:49 -0800100 int rv, len;
101
Vikas Manocha94d53082017-02-12 10:25:49 -0800102 /*
103 * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for
104 * usart1) of pin controller phandle "pinctrl-0"
105 * */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200106 fdt_for_each_subnode(offset, gd->fdt_blob, offset) {
Vikas Manocha94d53082017-02-12 10:25:49 -0800107 struct stm32_gpio_dsc gpio_dsc;
108 struct stm32_gpio_ctl gpio_ctl;
109 int i;
110
Christophe Kerelload0376e2017-06-20 17:04:18 +0200111 len = fdtdec_get_int_array_count(gd->fdt_blob, offset,
Vikas Manocha94d53082017-02-12 10:25:49 -0800112 "pinmux", pin_mux,
113 ARRAY_SIZE(pin_mux));
Christophe Kerelload0376e2017-06-20 17:04:18 +0200114 debug("%s: no of pinmux entries= %d\n", __func__, len);
Vikas Manocha94d53082017-02-12 10:25:49 -0800115 if (len < 0)
116 return -EINVAL;
117 for (i = 0; i < len; i++) {
Vikas Manocha280057b2017-04-10 15:02:59 -0700118 struct gpio_desc desc;
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100119
Vikas Manocha94d53082017-02-12 10:25:49 -0800120 debug("%s: pinmux = %x\n", __func__, *(pin_mux + i));
121 prep_gpio_dsc(&gpio_dsc, *(pin_mux + i));
Christophe Kerelload0376e2017-06-20 17:04:18 +0200122 prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), offset);
Vikas Manocha280057b2017-04-10 15:02:59 -0700123 rv = uclass_get_device_by_seq(UCLASS_GPIO,
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100124 gpio_dsc.port,
125 &desc.dev);
Vikas Manocha280057b2017-04-10 15:02:59 -0700126 if (rv)
127 return rv;
128 desc.offset = gpio_dsc.pin;
129 rv = stm32_gpio_config(&desc, &gpio_ctl);
Vikas Manocha94d53082017-02-12 10:25:49 -0800130 debug("%s: rv = %d\n\n", __func__, rv);
131 if (rv)
132 return rv;
133 }
134 }
135
136 return 0;
137}
138
Christophe Kerellobb44b962017-06-20 17:04:19 +0200139#if CONFIG_IS_ENABLED(PINCTRL_FULL)
140static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config)
141{
142 return stm32_pinctrl_config(dev_of_offset(config));
143}
144#else /* PINCTRL_FULL */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200145static int stm32_pinctrl_set_state_simple(struct udevice *dev,
146 struct udevice *periph)
147{
148 const void *fdt = gd->fdt_blob;
149 const fdt32_t *list;
150 uint32_t phandle;
151 int config_node;
152 int size, i, ret;
153
154 list = fdt_getprop(fdt, dev_of_offset(periph), "pinctrl-0", &size);
155 if (!list)
156 return -EINVAL;
157
158 debug("%s: periph->name = %s\n", __func__, periph->name);
159
160 size /= sizeof(*list);
161 for (i = 0; i < size; i++) {
162 phandle = fdt32_to_cpu(*list++);
163
164 config_node = fdt_node_offset_by_phandle(fdt, phandle);
165 if (config_node < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900166 pr_err("prop pinctrl-0 index %d invalid phandle\n", i);
Christophe Kerelload0376e2017-06-20 17:04:18 +0200167 return -EINVAL;
168 }
169
170 ret = stm32_pinctrl_config(config_node);
171 if (ret)
172 return ret;
173 }
174
175 return 0;
176}
Christophe Kerellobb44b962017-06-20 17:04:19 +0200177#endif /* PINCTRL_FULL */
Christophe Kerelload0376e2017-06-20 17:04:18 +0200178
Vikas Manocha94d53082017-02-12 10:25:49 -0800179static struct pinctrl_ops stm32_pinctrl_ops = {
Christophe Kerellobb44b962017-06-20 17:04:19 +0200180#if CONFIG_IS_ENABLED(PINCTRL_FULL)
181 .set_state = stm32_pinctrl_set_state,
182#else /* PINCTRL_FULL */
Vikas Manocha94d53082017-02-12 10:25:49 -0800183 .set_state_simple = stm32_pinctrl_set_state_simple,
Christophe Kerellobb44b962017-06-20 17:04:19 +0200184#endif /* PINCTRL_FULL */
Vikas Manocha94d53082017-02-12 10:25:49 -0800185};
186
187static const struct udevice_id stm32_pinctrl_ids[] = {
Patrice Chotard98693c22017-12-12 09:49:35 +0100188 { .compatible = "st,stm32f429-pinctrl" },
189 { .compatible = "st,stm32f469-pinctrl" },
Vikas Manocha94d53082017-02-12 10:25:49 -0800190 { .compatible = "st,stm32f746-pinctrl" },
Patrice Chotard092e72c2017-09-13 18:00:04 +0200191 { .compatible = "st,stm32h743-pinctrl" },
Patrick Delaunay8aeba622018-03-12 10:46:13 +0100192 { .compatible = "st,stm32mp157-pinctrl" },
193 { .compatible = "st,stm32mp157-z-pinctrl" },
Vikas Manocha94d53082017-02-12 10:25:49 -0800194 { }
195};
196
197U_BOOT_DRIVER(pinctrl_stm32) = {
198 .name = "pinctrl_stm32",
199 .id = UCLASS_PINCTRL,
200 .of_match = stm32_pinctrl_ids,
201 .ops = &stm32_pinctrl_ops,
202 .bind = dm_scan_fdt_dev,
203};