Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 2 | /* |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 3 | * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@com> |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __PINCTRL_H |
| 7 | #define __PINCTRL_H |
| 8 | |
Patrice Chotard | d5a8313 | 2018-10-24 14:10:17 +0200 | [diff] [blame] | 9 | #define PINNAME_SIZE 10 |
Ashok Reddy Soma | e19b8dd | 2022-02-23 15:23:04 +0100 | [diff] [blame] | 10 | #define PINMUX_SIZE 80 |
Patrice Chotard | d5a8313 | 2018-10-24 14:10:17 +0200 | [diff] [blame] | 11 | |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 12 | /** |
| 13 | * struct pinconf_param - pin config parameters |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 14 | * @property: Property name in DT nodes |
| 15 | * @param: ID for this config parameter |
| 16 | * @default_value: default value for this config parameter used in case |
| 17 | * no value is specified in DT nodes |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 18 | */ |
| 19 | struct pinconf_param { |
| 20 | const char * const property; |
| 21 | unsigned int param; |
| 22 | u32 default_value; |
| 23 | }; |
| 24 | |
| 25 | /** |
| 26 | * struct pinctrl_ops - pin control operations, to be implemented by |
| 27 | * pin controller drivers. |
| 28 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 29 | * set_state() is the only mandatory operation. You can implement your pinctrl |
| 30 | * driver with its own @set_state. In this case, the other callbacks are not |
| 31 | * required. Otherwise, generic pinctrl framework is also available; use |
| 32 | * pinctrl_generic_set_state for @set_state, and implement other operations |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 33 | * depending on your necessity. |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 34 | */ |
| 35 | struct pinctrl_ops { |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 36 | /** |
| 37 | * @get_pins_count: Get the number of selectable pins |
| 38 | * |
| 39 | * @dev: Pinctrl device to use |
| 40 | * |
| 41 | * This function is necessary to parse the "pins" property in DTS. |
| 42 | * |
| 43 | * @Return: |
| 44 | * number of selectable named pins available in this driver |
| 45 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 46 | int (*get_pins_count)(struct udevice *dev); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 47 | |
| 48 | /** |
| 49 | * @get_pin_name: Get the name of a pin |
| 50 | * |
| 51 | * @dev: Pinctrl device of the pin |
| 52 | * |
| 53 | * @selector: The pin selector |
| 54 | * |
| 55 | * This function is called by the core to figure out which pin it will |
| 56 | * do operations to. This function is necessary to parse the "pins" |
| 57 | * property in DTS. |
| 58 | * |
| 59 | * @Return: const pointer to the name of the pin |
| 60 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 61 | const char *(*get_pin_name)(struct udevice *dev, unsigned selector); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 62 | |
| 63 | /** |
| 64 | * @get_groups_count: Get the number of selectable groups |
| 65 | * |
| 66 | * @dev: Pinctrl device to use |
| 67 | * |
| 68 | * This function is necessary to parse the "groups" property in DTS. |
| 69 | * |
| 70 | * @Return: |
| 71 | * number of selectable named groups available in the driver |
| 72 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 73 | int (*get_groups_count)(struct udevice *dev); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 74 | |
| 75 | /** |
| 76 | * @get_group_name: Get the name of a group |
| 77 | * |
| 78 | * @dev: Pinctrl device of the group |
| 79 | * |
| 80 | * @selector: The group selector |
| 81 | * |
| 82 | * This function is called by the core to figure out which group it |
| 83 | * will do operations to. This function is necessary to parse the |
| 84 | * "groups" property in DTS. |
| 85 | * |
| 86 | * @Return: Pointer to the name of the group |
| 87 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 88 | const char *(*get_group_name)(struct udevice *dev, unsigned selector); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 89 | |
| 90 | /** |
| 91 | * @get_functions_count: Get the number of selectable functions |
| 92 | * |
| 93 | * @dev: Pinctrl device to use |
| 94 | * |
| 95 | * This function is necessary for pin-muxing. |
| 96 | * |
| 97 | * @Return: |
| 98 | * number of selectable named functions available in this driver |
| 99 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 100 | int (*get_functions_count)(struct udevice *dev); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 101 | |
| 102 | /** |
| 103 | * @get_function_name: Get the name of a function |
| 104 | * |
| 105 | * @dev: Pinmux device of the function |
| 106 | * |
| 107 | * @selector: The function selector |
| 108 | * |
| 109 | * This function is called by the core to figure out which mux setting |
| 110 | * it will map a certain device to. This function is necessary for |
| 111 | * pin-muxing. |
| 112 | * |
| 113 | * @Return: |
| 114 | * Pointer to the function name of the muxing selector |
| 115 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 116 | const char *(*get_function_name)(struct udevice *dev, |
| 117 | unsigned selector); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * @pinmux_set: Mux a pin to a function |
| 121 | * |
| 122 | * @dev: Pinctrl device to use |
| 123 | * |
| 124 | * @pin_selector: The pin selector |
| 125 | * |
| 126 | * @func_selector: The func selector |
| 127 | * |
| 128 | * On simple controllers one of @pin_selector or @func_selector may be |
| 129 | * ignored. This function is necessary for pin-muxing against a single |
| 130 | * pin. |
| 131 | * |
| 132 | * @Return: 0 if OK, or negative error code on failure |
| 133 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 134 | int (*pinmux_set)(struct udevice *dev, unsigned pin_selector, |
| 135 | unsigned func_selector); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 136 | |
| 137 | /** |
| 138 | * @pinmux_group_set: Mux a group of pins to a function |
| 139 | * |
| 140 | * @dev: Pinctrl device to use |
| 141 | * |
| 142 | * @group_selector: The group selector |
| 143 | * |
| 144 | * @func_selector: The func selector |
| 145 | * |
| 146 | * On simple controllers one of @group_selector or @func_selector may be |
| 147 | * ignored. This function is necessary for pin-muxing against a group of |
| 148 | * pins. |
| 149 | * |
| 150 | * @Return: 0 if OK, or negative error code on failure |
| 151 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 152 | int (*pinmux_group_set)(struct udevice *dev, unsigned group_selector, |
| 153 | unsigned func_selector); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 154 | |
| 155 | /** |
| 156 | * @pinmux_property_set: Enable a pinmux group |
| 157 | * |
| 158 | * @dev: Pinctrl device to use |
| 159 | * |
| 160 | * @pinmux_group: A u32 representing the pin identifier and mux |
| 161 | * settings. The exact format of a pinmux group is left |
| 162 | * up to the driver. |
| 163 | * |
| 164 | * Mux a single pin to a single function based on a driver-specific |
| 165 | * pinmux group. This function is necessary for parsing the "pinmux" |
| 166 | * property in DTS, and for pin-muxing against a pinmux group. |
| 167 | * |
| 168 | * @Return: |
| 169 | * Pin selector for the muxed pin if OK, or negative error code on |
| 170 | * failure |
| 171 | */ |
Sean Anderson | 9c08fbf | 2020-09-14 11:01:55 -0400 | [diff] [blame] | 172 | int (*pinmux_property_set)(struct udevice *dev, u32 pinmux_group); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 173 | |
| 174 | /** |
| 175 | * @pinconf_num_params: |
| 176 | * Number of driver-specific parameters to be parsed from device |
| 177 | * trees. This member is necessary for pin configuration. |
| 178 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 179 | unsigned int pinconf_num_params; |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 180 | |
| 181 | /** |
| 182 | * @pinconf_params: |
| 183 | * List of driver-specific parameters to be parsed from the device |
| 184 | * tree. This member is necessary for pin configuration. |
| 185 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 186 | const struct pinconf_param *pinconf_params; |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 187 | |
| 188 | /** |
| 189 | * @pinconf_set: Configure an individual pin with a parameter |
| 190 | * |
| 191 | * @dev: Pinctrl device to use |
| 192 | * |
| 193 | * @pin_selector: The pin selector |
| 194 | * |
| 195 | * @param: An &enum pin_config_param from @pinconf_params |
| 196 | * |
| 197 | * @argument: The argument to this param from the device tree, or |
| 198 | * @pinconf_params.default_value |
| 199 | * |
| 200 | * This function is necessary for pin configuration against a single |
| 201 | * pin. |
| 202 | * |
| 203 | * @Return: 0 if OK, or negative error code on failure |
| 204 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 205 | int (*pinconf_set)(struct udevice *dev, unsigned pin_selector, |
| 206 | unsigned param, unsigned argument); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 207 | |
| 208 | /** |
| 209 | * @pinconf_group_set: Configure all pins in a group with a parameter |
| 210 | * |
| 211 | * @dev: Pinctrl device to use |
| 212 | * |
| 213 | * @pin_selector: The group selector |
| 214 | * |
| 215 | * @param: A &enum pin_config_param from |
| 216 | * @pinconf_params |
| 217 | * |
| 218 | * @argument: The argument to this param from the device tree, or |
| 219 | * @pinconf_params.default_value |
| 220 | * |
| 221 | * This function is necessary for pin configuration against a group of |
| 222 | * pins. |
| 223 | * |
| 224 | * @Return: 0 if OK, or negative error code on failure |
| 225 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 226 | int (*pinconf_group_set)(struct udevice *dev, unsigned group_selector, |
| 227 | unsigned param, unsigned argument); |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 228 | |
| 229 | /** |
| 230 | * @set_state: Configure a pinctrl device |
| 231 | * |
| 232 | * @dev: Pinctrl device to use |
| 233 | * |
| 234 | * @config: Pseudo device pointing a config node |
| 235 | * |
| 236 | * This function is required to be implemented by all pinctrl drivers. |
| 237 | * Drivers may set this member to pinctrl_generic_set_state(), which |
| 238 | * will call other functions in &struct pinctrl_ops to parse |
| 239 | * @config. |
| 240 | * |
| 241 | * @Return: 0 if OK, or negative error code on failure |
| 242 | */ |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 243 | int (*set_state)(struct udevice *dev, struct udevice *config); |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 244 | |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 245 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 246 | * @set_state_simple: Configure a pinctrl device |
| 247 | * |
| 248 | * @dev: Pinctrl device to use |
| 249 | * |
| 250 | * @config: Pseudo-device pointing a config node |
| 251 | * |
| 252 | * This function is usually a simpler version of set_state(). Only the |
| 253 | * first pinctrl device on the system is supported by this function. |
| 254 | * |
| 255 | * @Return: 0 if OK, or negative error code on failure |
| 256 | */ |
| 257 | int (*set_state_simple)(struct udevice *dev, struct udevice *periph); |
| 258 | |
| 259 | /** |
| 260 | * @request: Request a particular pinctrl function |
| 261 | * |
| 262 | * @dev: Device to adjust (%UCLASS_PINCTRL) |
| 263 | * |
| 264 | * @func: Function number (driver-specific) |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 265 | * |
| 266 | * This activates the selected function. |
| 267 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 268 | * @Return: 0 if OK, or negative error code on failure |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 269 | */ |
| 270 | int (*request)(struct udevice *dev, int func, int flags); |
| 271 | |
| 272 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 273 | * @get_periph_id: Get the peripheral ID for a device |
| 274 | * |
| 275 | * @dev: Pinctrl device to use for decoding |
| 276 | * |
| 277 | * @periph: Device to check |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 278 | * |
| 279 | * This generally looks at the peripheral's device tree node to work |
| 280 | * out the peripheral ID. The return value is normally interpreted as |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 281 | * &enum periph_id. so long as this is defined by the platform (which it |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 282 | * should be). |
| 283 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 284 | * @Return: |
| 285 | * Peripheral ID of @periph, or %-ENOENT on error |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 286 | */ |
| 287 | int (*get_periph_id)(struct udevice *dev, struct udevice *periph); |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 288 | |
| 289 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 290 | * @get_gpio_mux: Get the mux value for a particular GPIO |
| 291 | * |
| 292 | * @dev: Pinctrl device to use |
| 293 | * |
| 294 | * @banknum: GPIO bank number |
| 295 | * |
| 296 | * @index: GPIO index within the bank |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 297 | * |
| 298 | * This allows the raw mux value for a GPIO to be obtained. It is |
| 299 | * useful for displaying the function being used by that GPIO, such |
| 300 | * as with the 'gpio' command. This function is internal to the GPIO |
| 301 | * subsystem and should not be used by generic code. Typically it is |
| 302 | * used by a GPIO driver with knowledge of the SoC pinctrl setup. |
| 303 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 304 | * @Return: |
| 305 | * Mux value (SoC-specific, e.g. 0 for input, 1 for output) |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 306 | */ |
| 307 | int (*get_gpio_mux)(struct udevice *dev, int banknum, int index); |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 308 | |
| 309 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 310 | * @get_pin_muxing: Show pin muxing |
| 311 | * |
| 312 | * @dev: Pinctrl device to use |
| 313 | * |
| 314 | * @selector: Pin selector |
| 315 | * |
| 316 | * @buf: Buffer to fill with pin muxing description |
| 317 | * |
| 318 | * @size: Size of @buf |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 319 | * |
| 320 | * This allows to display the muxing of a given pin. It's useful for |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 321 | * debug purposes to know if a pin is configured as GPIO or as an |
| 322 | * alternate function and which one. Typically it is used by a PINCTRL |
| 323 | * driver with knowledge of the SoC pinctrl setup. |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 324 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 325 | * @Return: 0 if OK, or negative error code on failure |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 326 | */ |
| 327 | int (*get_pin_muxing)(struct udevice *dev, unsigned int selector, |
| 328 | char *buf, int size); |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 329 | |
| 330 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 331 | * @gpio_request_enable: Request and enable GPIO on a certain pin. |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 332 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 333 | * @dev: Pinctrl device to use |
| 334 | * |
| 335 | * @selector: Pin selector |
| 336 | * |
| 337 | * Implement this only if you can mux every pin individually as GPIO. |
| 338 | * The affected GPIO range is passed along with an offset(pin number) |
| 339 | * into that specific GPIO range - function selectors and pin groups are |
| 340 | * orthogonal to this, the core will however make sure the pins do not |
| 341 | * collide. |
| 342 | * |
| 343 | * @Return: |
| 344 | * 0 if OK, or negative error code on failure |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 345 | */ |
| 346 | int (*gpio_request_enable)(struct udevice *dev, unsigned int selector); |
| 347 | |
| 348 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 349 | * @gpio_disable_free: Free up GPIO muxing on a certain pin. |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 350 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 351 | * @dev: Pinctrl device to use |
| 352 | * |
| 353 | * @selector: Pin selector |
| 354 | * |
| 355 | * This function is the reverse of @gpio_request_enable. |
| 356 | * |
| 357 | * @Return: 0 if OK, or negative error code on failure |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 358 | */ |
| 359 | int (*gpio_disable_free)(struct udevice *dev, unsigned int selector); |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 360 | }; |
| 361 | |
| 362 | #define pinctrl_get_ops(dev) ((struct pinctrl_ops *)(dev)->driver->ops) |
| 363 | |
| 364 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 365 | * enum pin_config_param - Generic pin configuration parameters |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 366 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 367 | * @PIN_CONFIG_BIAS_BUS_HOLD: The pin will be set to weakly latch so that it |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 368 | * weakly drives the last value on a tristate bus, also known as a "bus |
| 369 | * holder", "bus keeper" or "repeater". This allows another device on the |
| 370 | * bus to change the value by driving the bus high or low and switching to |
| 371 | * tristate. The argument is ignored. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 372 | * @PIN_CONFIG_BIAS_DISABLE: Disable any pin bias on the pin, a |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 373 | * transition from say pull-up to pull-down implies that you disable |
| 374 | * pull-up in the process, this setting disables all biasing. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 375 | * @PIN_CONFIG_BIAS_HIGH_IMPEDANCE: The pin will be set to a high impedance |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 376 | * mode, also know as "third-state" (tristate) or "high-Z" or "floating". |
| 377 | * On output pins this effectively disconnects the pin, which is useful |
| 378 | * if for example some other pin is going to drive the signal connected |
| 379 | * to it for a while. Pins used for input are usually always high |
| 380 | * impedance. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 381 | * @PIN_CONFIG_BIAS_PULL_DOWN: The pin will be pulled down (usually with high |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 382 | * impedance to GROUND). If the argument is != 0 pull-down is enabled, |
| 383 | * if it is 0, pull-down is total, i.e. the pin is connected to GROUND. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 384 | * @PIN_CONFIG_BIAS_PULL_PIN_DEFAULT: The pin will be pulled up or down based |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 385 | * on embedded knowledge of the controller hardware, like current mux |
| 386 | * function. The pull direction and possibly strength too will normally |
| 387 | * be decided completely inside the hardware block and not be readable |
| 388 | * from the kernel side. |
| 389 | * If the argument is != 0 pull up/down is enabled, if it is 0, the |
| 390 | * configuration is ignored. The proper way to disable it is to use |
| 391 | * @PIN_CONFIG_BIAS_DISABLE. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 392 | * @PIN_CONFIG_BIAS_PULL_UP: The pin will be pulled up (usually with high |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 393 | * impedance to VDD). If the argument is != 0 pull-up is enabled, |
| 394 | * if it is 0, pull-up is total, i.e. the pin is connected to VDD. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 395 | * @PIN_CONFIG_DRIVE_OPEN_DRAIN: The pin will be driven with open drain (open |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 396 | * collector) which means it is usually wired with other output ports |
| 397 | * which are then pulled up with an external resistor. Setting this |
| 398 | * config will enable open drain mode, the argument is ignored. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 399 | * @PIN_CONFIG_DRIVE_OPEN_SOURCE: The pin will be driven with open source |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 400 | * (open emitter). Setting this config will enable open source mode, the |
| 401 | * argument is ignored. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 402 | * @PIN_CONFIG_DRIVE_PUSH_PULL: The pin will be driven actively high and |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 403 | * low, this is the most typical case and is typically achieved with two |
| 404 | * active transistors on the output. Setting this config will enable |
| 405 | * push-pull mode, the argument is ignored. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 406 | * @PIN_CONFIG_DRIVE_STRENGTH: The pin will sink or source at most the current |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 407 | * passed as argument. The argument is in mA. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 408 | * @PIN_CONFIG_DRIVE_STRENGTH_UA: The pin will sink or source at most the |
| 409 | * current passed as argument. The argument is in uA. |
| 410 | * @PIN_CONFIG_INPUT_DEBOUNCE: This will configure the pin to debounce mode, |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 411 | * which means it will wait for signals to settle when reading inputs. The |
| 412 | * argument gives the debounce time in usecs. Setting the |
| 413 | * argument to zero turns debouncing off. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 414 | * @PIN_CONFIG_INPUT_ENABLE: Enable the pin's input. Note that this does not |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 415 | * affect the pin's ability to drive output. 1 enables input, 0 disables |
| 416 | * input. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 417 | * @PIN_CONFIG_INPUT_SCHMITT: This will configure an input pin to run in |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 418 | * schmitt-trigger mode. If the schmitt-trigger has adjustable hysteresis, |
| 419 | * the threshold value is given on a custom format as argument when |
| 420 | * setting pins to this mode. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 421 | * @PIN_CONFIG_INPUT_SCHMITT_ENABLE: Control schmitt-trigger mode on the pin. |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 422 | * If the argument != 0, schmitt-trigger mode is enabled. If it's 0, |
| 423 | * schmitt-trigger mode is disabled. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 424 | * @PIN_CONFIG_LOW_POWER_MODE: This will configure the pin for low power |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 425 | * operation, if several modes of operation are supported these can be |
| 426 | * passed in the argument on a custom form, else just use argument 1 |
| 427 | * to indicate low power mode, argument 0 turns low power mode off. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 428 | * @PIN_CONFIG_OUTPUT_ENABLE: This will enable the pin's output mode |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 429 | * without driving a value there. For most platforms this reduces to |
| 430 | * enable the output buffers and then let the pin controller current |
| 431 | * configuration (eg. the currently selected mux function) drive values on |
| 432 | * the line. Use argument 1 to enable output mode, argument 0 to disable |
| 433 | * it. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 434 | * @PIN_CONFIG_OUTPUT: This will configure the pin as an output and drive a |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 435 | * value on the line. Use argument 1 to indicate high level, argument 0 to |
| 436 | * indicate low level. (Please see Documentation/driver-api/pinctl.rst, |
| 437 | * section "GPIO mode pitfalls" for a discussion around this parameter.) |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 438 | * @PIN_CONFIG_POWER_SOURCE: If the pin can select between different power |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 439 | * supplies, the argument to this parameter (on a custom format) tells |
| 440 | * the driver which alternative power source to use. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 441 | * @PIN_CONFIG_SLEEP_HARDWARE_STATE: Indicate this is sleep related state. |
| 442 | * @PIN_CONFIG_SLEW_RATE: If the pin can select slew rate, the argument to |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 443 | * this parameter (on a custom format) tells the driver which alternative |
| 444 | * slew rate to use. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 445 | * @PIN_CONFIG_SKEW_DELAY: If the pin has programmable skew rate (on inputs) |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 446 | * or latch delay (on outputs) this parameter (in a custom format) |
| 447 | * specifies the clock skew or latch delay. It typically controls how |
| 448 | * many double inverters are put in front of the line. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 449 | * @PIN_CONFIG_END: This is the last enumerator for pin configurations, if |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 450 | * you need to pass in custom configurations to the pin controller, use |
| 451 | * PIN_CONFIG_END+1 as the base offset. |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 452 | * @PIN_CONFIG_MAX: This is the maximum configuration value that can be |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 453 | * presented using the packed format. |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 454 | */ |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 455 | enum pin_config_param { |
Ashok Reddy Soma | 4173a42 | 2022-02-23 15:02:51 +0100 | [diff] [blame] | 456 | PIN_CONFIG_BIAS_BUS_HOLD = 0, |
| 457 | PIN_CONFIG_BIAS_DISABLE = 1, |
| 458 | PIN_CONFIG_BIAS_HIGH_IMPEDANCE = 2, |
| 459 | PIN_CONFIG_BIAS_PULL_DOWN = 3, |
| 460 | PIN_CONFIG_BIAS_PULL_PIN_DEFAULT = 4, |
| 461 | PIN_CONFIG_BIAS_PULL_UP = 5, |
| 462 | PIN_CONFIG_DRIVE_OPEN_DRAIN = 6, |
| 463 | PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, |
| 464 | PIN_CONFIG_DRIVE_PUSH_PULL = 8, |
| 465 | PIN_CONFIG_DRIVE_STRENGTH = 9, |
| 466 | PIN_CONFIG_DRIVE_STRENGTH_UA = 10, |
| 467 | PIN_CONFIG_INPUT_DEBOUNCE = 11, |
| 468 | PIN_CONFIG_INPUT_ENABLE = 12, |
| 469 | PIN_CONFIG_INPUT_SCHMITT = 13, |
| 470 | PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, |
| 471 | PIN_CONFIG_LOW_POWER_MODE = 15, |
| 472 | PIN_CONFIG_OUTPUT_ENABLE = 16, |
| 473 | PIN_CONFIG_OUTPUT = 17, |
| 474 | PIN_CONFIG_POWER_SOURCE = 18, |
| 475 | PIN_CONFIG_SLEEP_HARDWARE_STATE = 19, |
| 476 | PIN_CONFIG_SLEW_RATE = 20, |
| 477 | PIN_CONFIG_SKEW_DELAY = 21, |
| 478 | PIN_CONFIG_END = 127, /* 0x7F */ |
| 479 | PIN_CONFIG_MAX = 255, /* 0xFF */ |
Peng Fan | 0fe4e41 | 2018-01-05 14:05:17 +0800 | [diff] [blame] | 480 | }; |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 481 | |
| 482 | #if CONFIG_IS_ENABLED(PINCTRL_GENERIC) |
| 483 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 484 | * pinctrl_generic_set_state() - Generic set_state operation |
| 485 | * @pctldev: Pinctrl device to use |
| 486 | * @config: Config device (pseudo device), pointing a config node in DTS |
| 487 | * |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 488 | * Parse the DT node of @config and its children and handle generic properties |
| 489 | * such as "pins", "groups", "functions", and pin configuration parameters. |
| 490 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 491 | * Return: 0 on success, or negative error code on failure |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 492 | */ |
| 493 | int pinctrl_generic_set_state(struct udevice *pctldev, struct udevice *config); |
Pali Rohár | 92c4a95 | 2022-07-25 13:56:08 +0200 | [diff] [blame] | 494 | int pinctrl_generic_set_state_prefix(struct udevice *pctldev, struct udevice *config, |
| 495 | const char *prefix); |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 496 | #else |
| 497 | static inline int pinctrl_generic_set_state(struct udevice *pctldev, |
| 498 | struct udevice *config) |
| 499 | { |
Patrick Delaunay | 1c01712 | 2021-11-19 10:02:26 +0100 | [diff] [blame] | 500 | return -ENOSYS; |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 501 | } |
| 502 | #endif |
| 503 | |
| 504 | #if CONFIG_IS_ENABLED(PINCTRL) |
| 505 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 506 | * pinctrl_select_state() - Set a device to a given state |
| 507 | * @dev: Peripheral device |
| 508 | * @statename: State name, like "default" |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 509 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 510 | * Return: 0 on success, or negative error code on failure |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 511 | */ |
| 512 | int pinctrl_select_state(struct udevice *dev, const char *statename); |
| 513 | #else |
| 514 | static inline int pinctrl_select_state(struct udevice *dev, |
| 515 | const char *statename) |
| 516 | { |
Patrick Delaunay | 1c01712 | 2021-11-19 10:02:26 +0100 | [diff] [blame] | 517 | return -ENOSYS; |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 518 | } |
| 519 | #endif |
| 520 | |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 521 | /** |
| 522 | * pinctrl_request() - Request a particular pinctrl function |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 523 | * @dev: Pinctrl device to use |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 524 | * @func: Function number (driver-specific) |
| 525 | * @flags: Flags (driver-specific) |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 526 | * |
| 527 | * Return: 0 if OK, or negative error code on failure |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 528 | */ |
| 529 | int pinctrl_request(struct udevice *dev, int func, int flags); |
| 530 | |
| 531 | /** |
| 532 | * pinctrl_request_noflags() - Request a particular pinctrl function |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 533 | * @dev: Pinctrl device to use |
| 534 | * @func: Function number (driver-specific) |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 535 | * |
| 536 | * This is similar to pinctrl_request() but uses 0 for @flags. |
| 537 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 538 | * Return: 0 if OK, or negative error code on failure |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 539 | */ |
| 540 | int pinctrl_request_noflags(struct udevice *dev, int func); |
| 541 | |
| 542 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 543 | * pinctrl_get_periph_id() - Get the peripheral ID for a device |
| 544 | * @dev: Pinctrl device to use for decoding |
| 545 | * @periph: Device to check |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 546 | * |
| 547 | * This generally looks at the peripheral's device tree node to work out the |
| 548 | * peripheral ID. The return value is normally interpreted as enum periph_id. |
| 549 | * so long as this is defined by the platform (which it should be). |
| 550 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 551 | * Return: Peripheral ID of @periph, or -ENOENT on error |
Simon Glass | c5acf4a | 2015-08-30 16:55:13 -0600 | [diff] [blame] | 552 | */ |
| 553 | int pinctrl_get_periph_id(struct udevice *dev, struct udevice *periph); |
| 554 | |
Simon Glass | 52db39a | 2016-01-21 19:43:26 -0700 | [diff] [blame] | 555 | /** |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 556 | * pinctrl_get_gpio_mux() - get the mux value for a particular GPIO |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 557 | * @dev: Pinctrl device to use |
| 558 | * @banknum: GPIO bank number |
| 559 | * @index: GPIO index within the bank |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 560 | * |
| 561 | * This allows the raw mux value for a GPIO to be obtained. It is |
| 562 | * useful for displaying the function being used by that GPIO, such |
| 563 | * as with the 'gpio' command. This function is internal to the GPIO |
| 564 | * subsystem and should not be used by generic code. Typically it is |
| 565 | * used by a GPIO driver with knowledge of the SoC pinctrl setup. |
| 566 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 567 | * Return: Mux value (SoC-specific, e.g. 0 for input, 1 for output) |
Simon Glass | 77eaa19 | 2016-01-21 19:43:56 -0700 | [diff] [blame] | 568 | */ |
| 569 | int pinctrl_get_gpio_mux(struct udevice *dev, int banknum, int index); |
| 570 | |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 571 | /** |
| 572 | * pinctrl_get_pin_muxing() - Returns the muxing description |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 573 | * @dev: Pinctrl device to use |
| 574 | * @selector: Pin index within pin-controller |
| 575 | * @buf: Pin's muxing description |
| 576 | * @size: Pin's muxing description length |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 577 | * |
| 578 | * This allows to display the muxing description of the given pin for |
| 579 | * debug purpose |
| 580 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 581 | * Return: 0 if OK, or negative error code on failure |
Patrice Chotard | f55a0c0 | 2018-10-24 14:10:13 +0200 | [diff] [blame] | 582 | */ |
| 583 | int pinctrl_get_pin_muxing(struct udevice *dev, int selector, char *buf, |
| 584 | int size); |
| 585 | |
Patrice Chotard | 8bbb5b2 | 2018-10-24 14:10:14 +0200 | [diff] [blame] | 586 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 587 | * pinctrl_get_pins_count() - Display pin-controller pins number |
| 588 | * @dev: Pinctrl device to use |
Patrice Chotard | 8bbb5b2 | 2018-10-24 14:10:14 +0200 | [diff] [blame] | 589 | * |
| 590 | * This allows to know the number of pins owned by a given pin-controller |
| 591 | * |
Patrick Delaunay | 4c60fd9 | 2021-05-21 09:47:31 +0200 | [diff] [blame] | 592 | * Return: Number of pins if OK, or -ENOSYS when not supported |
Patrice Chotard | 8bbb5b2 | 2018-10-24 14:10:14 +0200 | [diff] [blame] | 593 | */ |
| 594 | int pinctrl_get_pins_count(struct udevice *dev); |
| 595 | |
| 596 | /** |
| 597 | * pinctrl_get_pin_name() - Returns the pin's name |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 598 | * @dev: Pinctrl device to use |
| 599 | * @selector: Pin index within pin-controller |
| 600 | * @buf: Buffer to fill with the name of the pin |
| 601 | * @size: Size of @buf |
Patrice Chotard | 8bbb5b2 | 2018-10-24 14:10:14 +0200 | [diff] [blame] | 602 | * |
| 603 | * This allows to display the pin's name for debug purpose |
| 604 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 605 | * Return: 0 if OK, or negative error code on failure |
Patrice Chotard | 8bbb5b2 | 2018-10-24 14:10:14 +0200 | [diff] [blame] | 606 | */ |
| 607 | int pinctrl_get_pin_name(struct udevice *dev, int selector, char *buf, |
| 608 | int size); |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 609 | |
| 610 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 611 | * pinctrl_gpio_request() - Request a single pin to be used as GPIO |
| 612 | * @dev: GPIO peripheral device |
| 613 | * @offset: GPIO pin offset from the GPIO controller |
Pali Rohár | a1de103 | 2022-07-25 13:56:11 +0200 | [diff] [blame] | 614 | * @label: GPIO label |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 615 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 616 | * Return: 0 on success, or negative error code on failure |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 617 | */ |
Pali Rohár | a1de103 | 2022-07-25 13:56:11 +0200 | [diff] [blame] | 618 | int pinctrl_gpio_request(struct udevice *dev, unsigned offset, const char *label); |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 619 | |
| 620 | /** |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 621 | * pinctrl_gpio_free() - Free a single pin used as GPIO |
| 622 | * @dev: GPIO peripheral device |
| 623 | * @offset: GPIO pin offset from the GPIO controller |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 624 | * |
Sean Anderson | 5eee93e | 2020-09-14 11:01:56 -0400 | [diff] [blame] | 625 | * Return: 0 on success, or negative error code on failure |
Marek Vasut | ae59d7c | 2019-04-21 23:57:23 +0200 | [diff] [blame] | 626 | */ |
| 627 | int pinctrl_gpio_free(struct udevice *dev, unsigned offset); |
| 628 | |
Masahiro Yamada | d90a5a3 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 629 | #endif /* __PINCTRL_H */ |