Ashok Reddy Soma | dbd673f | 2022-02-23 15:23:05 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Xilinx pinctrl driver for ZynqMP |
| 4 | * |
| 5 | * Author(s): Ashok Reddy Soma <ashok.reddy.soma@xilinx.com> |
| 6 | * Michal Simek <michal.simek@xilinx.com> |
| 7 | * |
| 8 | * Copyright (C) 2021 Xilinx, Inc. All rights reserved. |
| 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <dm.h> |
| 13 | #include <errno.h> |
| 14 | #include <malloc.h> |
| 15 | #include <zynqmp_firmware.h> |
| 16 | #include <asm/arch/sys_proto.h> |
| 17 | #include <asm/io.h> |
| 18 | #include <dm/device_compat.h> |
| 19 | #include <dm/pinctrl.h> |
| 20 | #include <linux/compat.h> |
| 21 | #include <dt-bindings/pinctrl/pinctrl-zynqmp.h> |
| 22 | |
| 23 | #define PINCTRL_GET_FUNC_GROUPS_RESP_LEN 12 |
| 24 | #define PINCTRL_GET_PIN_GROUPS_RESP_LEN 12 |
| 25 | #define NUM_GROUPS_PER_RESP 6 |
| 26 | #define NA_GROUP -1 |
| 27 | #define RESERVED_GROUP -2 |
| 28 | #define MAX_GROUP_PIN 50 |
| 29 | #define MAX_PIN_GROUPS 50 |
| 30 | #define MAX_GROUP_NAME_LEN 32 |
| 31 | #define MAX_FUNC_NAME_LEN 16 |
| 32 | |
| 33 | #define DRIVE_STRENGTH_2MA 2 |
| 34 | #define DRIVE_STRENGTH_4MA 4 |
| 35 | #define DRIVE_STRENGTH_8MA 8 |
| 36 | #define DRIVE_STRENGTH_12MA 12 |
| 37 | |
| 38 | /* |
| 39 | * This driver works with very simple configuration that has the same name |
| 40 | * for group and function. This way it is compatible with the Linux Kernel |
| 41 | * driver. |
| 42 | */ |
| 43 | struct zynqmp_pinctrl_priv { |
| 44 | u32 npins; |
| 45 | u32 nfuncs; |
| 46 | u32 ngroups; |
| 47 | struct zynqmp_pmux_function *funcs; |
| 48 | struct zynqmp_pctrl_group *groups; |
| 49 | }; |
| 50 | |
| 51 | /** |
| 52 | * struct zynqmp_pinctrl_config - pinconfig parameters |
| 53 | * @slew: Slew rate slow or fast |
| 54 | * @bias: Bias enabled or disabled |
| 55 | * @pull_ctrl: Pull control pull up or pull down |
| 56 | * @input_type: CMOS or Schmitt |
| 57 | * @drive_strength: Drive strength 2mA/4mA/8mA/12mA |
| 58 | * @volt_sts: Voltage status 1.8V or 3.3V |
| 59 | * @tri_state: Tristate enabled or disabled |
| 60 | * |
| 61 | * This structure holds information about pin control config |
| 62 | * option that can be set for each pin. |
| 63 | */ |
| 64 | struct zynqmp_pinctrl_config { |
| 65 | u32 slew; |
| 66 | u32 bias; |
| 67 | u32 pull_ctrl; |
| 68 | u32 input_type; |
| 69 | u32 drive_strength; |
| 70 | u32 volt_sts; |
| 71 | u32 tri_state; |
| 72 | }; |
| 73 | |
| 74 | /** |
| 75 | * enum zynqmp_pin_config_param - possible pin configuration parameters |
| 76 | * @PIN_CONFIG_IOSTANDARD: if the pin can select an IO standard, |
| 77 | * the argument to this parameter (on a |
| 78 | * custom format) tells the driver which |
| 79 | * alternative IO standard to use |
| 80 | * @PIN_CONFIG_SCHMITTCMOS: this parameter (on a custom format) allows |
| 81 | * to select schmitt or cmos input for MIO pins |
| 82 | */ |
| 83 | enum zynqmp_pin_config_param { |
| 84 | PIN_CONFIG_IOSTANDARD = PIN_CONFIG_END + 1, |
| 85 | PIN_CONFIG_SCHMITTCMOS, |
| 86 | }; |
| 87 | |
| 88 | /** |
| 89 | * struct zynqmp_pmux_function - a pinmux function |
| 90 | * @name: Name of the pinmux function |
| 91 | * @groups: List of pingroups for this function |
| 92 | * @ngroups: Number of entries in @groups |
| 93 | * |
| 94 | * This structure holds information about pin control function |
| 95 | * and function group names supporting that function. |
| 96 | */ |
| 97 | struct zynqmp_pmux_function { |
| 98 | char name[MAX_FUNC_NAME_LEN]; |
| 99 | const char * const *groups; |
| 100 | unsigned int ngroups; |
| 101 | }; |
| 102 | |
| 103 | /** |
| 104 | * struct zynqmp_pctrl_group - Pin control group info |
| 105 | * @name: Group name |
| 106 | * @pins: Group pin numbers |
| 107 | * @npins: Number of pins in group |
| 108 | */ |
| 109 | struct zynqmp_pctrl_group { |
| 110 | const char *name; |
| 111 | unsigned int pins[MAX_GROUP_PIN]; |
| 112 | unsigned int npins; |
| 113 | }; |
| 114 | |
| 115 | static char pin_name[PINNAME_SIZE]; |
| 116 | |
| 117 | /** |
| 118 | * zynqmp_pm_query_data() - Get query data from firmware |
| 119 | * @qid: Value of enum pm_query_id |
| 120 | * @arg1: Argument 1 |
| 121 | * @arg2: Argument 2 |
| 122 | * @out: Returned output value |
| 123 | * |
| 124 | * Return: Returns status, either success or error+reason |
| 125 | */ |
| 126 | static int zynqmp_pm_query_data(enum pm_query_id qid, u32 arg1, u32 arg2, u32 *out) |
| 127 | { |
| 128 | int ret; |
| 129 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
| 130 | |
| 131 | ret = xilinx_pm_request(PM_QUERY_DATA, qid, arg1, arg2, 0, ret_payload); |
| 132 | if (ret) |
| 133 | return ret; |
| 134 | |
| 135 | *out = ret_payload[1]; |
| 136 | |
| 137 | return ret; |
| 138 | } |
| 139 | |
| 140 | static int zynqmp_pm_pinctrl_get_config(const u32 pin, const u32 param, u32 *value) |
| 141 | { |
| 142 | int ret; |
| 143 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
| 144 | |
| 145 | /* Get config for the pin */ |
| 146 | ret = xilinx_pm_request(PM_PINCTRL_CONFIG_PARAM_GET, pin, param, 0, 0, ret_payload); |
| 147 | if (ret) { |
| 148 | printf("%s failed\n", __func__); |
| 149 | return ret; |
| 150 | } |
| 151 | |
| 152 | *value = ret_payload[1]; |
| 153 | |
| 154 | return ret; |
| 155 | } |
| 156 | |
| 157 | static int zynqmp_pm_pinctrl_set_config(const u32 pin, const u32 param, u32 value) |
| 158 | { |
| 159 | int ret; |
| 160 | |
| 161 | /* Request the pin first */ |
| 162 | ret = xilinx_pm_request(PM_PINCTRL_REQUEST, pin, 0, 0, 0, NULL); |
| 163 | if (ret) { |
| 164 | printf("%s: pin request failed\n", __func__); |
| 165 | return ret; |
| 166 | } |
| 167 | |
| 168 | /* Set config for the pin */ |
| 169 | ret = xilinx_pm_request(PM_PINCTRL_CONFIG_PARAM_SET, pin, param, value, 0, NULL); |
| 170 | if (ret) { |
| 171 | printf("%s failed\n", __func__); |
| 172 | return ret; |
| 173 | } |
| 174 | |
| 175 | return ret; |
| 176 | } |
| 177 | |
| 178 | static int zynqmp_pinctrl_get_function_groups(u32 fid, u32 index, u16 *groups) |
| 179 | { |
| 180 | int ret; |
| 181 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
| 182 | |
| 183 | ret = xilinx_pm_request(PM_QUERY_DATA, PM_QID_PINCTRL_GET_FUNCTION_GROUPS, |
| 184 | fid, index, 0, ret_payload); |
| 185 | if (ret) { |
| 186 | printf("%s failed\n", __func__); |
| 187 | return ret; |
| 188 | } |
| 189 | |
| 190 | memcpy(groups, &ret_payload[1], PINCTRL_GET_FUNC_GROUPS_RESP_LEN); |
| 191 | |
| 192 | return ret; |
| 193 | } |
| 194 | |
| 195 | static int zynqmp_pinctrl_prepare_func_groups(u32 fid, |
| 196 | struct zynqmp_pmux_function *func, |
| 197 | struct zynqmp_pctrl_group *groups) |
| 198 | { |
| 199 | const char **fgroups; |
| 200 | char name[MAX_GROUP_NAME_LEN]; |
| 201 | u16 resp[NUM_GROUPS_PER_RESP] = {0}; |
| 202 | int ret, index, i; |
| 203 | |
| 204 | fgroups = kcalloc(func->ngroups, sizeof(*fgroups), GFP_KERNEL); |
| 205 | if (!fgroups) |
| 206 | return -ENOMEM; |
| 207 | |
| 208 | for (index = 0; index < func->ngroups; index += NUM_GROUPS_PER_RESP) { |
| 209 | ret = zynqmp_pinctrl_get_function_groups(fid, index, resp); |
| 210 | if (ret) |
| 211 | return ret; |
| 212 | |
| 213 | for (i = 0; i < NUM_GROUPS_PER_RESP; i++) { |
| 214 | if (resp[i] == (u16)NA_GROUP) |
| 215 | goto done; |
| 216 | if (resp[i] == (u16)RESERVED_GROUP) |
| 217 | continue; |
| 218 | |
| 219 | snprintf(name, MAX_GROUP_NAME_LEN, "%s_%d_grp", |
| 220 | func->name, index + i); |
| 221 | fgroups[index + i] = strdup(name); |
| 222 | |
| 223 | snprintf(name, MAX_GROUP_NAME_LEN, "%s_%d_grp", |
| 224 | func->name, index + i); |
| 225 | groups[resp[i]].name = strdup(name); |
| 226 | } |
| 227 | } |
| 228 | done: |
| 229 | func->groups = fgroups; |
| 230 | |
| 231 | return ret; |
| 232 | } |
| 233 | |
| 234 | static int zynqmp_pinctrl_get_pin_groups(u32 pin, u32 index, u16 *groups) |
| 235 | { |
| 236 | int ret; |
| 237 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
| 238 | |
| 239 | ret = xilinx_pm_request(PM_QUERY_DATA, PM_QID_PINCTRL_GET_PIN_GROUPS, |
| 240 | pin, index, 0, ret_payload); |
| 241 | if (ret) { |
| 242 | printf("%s failed to get pin groups\n", __func__); |
| 243 | return ret; |
| 244 | } |
| 245 | |
| 246 | memcpy(groups, &ret_payload[1], PINCTRL_GET_PIN_GROUPS_RESP_LEN); |
| 247 | |
| 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | static void zynqmp_pinctrl_group_add_pin(struct zynqmp_pctrl_group *group, |
| 252 | unsigned int pin) |
| 253 | { |
| 254 | group->pins[group->npins++] = pin; |
| 255 | } |
| 256 | |
| 257 | static int zynqmp_pinctrl_create_pin_groups(struct zynqmp_pctrl_group *groups, |
| 258 | unsigned int pin) |
| 259 | { |
| 260 | u16 resp[NUM_GROUPS_PER_RESP] = {0}; |
| 261 | int ret, i, index = 0; |
| 262 | |
| 263 | do { |
| 264 | ret = zynqmp_pinctrl_get_pin_groups(pin, index, resp); |
| 265 | if (ret) |
| 266 | return ret; |
| 267 | |
| 268 | for (i = 0; i < NUM_GROUPS_PER_RESP; i++) { |
| 269 | if (resp[i] == (u16)NA_GROUP) |
| 270 | goto done; |
| 271 | if (resp[i] == (u16)RESERVED_GROUP) |
| 272 | continue; |
| 273 | zynqmp_pinctrl_group_add_pin(&groups[resp[i]], pin); |
| 274 | } |
| 275 | index += NUM_GROUPS_PER_RESP; |
| 276 | } while (index <= MAX_PIN_GROUPS); |
| 277 | |
| 278 | done: |
| 279 | return ret; |
| 280 | } |
| 281 | |
| 282 | static int zynqmp_pinctrl_probe(struct udevice *dev) |
| 283 | { |
| 284 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 285 | int ret, i; |
| 286 | u32 pin; |
| 287 | u32 ret_payload[PAYLOAD_ARG_CNT]; |
| 288 | |
| 289 | /* Get number of pins first */ |
| 290 | ret = zynqmp_pm_query_data(PM_QID_PINCTRL_GET_NUM_PINS, 0, 0, &priv->npins); |
| 291 | if (ret) { |
| 292 | printf("%s failed to get no of pins\n", __func__); |
| 293 | return ret; |
| 294 | } |
| 295 | |
| 296 | /* Get number of functions available */ |
| 297 | ret = zynqmp_pm_query_data(PM_QID_PINCTRL_GET_NUM_FUNCTIONS, 0, 0, &priv->nfuncs); |
| 298 | if (ret) { |
| 299 | printf("%s failed to get no of functions\n", __func__); |
| 300 | return ret; |
| 301 | } |
| 302 | |
| 303 | /* Allocating structures for functions and its groups */ |
| 304 | priv->funcs = kzalloc(sizeof(*priv->funcs) * priv->nfuncs, GFP_KERNEL); |
| 305 | if (!priv->funcs) |
| 306 | return -ENOMEM; |
| 307 | |
| 308 | for (i = 0; i < priv->nfuncs; i++) { |
| 309 | /* Get function name for the function and fill */ |
| 310 | xilinx_pm_request(PM_QUERY_DATA, PM_QID_PINCTRL_GET_FUNCTION_NAME, |
| 311 | i, 0, 0, ret_payload); |
| 312 | |
| 313 | memcpy((void *)priv->funcs[i].name, ret_payload, MAX_FUNC_NAME_LEN); |
| 314 | |
| 315 | /* And fill number of groups available for certain function */ |
| 316 | xilinx_pm_request(PM_QUERY_DATA, PM_QID_PINCTRL_GET_NUM_FUNCTION_GROUPS, |
| 317 | i, 0, 0, ret_payload); |
| 318 | |
| 319 | priv->funcs[i].ngroups = ret_payload[1]; |
| 320 | priv->ngroups += priv->funcs[i].ngroups; |
| 321 | } |
| 322 | |
| 323 | /* Prepare all groups */ |
| 324 | priv->groups = kzalloc(sizeof(*priv->groups) * priv->ngroups, |
| 325 | GFP_KERNEL); |
| 326 | if (!priv->groups) |
| 327 | return -ENOMEM; |
| 328 | |
| 329 | for (i = 0; i < priv->nfuncs; i++) { |
| 330 | ret = zynqmp_pinctrl_prepare_func_groups(i, &priv->funcs[i], |
| 331 | priv->groups); |
| 332 | if (ret) { |
| 333 | printf("Failed to prepare_func_groups\n"); |
| 334 | return ret; |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | for (pin = 0; pin < priv->npins; pin++) { |
| 339 | ret = zynqmp_pinctrl_create_pin_groups(priv->groups, pin); |
| 340 | if (ret) |
| 341 | return ret; |
| 342 | } |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | static int zynqmp_pinctrl_get_functions_count(struct udevice *dev) |
| 348 | { |
| 349 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 350 | |
| 351 | return priv->nfuncs; |
| 352 | } |
| 353 | |
| 354 | static const char *zynqmp_pinctrl_get_function_name(struct udevice *dev, |
| 355 | unsigned int selector) |
| 356 | { |
| 357 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 358 | |
| 359 | return priv->funcs[selector].name; |
| 360 | } |
| 361 | |
| 362 | static int zynqmp_pinmux_set(struct udevice *dev, unsigned int selector, |
| 363 | unsigned int func_selector) |
| 364 | { |
| 365 | int ret; |
| 366 | |
| 367 | /* Request the pin first */ |
| 368 | ret = xilinx_pm_request(PM_PINCTRL_REQUEST, selector, 0, 0, 0, NULL); |
| 369 | if (ret) { |
| 370 | printf("%s: pin request failed\n", __func__); |
| 371 | return ret; |
| 372 | } |
| 373 | |
| 374 | /* Set the pin function */ |
| 375 | ret = xilinx_pm_request(PM_PINCTRL_SET_FUNCTION, selector, func_selector, |
| 376 | 0, 0, NULL); |
| 377 | if (ret) { |
| 378 | printf("%s: Failed to set pinmux function\n", __func__); |
| 379 | return ret; |
| 380 | } |
| 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
| 385 | static int zynqmp_pinmux_group_set(struct udevice *dev, unsigned int selector, |
| 386 | unsigned int func_selector) |
| 387 | { |
| 388 | int i; |
| 389 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 390 | const struct zynqmp_pctrl_group *pgrp = &priv->groups[selector]; |
| 391 | |
| 392 | for (i = 0; i < pgrp->npins; i++) |
| 393 | zynqmp_pinmux_set(dev, pgrp->pins[i], func_selector); |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static int zynqmp_pinconf_set(struct udevice *dev, unsigned int pin, |
| 399 | unsigned int param, unsigned int arg) |
| 400 | { |
| 401 | int ret = 0; |
| 402 | unsigned int value; |
| 403 | |
| 404 | switch (param) { |
| 405 | case PIN_CONFIG_SLEW_RATE: |
| 406 | param = PM_PINCTRL_CONFIG_SLEW_RATE; |
| 407 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 408 | break; |
| 409 | case PIN_CONFIG_BIAS_PULL_UP: |
| 410 | param = PM_PINCTRL_CONFIG_PULL_CTRL; |
| 411 | arg = PM_PINCTRL_BIAS_PULL_UP; |
| 412 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 413 | break; |
| 414 | case PIN_CONFIG_BIAS_PULL_DOWN: |
| 415 | param = PM_PINCTRL_CONFIG_PULL_CTRL; |
| 416 | arg = PM_PINCTRL_BIAS_PULL_DOWN; |
| 417 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 418 | break; |
| 419 | case PIN_CONFIG_BIAS_DISABLE: |
| 420 | param = PM_PINCTRL_CONFIG_BIAS_STATUS; |
| 421 | arg = PM_PINCTRL_BIAS_DISABLE; |
| 422 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 423 | break; |
| 424 | case PIN_CONFIG_SCHMITTCMOS: |
| 425 | param = PM_PINCTRL_CONFIG_SCHMITT_CMOS; |
| 426 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 427 | break; |
| 428 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 429 | param = PM_PINCTRL_CONFIG_SCHMITT_CMOS; |
| 430 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 431 | break; |
| 432 | case PIN_CONFIG_DRIVE_STRENGTH: |
| 433 | switch (arg) { |
| 434 | case DRIVE_STRENGTH_2MA: |
| 435 | value = PM_PINCTRL_DRIVE_STRENGTH_2MA; |
| 436 | break; |
| 437 | case DRIVE_STRENGTH_4MA: |
| 438 | value = PM_PINCTRL_DRIVE_STRENGTH_4MA; |
| 439 | break; |
| 440 | case DRIVE_STRENGTH_8MA: |
| 441 | value = PM_PINCTRL_DRIVE_STRENGTH_8MA; |
| 442 | break; |
| 443 | case DRIVE_STRENGTH_12MA: |
| 444 | value = PM_PINCTRL_DRIVE_STRENGTH_12MA; |
| 445 | break; |
| 446 | default: |
| 447 | /* Invalid drive strength */ |
| 448 | dev_warn(dev, "Invalid drive strength for pin %d\n", pin); |
| 449 | return -EINVAL; |
| 450 | } |
| 451 | |
| 452 | param = PM_PINCTRL_CONFIG_DRIVE_STRENGTH; |
| 453 | ret = zynqmp_pm_pinctrl_set_config(pin, param, value); |
| 454 | break; |
| 455 | case PIN_CONFIG_IOSTANDARD: |
| 456 | param = PM_PINCTRL_CONFIG_VOLTAGE_STATUS; |
| 457 | ret = zynqmp_pm_pinctrl_get_config(pin, param, &value); |
| 458 | if (arg != value) |
| 459 | dev_warn(dev, "Invalid IO Standard requested for pin %d\n", |
| 460 | pin); |
| 461 | break; |
| 462 | case PIN_CONFIG_POWER_SOURCE: |
| 463 | param = PM_PINCTRL_CONFIG_VOLTAGE_STATUS; |
| 464 | ret = zynqmp_pm_pinctrl_get_config(pin, param, &value); |
| 465 | if (arg != value) |
| 466 | dev_warn(dev, "Invalid IO Standard requested for pin %d\n", |
| 467 | pin); |
| 468 | break; |
| 469 | case PIN_CONFIG_BIAS_HIGH_IMPEDANCE: |
Ashok Reddy Soma | 123462e | 2022-06-15 11:52:28 +0200 | [diff] [blame] | 470 | param = PM_PINCTRL_CONFIG_TRI_STATE; |
| 471 | arg = PM_PINCTRL_TRI_STATE_ENABLE; |
| 472 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 473 | break; |
Ashok Reddy Soma | dbd673f | 2022-02-23 15:23:05 +0100 | [diff] [blame] | 474 | case PIN_CONFIG_LOW_POWER_MODE: |
| 475 | /* |
| 476 | * This cases are mentioned in dts but configurable |
| 477 | * registers are unknown. So falling through to ignore |
| 478 | * boot time warnings as of now. |
| 479 | */ |
| 480 | ret = 0; |
| 481 | break; |
Ashok Reddy Soma | 123462e | 2022-06-15 11:52:28 +0200 | [diff] [blame] | 482 | case PIN_CONFIG_OUTPUT_ENABLE: |
| 483 | param = PM_PINCTRL_CONFIG_TRI_STATE; |
| 484 | arg = PM_PINCTRL_TRI_STATE_DISABLE; |
| 485 | ret = zynqmp_pm_pinctrl_set_config(pin, param, arg); |
| 486 | break; |
Ashok Reddy Soma | dbd673f | 2022-02-23 15:23:05 +0100 | [diff] [blame] | 487 | default: |
| 488 | dev_warn(dev, "unsupported configuration parameter '%u'\n", |
| 489 | param); |
| 490 | ret = -ENOTSUPP; |
| 491 | break; |
| 492 | } |
| 493 | |
| 494 | return ret; |
| 495 | } |
| 496 | |
| 497 | static int zynqmp_pinconf_group_set(struct udevice *dev, |
| 498 | unsigned int group_selector, |
| 499 | unsigned int param, unsigned int arg) |
| 500 | { |
| 501 | int i; |
| 502 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 503 | const struct zynqmp_pctrl_group *pgrp = &priv->groups[group_selector]; |
| 504 | |
| 505 | for (i = 0; i < pgrp->npins; i++) |
| 506 | zynqmp_pinconf_set(dev, pgrp->pins[i], param, arg); |
| 507 | |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | static int zynqmp_pinctrl_get_pins_count(struct udevice *dev) |
| 512 | { |
| 513 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 514 | |
| 515 | return priv->npins; |
| 516 | } |
| 517 | |
| 518 | static const char *zynqmp_pinctrl_get_pin_name(struct udevice *dev, |
| 519 | unsigned int selector) |
| 520 | { |
| 521 | snprintf(pin_name, PINNAME_SIZE, "MIO%d", selector); |
| 522 | |
| 523 | return pin_name; |
| 524 | } |
| 525 | |
| 526 | static int zynqmp_pinctrl_get_pin_muxing(struct udevice *dev, |
| 527 | unsigned int selector, |
| 528 | char *buf, |
| 529 | int size) |
| 530 | { |
| 531 | struct zynqmp_pinctrl_config pinmux; |
| 532 | |
| 533 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_SLEW_RATE, |
| 534 | &pinmux.slew); |
| 535 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_BIAS_STATUS, |
| 536 | &pinmux.bias); |
| 537 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_PULL_CTRL, |
| 538 | &pinmux.pull_ctrl); |
| 539 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_SCHMITT_CMOS, |
| 540 | &pinmux.input_type); |
| 541 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_DRIVE_STRENGTH, |
| 542 | &pinmux.drive_strength); |
| 543 | zynqmp_pm_pinctrl_get_config(selector, PM_PINCTRL_CONFIG_VOLTAGE_STATUS, |
| 544 | &pinmux.volt_sts); |
| 545 | |
| 546 | switch (pinmux.drive_strength) { |
| 547 | case PM_PINCTRL_DRIVE_STRENGTH_2MA: |
| 548 | pinmux.drive_strength = DRIVE_STRENGTH_2MA; |
| 549 | break; |
| 550 | case PM_PINCTRL_DRIVE_STRENGTH_4MA: |
| 551 | pinmux.drive_strength = DRIVE_STRENGTH_4MA; |
| 552 | break; |
| 553 | case PM_PINCTRL_DRIVE_STRENGTH_8MA: |
| 554 | pinmux.drive_strength = DRIVE_STRENGTH_8MA; |
| 555 | break; |
| 556 | case PM_PINCTRL_DRIVE_STRENGTH_12MA: |
| 557 | pinmux.drive_strength = DRIVE_STRENGTH_12MA; |
| 558 | break; |
| 559 | default: |
| 560 | /* Invalid drive strength */ |
| 561 | dev_warn(dev, "Invalid drive strength\n"); |
| 562 | return -EINVAL; |
| 563 | } |
| 564 | |
| 565 | snprintf(buf, size, "slew:%s\tbias:%s\tpull:%s\tinput:%s\tdrive:%dmA\tvolt:%s", |
| 566 | pinmux.slew ? "slow" : "fast", |
| 567 | pinmux.bias ? "enabled" : "disabled", |
| 568 | pinmux.pull_ctrl ? "up" : "down", |
| 569 | pinmux.input_type ? "schmitt" : "cmos", |
| 570 | pinmux.drive_strength, |
| 571 | pinmux.volt_sts ? "1.8" : "3.3"); |
| 572 | |
| 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | static int zynqmp_pinctrl_get_groups_count(struct udevice *dev) |
| 577 | { |
| 578 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 579 | |
| 580 | return priv->ngroups; |
| 581 | } |
| 582 | |
| 583 | static const char *zynqmp_pinctrl_get_group_name(struct udevice *dev, |
| 584 | unsigned int selector) |
| 585 | { |
| 586 | struct zynqmp_pinctrl_priv *priv = dev_get_priv(dev); |
| 587 | |
| 588 | return priv->groups[selector].name; |
| 589 | } |
| 590 | |
| 591 | static const struct pinconf_param zynqmp_conf_params[] = { |
| 592 | { "bias-bus-hold", PIN_CONFIG_BIAS_BUS_HOLD, 0 }, |
| 593 | { "bias-disable", PIN_CONFIG_BIAS_DISABLE, 0 }, |
| 594 | { "bias-high-impedance", PIN_CONFIG_BIAS_HIGH_IMPEDANCE, 0 }, |
| 595 | { "bias-pull-up", PIN_CONFIG_BIAS_PULL_UP, 1 }, |
| 596 | { "bias-pull-pin-default", PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, 1 }, |
| 597 | { "bias-pull-down", PIN_CONFIG_BIAS_PULL_DOWN, 1 }, |
| 598 | { "drive-open-drain", PIN_CONFIG_DRIVE_OPEN_DRAIN, 0 }, |
| 599 | { "drive-open-source", PIN_CONFIG_DRIVE_OPEN_SOURCE, 0 }, |
| 600 | { "drive-push-pull", PIN_CONFIG_DRIVE_PUSH_PULL, 0 }, |
| 601 | { "drive-strength", PIN_CONFIG_DRIVE_STRENGTH, 0 }, |
| 602 | { "drive-strength-microamp", PIN_CONFIG_DRIVE_STRENGTH_UA, 0 }, |
| 603 | { "input-debounce", PIN_CONFIG_INPUT_DEBOUNCE, 0 }, |
| 604 | { "input-disable", PIN_CONFIG_INPUT_ENABLE, 0 }, |
| 605 | { "input-enable", PIN_CONFIG_INPUT_ENABLE, 1 }, |
| 606 | { "input-schmitt", PIN_CONFIG_INPUT_SCHMITT, 0 }, |
| 607 | { "input-schmitt-disable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 0 }, |
| 608 | { "input-schmitt-enable", PIN_CONFIG_INPUT_SCHMITT_ENABLE, 1 }, |
| 609 | { "low-power-disable", PIN_CONFIG_LOW_POWER_MODE, 0 }, |
| 610 | { "low-power-enable", PIN_CONFIG_LOW_POWER_MODE, 1 }, |
| 611 | { "output-disable", PIN_CONFIG_OUTPUT_ENABLE, 0 }, |
| 612 | { "output-enable", PIN_CONFIG_OUTPUT_ENABLE, 1 }, |
| 613 | { "output-high", PIN_CONFIG_OUTPUT, 1, }, |
| 614 | { "output-low", PIN_CONFIG_OUTPUT, 0, }, |
| 615 | { "power-source", PIN_CONFIG_POWER_SOURCE, 0 }, |
| 616 | { "sleep-hardware-state", PIN_CONFIG_SLEEP_HARDWARE_STATE, 0 }, |
| 617 | { "slew-rate", PIN_CONFIG_SLEW_RATE, 0 }, |
| 618 | { "skew-delay", PIN_CONFIG_SKEW_DELAY, 0 }, |
| 619 | /* zynqmp specific */ |
| 620 | {"io-standard", PIN_CONFIG_IOSTANDARD, IO_STANDARD_LVCMOS18}, |
| 621 | {"schmitt-cmos", PIN_CONFIG_SCHMITTCMOS, PM_PINCTRL_INPUT_TYPE_SCHMITT}, |
| 622 | }; |
| 623 | |
| 624 | static struct pinctrl_ops zynqmp_pinctrl_ops = { |
| 625 | .get_pins_count = zynqmp_pinctrl_get_pins_count, |
| 626 | .get_pin_name = zynqmp_pinctrl_get_pin_name, |
| 627 | .get_pin_muxing = zynqmp_pinctrl_get_pin_muxing, |
| 628 | .set_state = pinctrl_generic_set_state, |
| 629 | .get_groups_count = zynqmp_pinctrl_get_groups_count, |
| 630 | .get_group_name = zynqmp_pinctrl_get_group_name, |
| 631 | .get_functions_count = zynqmp_pinctrl_get_functions_count, |
| 632 | .get_function_name = zynqmp_pinctrl_get_function_name, |
| 633 | .pinmux_group_set = zynqmp_pinmux_group_set, |
| 634 | .pinmux_set = zynqmp_pinmux_set, |
| 635 | .pinconf_params = zynqmp_conf_params, |
| 636 | .pinconf_group_set = zynqmp_pinconf_group_set, |
| 637 | .pinconf_set = zynqmp_pinconf_set, |
| 638 | .pinconf_num_params = ARRAY_SIZE(zynqmp_conf_params), |
| 639 | }; |
| 640 | |
| 641 | static const struct udevice_id zynqmp_pinctrl_ids[] = { |
| 642 | { .compatible = "xlnx,zynqmp-pinctrl" }, |
| 643 | { } |
| 644 | }; |
| 645 | |
| 646 | U_BOOT_DRIVER(pinctrl_zynqmp) = { |
| 647 | .name = "zynqmp-pinctrl", |
| 648 | .id = UCLASS_PINCTRL, |
| 649 | .of_match = zynqmp_pinctrl_ids, |
| 650 | .priv_auto = sizeof(struct zynqmp_pinctrl_priv), |
| 651 | .ops = &zynqmp_pinctrl_ops, |
| 652 | .probe = zynqmp_pinctrl_probe, |
| 653 | }; |