Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 2 | /* |
Patrice Chotard | 3bc599c | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
| 4 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 5 | */ |
| 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 Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 18 | #define MODE_BITS(gpio_pin) (gpio_pin * 2) |
| 19 | #define MODE_BITS_MASK 3 |
Patrice Chotard | 798cd70 | 2018-08-09 11:57:57 +0200 | [diff] [blame] | 20 | #define BSRR_BIT(gpio_pin, value) BIT(gpio_pin + (value ? 0 : 16)) |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 21 | |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 22 | #ifndef CONFIG_SPL_BUILD |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 23 | /* |
| 24 | * convert gpio offset to gpio index taking into account gpio holes |
| 25 | * into gpio bank |
| 26 | */ |
| 27 | int stm32_offset_to_index(struct udevice *dev, unsigned int offset) |
| 28 | { |
| 29 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
Patrick Delaunay | 99e14b2 | 2019-06-21 15:26:46 +0200 | [diff] [blame] | 30 | unsigned int idx = 0; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 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 Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 44 | static 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 Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 48 | 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 Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 58 | |
| 59 | clrsetbits_le32(®s->moder, mask, STM32_GPIO_MODE_IN << bits_index); |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | static 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 Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 69 | 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 Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 79 | |
| 80 | clrsetbits_le32(®s->moder, mask, STM32_GPIO_MODE_OUT << bits_index); |
Patrice Chotard | 798cd70 | 2018-08-09 11:57:57 +0200 | [diff] [blame] | 81 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 82 | writel(BSRR_BIT(idx, value), ®s->bsrr); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static 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 Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 91 | int idx; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 92 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 93 | idx = stm32_offset_to_index(dev, offset); |
| 94 | if (idx < 0) |
| 95 | return idx; |
| 96 | |
| 97 | return readl(®s->idr) & BIT(idx) ? 1 : 0; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | static 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 Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 104 | int idx; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 105 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 106 | idx = stm32_offset_to_index(dev, offset); |
| 107 | if (idx < 0) |
| 108 | return idx; |
| 109 | |
| 110 | writel(BSRR_BIT(idx, value), ®s->bsrr); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 115 | static 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 Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 119 | int bits_index; |
| 120 | int mask; |
| 121 | int idx; |
Patrice Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 122 | u32 mode; |
| 123 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 124 | 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 Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 131 | mode = (readl(®s->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 Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 142 | static 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 Chotard | cad7324 | 2018-10-24 14:10:21 +0200 | [diff] [blame] | 147 | .get_function = stm32_gpio_get_function, |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 148 | }; |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 149 | #endif |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 150 | |
| 151 | static int gpio_stm32_probe(struct udevice *dev) |
| 152 | { |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 153 | struct stm32_gpio_priv *priv = dev_get_priv(dev); |
Patrice Chotard | 8b6d45a | 2018-12-03 10:52:53 +0100 | [diff] [blame] | 154 | struct clk clk; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 155 | fdt_addr_t addr; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 156 | int ret; |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 157 | |
Patrick Delaunay | d876eaf | 2018-03-12 10:46:07 +0100 | [diff] [blame] | 158 | addr = dev_read_addr(dev); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 159 | if (addr == FDT_ADDR_T_NONE) |
| 160 | return -EINVAL; |
| 161 | |
| 162 | priv->regs = (struct stm32_gpio_regs *)addr; |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 163 | |
| 164 | #ifndef CONFIG_SPL_BUILD |
| 165 | struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 166 | struct ofnode_phandle_args args; |
| 167 | const char *name; |
| 168 | int i; |
| 169 | |
Patrick Delaunay | d876eaf | 2018-03-12 10:46:07 +0100 | [diff] [blame] | 170 | name = dev_read_string(dev, "st,bank-name"); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 171 | if (!name) |
| 172 | return -EINVAL; |
| 173 | uc_priv->bank_name = name; |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 174 | |
| 175 | i = 0; |
| 176 | ret = dev_read_phandle_with_args(dev, "gpio-ranges", |
| 177 | NULL, 3, i, &args); |
| 178 | |
Patrice Chotard | 39a8f0b | 2019-01-04 10:55:05 +0100 | [diff] [blame] | 179 | if (ret == -ENOENT) { |
| 180 | uc_priv->gpio_count = STM32_GPIOS_PER_BANK; |
| 181 | priv->gpio_range = GENMASK(STM32_GPIOS_PER_BANK - 1, 0); |
| 182 | } |
| 183 | |
Patrice Chotard | dbf928d | 2018-12-03 10:52:51 +0100 | [diff] [blame] | 184 | while (ret != -ENOENT) { |
| 185 | priv->gpio_range |= GENMASK(args.args[2] + args.args[0] - 1, |
| 186 | args.args[0]); |
| 187 | |
| 188 | uc_priv->gpio_count += args.args[2]; |
| 189 | |
| 190 | ret = dev_read_phandle_with_args(dev, "gpio-ranges", NULL, 3, |
| 191 | ++i, &args); |
| 192 | } |
| 193 | |
| 194 | dev_dbg(dev, "addr = 0x%p bank_name = %s gpio_count = %d gpio_range = 0x%x\n", |
| 195 | (u32 *)priv->regs, uc_priv->bank_name, uc_priv->gpio_count, |
| 196 | priv->gpio_range); |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 197 | #endif |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 198 | ret = clk_get_by_index(dev, 0, &clk); |
| 199 | if (ret < 0) |
| 200 | return ret; |
| 201 | |
| 202 | ret = clk_enable(&clk); |
| 203 | |
| 204 | if (ret) { |
| 205 | dev_err(dev, "failed to enable clock\n"); |
| 206 | return ret; |
| 207 | } |
| 208 | debug("clock enabled for device %s\n", dev->name); |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 213 | U_BOOT_DRIVER(gpio_stm32) = { |
| 214 | .name = "gpio_stm32", |
| 215 | .id = UCLASS_GPIO, |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 216 | .probe = gpio_stm32_probe, |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 217 | #ifndef CONFIG_SPL_BUILD |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 218 | .ops = &gpio_stm32_ops, |
Patrice Chotard | 4fb2246 | 2019-01-04 10:55:06 +0100 | [diff] [blame] | 219 | #endif |
Bin Meng | 695c499 | 2018-10-24 06:36:30 -0700 | [diff] [blame] | 220 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Vikas Manocha | 7741710 | 2017-04-10 15:02:57 -0700 | [diff] [blame] | 221 | .priv_auto_alloc_size = sizeof(struct stm32_gpio_priv), |
| 222 | }; |