blob: f160b4e68957fa36e3bfee629e8f086a30601828 [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 MODE_BITS(gpio_pin) (gpio_pin * 2)
19#define MODE_BITS_MASK 3
Patrice Chotard798cd702018-08-09 11:57:57 +020020#define BSRR_BIT(gpio_pin, value) BIT(gpio_pin + (value ? 0 : 16))
Vikas Manocha77417102017-04-10 15:02:57 -070021
Patrice Chotarddbf928d2018-12-03 10:52:51 +010022/*
23 * convert gpio offset to gpio index taking into account gpio holes
24 * into gpio bank
25 */
26int stm32_offset_to_index(struct udevice *dev, unsigned int offset)
27{
28 struct stm32_gpio_priv *priv = dev_get_priv(dev);
29 int idx = 0;
30 int i;
31
32 for (i = 0; i < STM32_GPIOS_PER_BANK; i++) {
33 if (priv->gpio_range & BIT(i)) {
34 if (idx == offset)
35 return idx;
36 idx++;
37 }
38 }
39 /* shouldn't happen */
40 return -EINVAL;
41}
42
Vikas Manocha77417102017-04-10 15:02:57 -070043static int stm32_gpio_direction_input(struct udevice *dev, unsigned offset)
44{
45 struct stm32_gpio_priv *priv = dev_get_priv(dev);
46 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010047 int bits_index;
48 int mask;
49 int idx;
50
51 idx = stm32_offset_to_index(dev, offset);
52 if (idx < 0)
53 return idx;
54
55 bits_index = MODE_BITS(idx);
56 mask = MODE_BITS_MASK << bits_index;
Vikas Manocha77417102017-04-10 15:02:57 -070057
58 clrsetbits_le32(&regs->moder, mask, STM32_GPIO_MODE_IN << bits_index);
59
60 return 0;
61}
62
63static int stm32_gpio_direction_output(struct udevice *dev, unsigned offset,
64 int value)
65{
66 struct stm32_gpio_priv *priv = dev_get_priv(dev);
67 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010068 int bits_index;
69 int mask;
70 int idx;
71
72 idx = stm32_offset_to_index(dev, offset);
73 if (idx < 0)
74 return idx;
75
76 bits_index = MODE_BITS(idx);
77 mask = MODE_BITS_MASK << bits_index;
Vikas Manocha77417102017-04-10 15:02:57 -070078
79 clrsetbits_le32(&regs->moder, mask, STM32_GPIO_MODE_OUT << bits_index);
Patrice Chotard798cd702018-08-09 11:57:57 +020080
Patrice Chotarddbf928d2018-12-03 10:52:51 +010081 writel(BSRR_BIT(idx, value), &regs->bsrr);
Vikas Manocha77417102017-04-10 15:02:57 -070082
83 return 0;
84}
85
86static int stm32_gpio_get_value(struct udevice *dev, unsigned offset)
87{
88 struct stm32_gpio_priv *priv = dev_get_priv(dev);
89 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +010090 int idx;
Vikas Manocha77417102017-04-10 15:02:57 -070091
Patrice Chotarddbf928d2018-12-03 10:52:51 +010092 idx = stm32_offset_to_index(dev, offset);
93 if (idx < 0)
94 return idx;
95
96 return readl(&regs->idr) & BIT(idx) ? 1 : 0;
Vikas Manocha77417102017-04-10 15:02:57 -070097}
98
99static int stm32_gpio_set_value(struct udevice *dev, unsigned offset, int value)
100{
101 struct stm32_gpio_priv *priv = dev_get_priv(dev);
102 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100103 int idx;
Vikas Manocha77417102017-04-10 15:02:57 -0700104
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100105 idx = stm32_offset_to_index(dev, offset);
106 if (idx < 0)
107 return idx;
108
109 writel(BSRR_BIT(idx, value), &regs->bsrr);
Vikas Manocha77417102017-04-10 15:02:57 -0700110
111 return 0;
112}
113
Patrice Chotardcad73242018-10-24 14:10:21 +0200114static int stm32_gpio_get_function(struct udevice *dev, unsigned int offset)
115{
116 struct stm32_gpio_priv *priv = dev_get_priv(dev);
117 struct stm32_gpio_regs *regs = priv->regs;
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100118 int bits_index;
119 int mask;
120 int idx;
Patrice Chotardcad73242018-10-24 14:10:21 +0200121 u32 mode;
122
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100123 idx = stm32_offset_to_index(dev, offset);
124 if (idx < 0)
125 return idx;
126
127 bits_index = MODE_BITS(idx);
128 mask = MODE_BITS_MASK << bits_index;
129
Patrice Chotardcad73242018-10-24 14:10:21 +0200130 mode = (readl(&regs->moder) & mask) >> bits_index;
131 if (mode == STM32_GPIO_MODE_OUT)
132 return GPIOF_OUTPUT;
133 if (mode == STM32_GPIO_MODE_IN)
134 return GPIOF_INPUT;
135 if (mode == STM32_GPIO_MODE_AN)
136 return GPIOF_UNUSED;
137
138 return GPIOF_FUNC;
139}
140
Vikas Manocha77417102017-04-10 15:02:57 -0700141static const struct dm_gpio_ops gpio_stm32_ops = {
142 .direction_input = stm32_gpio_direction_input,
143 .direction_output = stm32_gpio_direction_output,
144 .get_value = stm32_gpio_get_value,
145 .set_value = stm32_gpio_set_value,
Patrice Chotardcad73242018-10-24 14:10:21 +0200146 .get_function = stm32_gpio_get_function,
Vikas Manocha77417102017-04-10 15:02:57 -0700147};
148
149static int gpio_stm32_probe(struct udevice *dev)
150{
151 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
152 struct stm32_gpio_priv *priv = dev_get_priv(dev);
Patrice Chotarddbf928d2018-12-03 10:52:51 +0100153 struct ofnode_phandle_args args;
Patrice Chotard8b6d45a2018-12-03 10:52:53 +0100154 struct clk clk;
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
Vikas Manocha77417102017-04-10 15:02:57 -0700188 ret = clk_get_by_index(dev, 0, &clk);
189 if (ret < 0)
190 return ret;
191
192 ret = clk_enable(&clk);
193
194 if (ret) {
195 dev_err(dev, "failed to enable clock\n");
196 return ret;
197 }
198 debug("clock enabled for device %s\n", dev->name);
Vikas Manocha77417102017-04-10 15:02:57 -0700199
200 return 0;
201}
202
203static const struct udevice_id stm32_gpio_ids[] = {
204 { .compatible = "st,stm32-gpio" },
205 { }
206};
207
208U_BOOT_DRIVER(gpio_stm32) = {
209 .name = "gpio_stm32",
210 .id = UCLASS_GPIO,
211 .of_match = stm32_gpio_ids,
212 .probe = gpio_stm32_probe,
213 .ops = &gpio_stm32_ops,
Bin Meng695c4992018-10-24 06:36:30 -0700214 .flags = DM_UC_FLAG_SEQ_ALIAS,
Vikas Manocha77417102017-04-10 15:02:57 -0700215 .priv_auto_alloc_size = sizeof(struct stm32_gpio_priv),
216};