blob: 55553c9477ffde17be518bbb9c0d2e78be5102ae [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vikas Manocha77417102017-04-10 15:02:57 -07002/*
Patrice Chotard3bc599c2017-10-23 09:53:58 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha77417102017-04-10 15:02:57 -07005 */
6
7#include <common.h>
8#include <clk.h>
9#include <dm.h>
10#include <fdtdec.h>
11#include <asm/arch/gpio.h>
12#include <asm/arch/stm32.h>
13#include <asm/gpio.h>
14#include <asm/io.h>
15#include <linux/errno.h>
16#include <linux/io.h>
17
Vikas Manocha77417102017-04-10 15:02:57 -070018#define STM32_GPIOS_PER_BANK 16
19#define MODE_BITS(gpio_pin) (gpio_pin * 2)
20#define MODE_BITS_MASK 3
Patrice Chotard798cd702018-08-09 11:57:57 +020021#define BSRR_BIT(gpio_pin, value) BIT(gpio_pin + (value ? 0 : 16))
Vikas Manocha77417102017-04-10 15:02:57 -070022
Patrice Chotarddbf928d2018-12-03 10:52:51 +010023/*
24 * convert gpio offset to gpio index taking into account gpio holes
25 * into gpio bank
26 */
27int stm32_offset_to_index(struct udevice *dev, unsigned int offset)
28{
29 struct stm32_gpio_priv *priv = dev_get_priv(dev);
30 int idx = 0;
31 int i;
32
33 for (i = 0; i < STM32_GPIOS_PER_BANK; i++) {
34 if (priv->gpio_range & BIT(i)) {
35 if (idx == offset)
36 return idx;
37 idx++;
38 }
39 }
40 /* shouldn't happen */
41 return -EINVAL;
42}
43
Vikas Manocha77417102017-04-10 15:02:57 -070044static int stm32_gpio_direction_input(struct udevice *dev, unsigned offset)
45{
46 struct stm32_gpio_priv *priv = dev_get_priv(dev);
47 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010048 int bits_index;
49 int mask;
50 int idx;
51
52 idx = stm32_offset_to_index(dev, offset);
53 if (idx < 0)
54 return idx;
55
56 bits_index = MODE_BITS(idx);
57 mask = MODE_BITS_MASK << bits_index;
Vikas Manocha77417102017-04-10 15:02:57 -070058
59 clrsetbits_le32(&regs->moder, mask, STM32_GPIO_MODE_IN << bits_index);
60
61 return 0;
62}
63
64static int stm32_gpio_direction_output(struct udevice *dev, unsigned offset,
65 int value)
66{
67 struct stm32_gpio_priv *priv = dev_get_priv(dev);
68 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010069 int bits_index;
70 int mask;
71 int idx;
72
73 idx = stm32_offset_to_index(dev, offset);
74 if (idx < 0)
75 return idx;
76
77 bits_index = MODE_BITS(idx);
78 mask = MODE_BITS_MASK << bits_index;
Vikas Manocha77417102017-04-10 15:02:57 -070079
80 clrsetbits_le32(&regs->moder, mask, STM32_GPIO_MODE_OUT << bits_index);
Patrice Chotard798cd702018-08-09 11:57:57 +020081
Patrice Chotarddbf928d2018-12-03 10:52:51 +010082 writel(BSRR_BIT(idx, value), &regs->bsrr);
Vikas Manocha77417102017-04-10 15:02:57 -070083
84 return 0;
85}
86
87static int stm32_gpio_get_value(struct udevice *dev, unsigned offset)
88{
89 struct stm32_gpio_priv *priv = dev_get_priv(dev);
90 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010091 int idx;
Vikas Manocha77417102017-04-10 15:02:57 -070092
Patrice Chotarddbf928d2018-12-03 10:52:51 +010093 idx = stm32_offset_to_index(dev, offset);
94 if (idx < 0)
95 return idx;
96
97 return readl(&regs->idr) & BIT(idx) ? 1 : 0;
Vikas Manocha77417102017-04-10 15:02:57 -070098}
99
100static int stm32_gpio_set_value(struct udevice *dev, unsigned offset, int value)
101{
102 struct stm32_gpio_priv *priv = dev_get_priv(dev);
103 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100104 int idx;
Vikas Manocha77417102017-04-10 15:02:57 -0700105
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100106 idx = stm32_offset_to_index(dev, offset);
107 if (idx < 0)
108 return idx;
109
110 writel(BSRR_BIT(idx, value), &regs->bsrr);
Vikas Manocha77417102017-04-10 15:02:57 -0700111
112 return 0;
113}
114
Patrice Chotardcad73242018-10-24 14:10:21 +0200115static int stm32_gpio_get_function(struct udevice *dev, unsigned int offset)
116{
117 struct stm32_gpio_priv *priv = dev_get_priv(dev);
118 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100119 int bits_index;
120 int mask;
121 int idx;
Patrice Chotardcad73242018-10-24 14:10:21 +0200122 u32 mode;
123
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100124 idx = stm32_offset_to_index(dev, offset);
125 if (idx < 0)
126 return idx;
127
128 bits_index = MODE_BITS(idx);
129 mask = MODE_BITS_MASK << bits_index;
130
Patrice Chotardcad73242018-10-24 14:10:21 +0200131 mode = (readl(&regs->moder) & mask) >> bits_index;
132 if (mode == STM32_GPIO_MODE_OUT)
133 return GPIOF_OUTPUT;
134 if (mode == STM32_GPIO_MODE_IN)
135 return GPIOF_INPUT;
136 if (mode == STM32_GPIO_MODE_AN)
137 return GPIOF_UNUSED;
138
139 return GPIOF_FUNC;
140}
141
Vikas Manocha77417102017-04-10 15:02:57 -0700142static const struct dm_gpio_ops gpio_stm32_ops = {
143 .direction_input = stm32_gpio_direction_input,
144 .direction_output = stm32_gpio_direction_output,
145 .get_value = stm32_gpio_get_value,
146 .set_value = stm32_gpio_set_value,
Patrice Chotardcad73242018-10-24 14:10:21 +0200147 .get_function = stm32_gpio_get_function,
Vikas Manocha77417102017-04-10 15:02:57 -0700148};
149
150static int gpio_stm32_probe(struct udevice *dev)
151{
152 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
153 struct stm32_gpio_priv *priv = dev_get_priv(dev);
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100154 struct ofnode_phandle_args args;
Vikas Manocha77417102017-04-10 15:02:57 -0700155 fdt_addr_t addr;
Patrick Delaunayd876eaf2018-03-12 10:46:07 +0100156 const char *name;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100157 int ret;
158 int i;
Vikas Manocha77417102017-04-10 15:02:57 -0700159
Patrick Delaunayd876eaf2018-03-12 10:46:07 +0100160 addr = dev_read_addr(dev);
Vikas Manocha77417102017-04-10 15:02:57 -0700161 if (addr == FDT_ADDR_T_NONE)
162 return -EINVAL;
163
164 priv->regs = (struct stm32_gpio_regs *)addr;
Patrick Delaunayd876eaf2018-03-12 10:46:07 +0100165 name = dev_read_string(dev, "st,bank-name");
Vikas Manocha77417102017-04-10 15:02:57 -0700166 if (!name)
167 return -EINVAL;
168 uc_priv->bank_name = name;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100169
170 i = 0;
171 ret = dev_read_phandle_with_args(dev, "gpio-ranges",
172 NULL, 3, i, &args);
173
174 while (ret != -ENOENT) {
175 priv->gpio_range |= GENMASK(args.args[2] + args.args[0] - 1,
176 args.args[0]);
177
178 uc_priv->gpio_count += args.args[2];
179
180 ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3,
181 ++i, &args);
182 }
183
184 dev_dbg(dev, "addr = 0x%p bank_name = %s gpio_count = %d gpio_range = 0x%x\n",
185 (u32 *)priv->regs, uc_priv->bank_name, uc_priv->gpio_count,
186 priv->gpio_range);
Vikas Manocha77417102017-04-10 15:02:57 -0700187
188#ifdef CONFIG_CLK
189 struct clk clk;
Vikas Manocha77417102017-04-10 15:02:57 -0700190 ret = clk_get_by_index(dev, 0, &clk);
191 if (ret < 0)
192 return ret;
193
194 ret = clk_enable(&clk);
195
196 if (ret) {
197 dev_err(dev, "failed to enable clock\n");
198 return ret;
199 }
200 debug("clock enabled for device %s\n", dev->name);
201#endif
202
203 return 0;
204}
205
206static const struct udevice_id stm32_gpio_ids[] = {
207 { .compatible = "st,stm32-gpio" },
208 { }
209};
210
211U_BOOT_DRIVER(gpio_stm32) = {
212 .name = "gpio_stm32",
213 .id = UCLASS_GPIO,
214 .of_match = stm32_gpio_ids,
215 .probe = gpio_stm32_probe,
216 .ops = &gpio_stm32_ops,
Bin Meng695c4992018-10-24 06:36:30 -0700217 .flags = DM_UC_FLAG_SEQ_ALIAS,
Vikas Manocha77417102017-04-10 15:02:57 -0700218 .priv_auto_alloc_size = sizeof(struct stm32_gpio_priv),
219};