Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018, STMicroelectronics - All Rights Reserved |
| 4 | * |
| 5 | * Driver for STMicroelectronics Multi-Function eXpander (STMFX) GPIO expander |
| 6 | * based on Linux driver : pinctrl/pinctrl-stmfx.c |
| 7 | */ |
| 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <i2c.h> |
| 11 | #include <asm/gpio.h> |
| 12 | #include <dm/device.h> |
| 13 | #include <dm/device-internal.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 14 | #include <dm/device_compat.h> |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 15 | #include <dm/lists.h> |
| 16 | #include <dm/pinctrl.h> |
| 17 | #include <linux/bitfield.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 18 | #include <linux/bitops.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 19 | #include <linux/delay.h> |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 20 | #include <power/regulator.h> |
| 21 | |
| 22 | /* STMFX pins = GPIO[15:0] + aGPIO[7:0] */ |
| 23 | #define STMFX_MAX_GPIO 16 |
| 24 | #define STMFX_MAX_AGPIO 8 |
| 25 | |
| 26 | /* General */ |
| 27 | #define STMFX_REG_CHIP_ID 0x00 /* R */ |
| 28 | #define STMFX_REG_FW_VERSION_MSB 0x01 /* R */ |
| 29 | #define STMFX_REG_FW_VERSION_LSB 0x02 /* R */ |
| 30 | #define STMFX_REG_SYS_CTRL 0x40 /* RW */ |
| 31 | |
| 32 | /* MFX boot time is around 10ms, so after reset, we have to wait this delay */ |
| 33 | #define STMFX_BOOT_TIME_MS 10 |
| 34 | |
| 35 | /* GPIOs expander */ |
| 36 | /* GPIO_STATE1 0x10, GPIO_STATE2 0x11, GPIO_STATE3 0x12 */ |
| 37 | #define STMFX_REG_GPIO_STATE 0x10 /* R */ |
| 38 | /* GPIO_DIR1 0x60, GPIO_DIR2 0x61, GPIO_DIR3 0x63 */ |
| 39 | #define STMFX_REG_GPIO_DIR 0x60 /* RW */ |
| 40 | /* GPIO_TYPE1 0x64, GPIO_TYPE2 0x65, GPIO_TYPE3 0x66 */ |
| 41 | #define STMFX_REG_GPIO_TYPE 0x64 /* RW */ |
| 42 | /* GPIO_PUPD1 0x68, GPIO_PUPD2 0x69, GPIO_PUPD3 0x6A */ |
| 43 | #define STMFX_REG_GPIO_PUPD 0x68 /* RW */ |
| 44 | /* GPO_SET1 0x6C, GPO_SET2 0x6D, GPO_SET3 0x6E */ |
| 45 | #define STMFX_REG_GPO_SET 0x6C /* RW */ |
| 46 | /* GPO_CLR1 0x70, GPO_CLR2 0x71, GPO_CLR3 0x72 */ |
| 47 | #define STMFX_REG_GPO_CLR 0x70 /* RW */ |
| 48 | |
| 49 | /* STMFX_REG_CHIP_ID bitfields */ |
| 50 | #define STMFX_REG_CHIP_ID_MASK GENMASK(7, 0) |
| 51 | |
| 52 | /* STMFX_REG_SYS_CTRL bitfields */ |
| 53 | #define STMFX_REG_SYS_CTRL_GPIO_EN BIT(0) |
| 54 | #define STMFX_REG_SYS_CTRL_ALTGPIO_EN BIT(3) |
| 55 | #define STMFX_REG_SYS_CTRL_SWRST BIT(7) |
| 56 | |
| 57 | #define NR_GPIO_REGS 3 |
| 58 | #define NR_GPIOS_PER_REG 8 |
| 59 | #define get_reg(offset) ((offset) / NR_GPIOS_PER_REG) |
| 60 | #define get_shift(offset) ((offset) % NR_GPIOS_PER_REG) |
| 61 | #define get_mask(offset) (BIT(get_shift(offset))) |
| 62 | |
| 63 | struct stmfx_pinctrl { |
| 64 | struct udevice *gpio; |
| 65 | }; |
| 66 | |
| 67 | static int stmfx_read(struct udevice *dev, uint offset) |
| 68 | { |
| 69 | return dm_i2c_reg_read(dev_get_parent(dev), offset); |
| 70 | } |
| 71 | |
| 72 | static int stmfx_write(struct udevice *dev, uint offset, unsigned int val) |
| 73 | { |
| 74 | return dm_i2c_reg_write(dev_get_parent(dev), offset, val); |
| 75 | } |
| 76 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 77 | static int stmfx_read_reg(struct udevice *dev, u8 reg_base, uint offset) |
Patrick Delaunay | 84115cd | 2020-06-04 14:30:27 +0200 | [diff] [blame] | 78 | { |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 79 | u8 reg = reg_base + get_reg(offset); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 80 | u32 mask = get_mask(offset); |
| 81 | int ret; |
| 82 | |
| 83 | ret = stmfx_read(dev, reg); |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 84 | if (ret < 0) |
| 85 | return ret; |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 86 | |
| 87 | return ret < 0 ? ret : !!(ret & mask); |
| 88 | } |
| 89 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 90 | static int stmfx_write_reg(struct udevice *dev, u8 reg_base, uint offset, |
| 91 | uint val) |
| 92 | { |
| 93 | u8 reg = reg_base + get_reg(offset); |
| 94 | u32 mask = get_mask(offset); |
| 95 | int ret; |
| 96 | |
| 97 | ret = stmfx_read(dev, reg); |
| 98 | if (ret < 0) |
| 99 | return ret; |
| 100 | ret = (ret & ~mask) | (val ? mask : 0); |
| 101 | |
| 102 | return stmfx_write(dev, reg, ret); |
| 103 | } |
| 104 | |
| 105 | static int stmfx_conf_set_pupd(struct udevice *dev, unsigned int offset, |
| 106 | uint pupd) |
| 107 | { |
| 108 | return stmfx_write_reg(dev, STMFX_REG_GPIO_PUPD, offset, pupd); |
| 109 | } |
| 110 | |
Patrick Delaunay | 8d895ef | 2020-06-04 14:30:31 +0200 | [diff] [blame] | 111 | static int stmfx_conf_get_pupd(struct udevice *dev, unsigned int offset) |
| 112 | { |
| 113 | return stmfx_read_reg(dev, STMFX_REG_GPIO_PUPD, offset); |
| 114 | } |
| 115 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 116 | static int stmfx_conf_set_type(struct udevice *dev, unsigned int offset, |
| 117 | uint type) |
| 118 | { |
| 119 | return stmfx_write_reg(dev, STMFX_REG_GPIO_TYPE, offset, type); |
| 120 | } |
| 121 | |
Patrick Delaunay | 8d895ef | 2020-06-04 14:30:31 +0200 | [diff] [blame] | 122 | static int stmfx_conf_get_type(struct udevice *dev, unsigned int offset) |
| 123 | { |
| 124 | return stmfx_read_reg(dev, STMFX_REG_GPIO_TYPE, offset); |
| 125 | } |
| 126 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 127 | static int stmfx_gpio_get(struct udevice *dev, unsigned int offset) |
| 128 | { |
| 129 | return stmfx_read_reg(dev, STMFX_REG_GPIO_STATE, offset); |
| 130 | } |
| 131 | |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 132 | static int stmfx_gpio_set(struct udevice *dev, unsigned int offset, int value) |
| 133 | { |
| 134 | u32 reg = value ? STMFX_REG_GPO_SET : STMFX_REG_GPO_CLR; |
| 135 | u32 mask = get_mask(offset); |
| 136 | |
| 137 | return stmfx_write(dev, reg + get_reg(offset), mask); |
| 138 | } |
| 139 | |
| 140 | static int stmfx_gpio_get_function(struct udevice *dev, unsigned int offset) |
| 141 | { |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 142 | int ret = stmfx_read_reg(dev, STMFX_REG_GPIO_DIR, offset); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 143 | |
| 144 | if (ret < 0) |
| 145 | return ret; |
| 146 | /* On stmfx, gpio pins direction is (0)input, (1)output. */ |
| 147 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 148 | return ret ? GPIOF_OUTPUT : GPIOF_INPUT; |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static int stmfx_gpio_direction_input(struct udevice *dev, unsigned int offset) |
| 152 | { |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 153 | return stmfx_write_reg(dev, STMFX_REG_GPIO_DIR, offset, 0); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static int stmfx_gpio_direction_output(struct udevice *dev, |
| 157 | unsigned int offset, int value) |
| 158 | { |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 159 | int ret = stmfx_gpio_set(dev, offset, value); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 160 | if (ret < 0) |
| 161 | return ret; |
| 162 | |
Patrick Delaunay | fabb6e1 | 2020-06-04 14:30:29 +0200 | [diff] [blame] | 163 | return stmfx_write_reg(dev, STMFX_REG_GPIO_DIR, offset, 1); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 164 | } |
| 165 | |
Patrick Delaunay | 22b3fe4 | 2020-06-04 14:30:30 +0200 | [diff] [blame] | 166 | static int stmfx_gpio_set_dir_flags(struct udevice *dev, unsigned int offset, |
| 167 | ulong flags) |
| 168 | { |
| 169 | int ret = -ENOTSUPP; |
| 170 | |
| 171 | if (flags & GPIOD_IS_OUT) { |
| 172 | if (flags & GPIOD_OPEN_SOURCE) |
| 173 | return -ENOTSUPP; |
| 174 | if (flags & GPIOD_OPEN_DRAIN) |
| 175 | ret = stmfx_conf_set_type(dev, offset, 0); |
| 176 | else /* PUSH-PULL */ |
| 177 | ret = stmfx_conf_set_type(dev, offset, 1); |
| 178 | if (ret) |
| 179 | return ret; |
| 180 | ret = stmfx_gpio_direction_output(dev, offset, |
| 181 | GPIOD_FLAGS_OUTPUT(flags)); |
| 182 | } else if (flags & GPIOD_IS_IN) { |
| 183 | ret = stmfx_gpio_direction_input(dev, offset); |
| 184 | if (ret) |
| 185 | return ret; |
| 186 | if (flags & GPIOD_PULL_UP) { |
| 187 | ret = stmfx_conf_set_type(dev, offset, 1); |
| 188 | if (ret) |
| 189 | return ret; |
| 190 | ret = stmfx_conf_set_pupd(dev, offset, 1); |
| 191 | } else if (flags & GPIOD_PULL_DOWN) { |
| 192 | ret = stmfx_conf_set_type(dev, offset, 1); |
| 193 | if (ret) |
| 194 | return ret; |
| 195 | ret = stmfx_conf_set_pupd(dev, offset, 0); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | return ret; |
| 200 | } |
| 201 | |
Patrick Delaunay | 8d895ef | 2020-06-04 14:30:31 +0200 | [diff] [blame] | 202 | static int stmfx_gpio_get_dir_flags(struct udevice *dev, unsigned int offset, |
| 203 | ulong *flags) |
| 204 | { |
| 205 | ulong dir_flags = 0; |
| 206 | int ret; |
| 207 | |
| 208 | if (stmfx_gpio_get_function(dev, offset) == GPIOF_OUTPUT) { |
| 209 | dir_flags |= GPIOD_IS_OUT; |
| 210 | ret = stmfx_conf_get_type(dev, offset); |
| 211 | if (ret < 0) |
| 212 | return ret; |
| 213 | if (ret == 0) |
| 214 | dir_flags |= GPIOD_OPEN_DRAIN; |
| 215 | /* 1 = push-pull (default), open source not supported */ |
| 216 | ret = stmfx_gpio_get(dev, offset); |
| 217 | if (ret < 0) |
| 218 | return ret; |
| 219 | if (ret) |
| 220 | dir_flags |= GPIOD_IS_OUT_ACTIVE; |
| 221 | } else { |
| 222 | dir_flags |= GPIOD_IS_IN; |
| 223 | ret = stmfx_conf_get_type(dev, offset); |
| 224 | if (ret < 0) |
| 225 | return ret; |
| 226 | if (ret == 1) { |
| 227 | ret = stmfx_conf_get_pupd(dev, offset); |
| 228 | if (ret < 0) |
| 229 | return ret; |
| 230 | if (ret == 1) |
| 231 | dir_flags |= GPIOD_PULL_UP; |
| 232 | else |
| 233 | dir_flags |= GPIOD_PULL_DOWN; |
| 234 | } |
| 235 | } |
| 236 | *flags = dir_flags; |
| 237 | |
| 238 | return 0; |
| 239 | } |
| 240 | |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 241 | static int stmfx_gpio_probe(struct udevice *dev) |
| 242 | { |
| 243 | struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 244 | struct ofnode_phandle_args args; |
| 245 | u8 sys_ctrl; |
| 246 | |
| 247 | uc_priv->bank_name = "stmfx"; |
| 248 | uc_priv->gpio_count = STMFX_MAX_GPIO + STMFX_MAX_AGPIO; |
| 249 | if (!dev_read_phandle_with_args(dev, "gpio-ranges", |
| 250 | NULL, 3, 0, &args)) { |
| 251 | uc_priv->gpio_count = args.args[2]; |
| 252 | } |
| 253 | |
| 254 | /* enable GPIO function */ |
| 255 | sys_ctrl = STMFX_REG_SYS_CTRL_GPIO_EN; |
| 256 | if (uc_priv->gpio_count > STMFX_MAX_GPIO) |
| 257 | sys_ctrl |= STMFX_REG_SYS_CTRL_ALTGPIO_EN; |
| 258 | stmfx_write(dev, STMFX_REG_SYS_CTRL, sys_ctrl); |
| 259 | |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | static const struct dm_gpio_ops stmfx_gpio_ops = { |
| 264 | .set_value = stmfx_gpio_set, |
| 265 | .get_value = stmfx_gpio_get, |
| 266 | .get_function = stmfx_gpio_get_function, |
| 267 | .direction_input = stmfx_gpio_direction_input, |
| 268 | .direction_output = stmfx_gpio_direction_output, |
Patrick Delaunay | 22b3fe4 | 2020-06-04 14:30:30 +0200 | [diff] [blame] | 269 | .set_dir_flags = stmfx_gpio_set_dir_flags, |
Patrick Delaunay | 8d895ef | 2020-06-04 14:30:31 +0200 | [diff] [blame] | 270 | .get_dir_flags = stmfx_gpio_get_dir_flags, |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 271 | }; |
| 272 | |
| 273 | U_BOOT_DRIVER(stmfx_gpio) = { |
| 274 | .name = "stmfx-gpio", |
| 275 | .id = UCLASS_GPIO, |
| 276 | .probe = stmfx_gpio_probe, |
| 277 | .ops = &stmfx_gpio_ops, |
| 278 | }; |
| 279 | |
| 280 | #if CONFIG_IS_ENABLED(PINCONF) |
| 281 | static const struct pinconf_param stmfx_pinctrl_conf_params[] = { |
| 282 | { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 }, |
| 283 | { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 0 }, |
| 284 | { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 0 }, |
| 285 | { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 0 }, |
| 286 | { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 }, |
| 287 | { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 }, |
| 288 | { "output-high", PIN_CONFIG_OUTPUT, 1 }, |
| 289 | { "output-low", PIN_CONFIG_OUTPUT, 0 }, |
| 290 | }; |
| 291 | |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 292 | static int stmfx_pinctrl_conf_set(struct udevice *dev, unsigned int pin, |
| 293 | unsigned int param, unsigned int arg) |
| 294 | { |
| 295 | int ret, dir; |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 296 | struct stmfx_pinctrl *plat = dev_get_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 297 | |
| 298 | dir = stmfx_gpio_get_function(plat->gpio, pin); |
| 299 | |
| 300 | if (dir < 0) |
| 301 | return dir; |
| 302 | |
| 303 | switch (param) { |
| 304 | case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT: |
| 305 | case PIN_CONFIG_BIAS_DISABLE: |
Patrick Delaunay | abee80d | 2019-07-30 19:16:11 +0200 | [diff] [blame] | 306 | case PIN_CONFIG_DRIVE_PUSH_PULL: |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 307 | ret = stmfx_conf_set_type(dev, pin, 0); |
Patrick Delaunay | abee80d | 2019-07-30 19:16:11 +0200 | [diff] [blame] | 308 | break; |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 309 | case PIN_CONFIG_BIAS_PULL_DOWN: |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 310 | ret = stmfx_conf_set_type(dev, pin, 1); |
Patrick Delaunay | abee80d | 2019-07-30 19:16:11 +0200 | [diff] [blame] | 311 | if (ret) |
| 312 | return ret; |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 313 | ret = stmfx_conf_set_pupd(dev, pin, 0); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 314 | break; |
| 315 | case PIN_CONFIG_BIAS_PULL_UP: |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 316 | ret = stmfx_conf_set_type(dev, pin, 1); |
Patrick Delaunay | abee80d | 2019-07-30 19:16:11 +0200 | [diff] [blame] | 317 | if (ret) |
| 318 | return ret; |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 319 | ret = stmfx_conf_set_pupd(dev, pin, 1); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 320 | break; |
| 321 | case PIN_CONFIG_DRIVE_OPEN_DRAIN: |
Patrick Delaunay | 067c739 | 2020-06-04 14:30:28 +0200 | [diff] [blame] | 322 | ret = stmfx_conf_set_type(dev, pin, 1); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 323 | break; |
| 324 | case PIN_CONFIG_OUTPUT: |
| 325 | ret = stmfx_gpio_direction_output(plat->gpio, pin, arg); |
| 326 | break; |
| 327 | default: |
| 328 | return -ENOTSUPP; |
| 329 | } |
| 330 | |
| 331 | return ret; |
| 332 | } |
| 333 | #endif |
| 334 | |
| 335 | static int stmfx_pinctrl_get_pins_count(struct udevice *dev) |
| 336 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 337 | struct stmfx_pinctrl *plat = dev_get_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 338 | struct gpio_dev_priv *uc_priv; |
| 339 | |
| 340 | uc_priv = dev_get_uclass_priv(plat->gpio); |
| 341 | |
| 342 | return uc_priv->gpio_count; |
| 343 | } |
| 344 | |
| 345 | /* |
Patrice Chotard | 54f5bf3 | 2021-01-20 13:43:39 +0100 | [diff] [blame] | 346 | * STMFX pins[15:0] are called "gpio[15:0]" |
| 347 | * and STMFX pins[23:16] are called "agpio[7:0]" |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 348 | */ |
Patrice Chotard | ca5cc31 | 2021-01-20 13:43:40 +0100 | [diff] [blame] | 349 | static char pin_name[PINNAME_SIZE]; |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 350 | static const char *stmfx_pinctrl_get_pin_name(struct udevice *dev, |
| 351 | unsigned int selector) |
| 352 | { |
| 353 | if (selector < STMFX_MAX_GPIO) |
Patrice Chotard | ca5cc31 | 2021-01-20 13:43:40 +0100 | [diff] [blame] | 354 | snprintf(pin_name, PINNAME_SIZE, "gpio%u", selector); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 355 | else |
Patrice Chotard | ca5cc31 | 2021-01-20 13:43:40 +0100 | [diff] [blame] | 356 | snprintf(pin_name, PINNAME_SIZE, "agpio%u", selector - 16); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 357 | return pin_name; |
| 358 | } |
| 359 | |
Patrick Delaunay | 5593333 | 2020-06-04 14:30:32 +0200 | [diff] [blame] | 360 | static const char *stmfx_pinctrl_get_pin_conf(struct udevice *dev, |
| 361 | unsigned int pin, int func) |
| 362 | { |
| 363 | int pupd, type; |
| 364 | |
| 365 | type = stmfx_conf_get_type(dev, pin); |
| 366 | if (type < 0) |
| 367 | return ""; |
| 368 | |
| 369 | if (func == GPIOF_OUTPUT) { |
| 370 | if (type) |
| 371 | return "drive-open-drain"; |
| 372 | else |
| 373 | return ""; /* default: push-pull*/ |
| 374 | } |
| 375 | if (!type) |
| 376 | return ""; /* default: bias-disable*/ |
| 377 | |
| 378 | pupd = stmfx_conf_get_pupd(dev, pin); |
| 379 | if (pupd < 0) |
| 380 | return ""; |
| 381 | |
| 382 | if (pupd) |
| 383 | return "bias-pull-up"; |
| 384 | else |
| 385 | return "bias-pull-down"; |
| 386 | } |
| 387 | |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 388 | static int stmfx_pinctrl_get_pin_muxing(struct udevice *dev, |
| 389 | unsigned int selector, |
| 390 | char *buf, int size) |
| 391 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 392 | struct stmfx_pinctrl *plat = dev_get_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 393 | int func; |
| 394 | |
| 395 | func = stmfx_gpio_get_function(plat->gpio, selector); |
| 396 | if (func < 0) |
| 397 | return func; |
| 398 | |
Patrick Delaunay | 5593333 | 2020-06-04 14:30:32 +0200 | [diff] [blame] | 399 | snprintf(buf, size, "%s ", func == GPIOF_INPUT ? "input" : "output"); |
| 400 | |
| 401 | strncat(buf, stmfx_pinctrl_get_pin_conf(dev, selector, func), size); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | static int stmfx_pinctrl_bind(struct udevice *dev) |
| 407 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 408 | struct stmfx_pinctrl *plat = dev_get_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 409 | |
Patrick Delaunay | c2a8181 | 2020-10-28 10:51:56 +0100 | [diff] [blame] | 410 | /* subnode name is not explicit: use father name */ |
| 411 | device_set_name(dev, dev->parent->name); |
| 412 | |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 413 | return device_bind_driver_to_node(dev->parent, |
Patrick Delaunay | c2a8181 | 2020-10-28 10:51:56 +0100 | [diff] [blame] | 414 | "stmfx-gpio", dev->parent->name, |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 415 | dev_ofnode(dev), &plat->gpio); |
| 416 | }; |
| 417 | |
| 418 | static int stmfx_pinctrl_probe(struct udevice *dev) |
| 419 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 420 | struct stmfx_pinctrl *plat = dev_get_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 421 | |
| 422 | return device_probe(plat->gpio); |
| 423 | }; |
| 424 | |
| 425 | const struct pinctrl_ops stmfx_pinctrl_ops = { |
| 426 | .get_pins_count = stmfx_pinctrl_get_pins_count, |
| 427 | .get_pin_name = stmfx_pinctrl_get_pin_name, |
| 428 | .set_state = pinctrl_generic_set_state, |
| 429 | .get_pin_muxing = stmfx_pinctrl_get_pin_muxing, |
| 430 | #if CONFIG_IS_ENABLED(PINCONF) |
| 431 | .pinconf_set = stmfx_pinctrl_conf_set, |
| 432 | .pinconf_num_params = ARRAY_SIZE(stmfx_pinctrl_conf_params), |
| 433 | .pinconf_params = stmfx_pinctrl_conf_params, |
| 434 | #endif |
| 435 | }; |
| 436 | |
| 437 | static const struct udevice_id stmfx_pinctrl_match[] = { |
| 438 | { .compatible = "st,stmfx-0300-pinctrl", }, |
| 439 | }; |
| 440 | |
| 441 | U_BOOT_DRIVER(stmfx_pinctrl) = { |
| 442 | .name = "stmfx-pinctrl", |
| 443 | .id = UCLASS_PINCTRL, |
| 444 | .of_match = of_match_ptr(stmfx_pinctrl_match), |
| 445 | .bind = stmfx_pinctrl_bind, |
| 446 | .probe = stmfx_pinctrl_probe, |
| 447 | .ops = &stmfx_pinctrl_ops, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 448 | .plat_auto = sizeof(struct stmfx_pinctrl), |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 449 | }; |
| 450 | |
| 451 | static int stmfx_chip_init(struct udevice *dev) |
| 452 | { |
| 453 | u8 id; |
| 454 | u8 version[2]; |
| 455 | int ret; |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 456 | struct dm_i2c_chip *chip = dev_get_parent_plat(dev); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 457 | |
Patrick Delaunay | b100892 | 2020-01-28 10:44:14 +0100 | [diff] [blame] | 458 | ret = dm_i2c_reg_read(dev, STMFX_REG_CHIP_ID); |
| 459 | if (ret < 0) { |
| 460 | dev_err(dev, "error reading chip id: %d\n", ret); |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 461 | return ret; |
| 462 | } |
Patrick Delaunay | b100892 | 2020-01-28 10:44:14 +0100 | [diff] [blame] | 463 | id = (u8)ret; |
Patrick Delaunay | 8262435 | 2019-03-11 11:13:15 +0100 | [diff] [blame] | 464 | /* |
| 465 | * Check that ID is the complement of the I2C address: |
| 466 | * STMFX I2C address follows the 7-bit format (MSB), that's why |
| 467 | * client->addr is shifted. |
| 468 | * |
| 469 | * STMFX_I2C_ADDR| STMFX | Linux |
| 470 | * input pin | I2C device address | I2C device address |
| 471 | *--------------------------------------------------------- |
| 472 | * 0 | b: 1000 010x h:0x84 | 0x42 |
| 473 | * 1 | b: 1000 011x h:0x86 | 0x43 |
| 474 | */ |
| 475 | if (FIELD_GET(STMFX_REG_CHIP_ID_MASK, ~id) != (chip->chip_addr << 1)) { |
| 476 | dev_err(dev, "unknown chip id: %#x\n", id); |
| 477 | return -EINVAL; |
| 478 | } |
| 479 | |
| 480 | ret = dm_i2c_read(dev, STMFX_REG_FW_VERSION_MSB, |
| 481 | version, sizeof(version)); |
| 482 | if (ret) { |
| 483 | dev_err(dev, "error reading fw version: %d\n", ret); |
| 484 | return ret; |
| 485 | } |
| 486 | |
| 487 | dev_info(dev, "STMFX id: %#x, fw version: %x.%02x\n", |
| 488 | id, version[0], version[1]); |
| 489 | |
| 490 | ret = dm_i2c_reg_read(dev, STMFX_REG_SYS_CTRL); |
| 491 | |
| 492 | if (ret < 0) |
| 493 | return ret; |
| 494 | |
| 495 | ret = dm_i2c_reg_write(dev, STMFX_REG_SYS_CTRL, |
| 496 | ret | STMFX_REG_SYS_CTRL_SWRST); |
| 497 | if (ret) |
| 498 | return ret; |
| 499 | |
| 500 | mdelay(STMFX_BOOT_TIME_MS); |
| 501 | |
| 502 | return ret; |
| 503 | } |
| 504 | |
| 505 | static int stmfx_probe(struct udevice *dev) |
| 506 | { |
| 507 | struct udevice *vdd; |
| 508 | int ret; |
| 509 | |
| 510 | ret = device_get_supply_regulator(dev, "vdd-supply", &vdd); |
| 511 | if (ret && ret != -ENOENT) { |
| 512 | dev_err(dev, "vdd regulator error:%d\n", ret); |
| 513 | return ret; |
| 514 | } |
| 515 | if (!ret) { |
| 516 | ret = regulator_set_enable(vdd, true); |
| 517 | if (ret) { |
| 518 | dev_err(dev, "vdd enable failed: %d\n", ret); |
| 519 | return ret; |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | return stmfx_chip_init(dev); |
| 524 | } |
| 525 | |
| 526 | static const struct udevice_id stmfx_match[] = { |
| 527 | { .compatible = "st,stmfx-0300", }, |
| 528 | }; |
| 529 | |
| 530 | U_BOOT_DRIVER(stmfx) = { |
| 531 | .name = "stmfx", |
| 532 | .id = UCLASS_I2C_GENERIC, |
| 533 | .of_match = of_match_ptr(stmfx_match), |
| 534 | .probe = stmfx_probe, |
| 535 | .bind = dm_scan_fdt_dev, |
| 536 | }; |