Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Exynos pinctrl driver header. |
| 4 | * Copyright (C) 2016 Samsung Electronics |
| 5 | * Thomas Abraham <thomas.ab@samsung.com> |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __PINCTRL_EXYNOS_H_ |
Andre Przywara | 081b160 | 2023-05-15 14:52:13 +0100 | [diff] [blame] | 9 | #define __PINCTRL_EXYNOS_H_ |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 10 | |
Sam Protsenko | 2ed4ba8 | 2023-11-30 14:13:49 -0600 | [diff] [blame^] | 11 | /** |
| 12 | * enum pincfg_type - possible pin configuration types supported. |
| 13 | * @PINCFG_TYPE_FUNC: Function configuration. |
| 14 | * @PINCFG_TYPE_DAT: Pin value configuration. |
| 15 | * @PINCFG_TYPE_PUD: Pull up/down configuration. |
| 16 | * @PINCFG_TYPE_DRV: Drive strength configuration. |
| 17 | */ |
| 18 | enum pincfg_type { |
| 19 | PINCFG_TYPE_FUNC, |
| 20 | PINCFG_TYPE_DAT, |
| 21 | PINCFG_TYPE_PUD, |
| 22 | PINCFG_TYPE_DRV, |
| 23 | |
| 24 | PINCFG_TYPE_NUM |
| 25 | }; |
| 26 | |
| 27 | /** |
| 28 | * struct samsung_pin_bank_type: pin bank type description |
| 29 | * @fld_width: widths of configuration bitfields (0 if unavailable) |
| 30 | * @reg_offset: offsets of configuration registers (don't care of width is 0) |
| 31 | */ |
| 32 | struct samsung_pin_bank_type { |
| 33 | u8 fld_width[PINCFG_TYPE_NUM]; |
| 34 | u8 reg_offset[PINCFG_TYPE_NUM]; |
| 35 | }; |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 36 | |
| 37 | /** |
| 38 | * struct samsung_pin_bank_data: represent a controller pin-bank data. |
Sam Protsenko | 2ed4ba8 | 2023-11-30 14:13:49 -0600 | [diff] [blame^] | 39 | * @type: type of the bank (register offsets and bitfield widths) |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 40 | * @offset: starting offset of the pin-bank registers. |
| 41 | * @nr_pins: number of pins included in this bank. |
| 42 | * @name: name to be prefixed for each pin in this pin bank. |
| 43 | */ |
| 44 | struct samsung_pin_bank_data { |
Sam Protsenko | 2ed4ba8 | 2023-11-30 14:13:49 -0600 | [diff] [blame^] | 45 | const struct samsung_pin_bank_type *type; |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 46 | u32 offset; |
| 47 | u8 nr_pins; |
| 48 | const char *name; |
| 49 | }; |
| 50 | |
Sam Protsenko | 2ed4ba8 | 2023-11-30 14:13:49 -0600 | [diff] [blame^] | 51 | extern const struct samsung_pin_bank_type bank_type_alive; |
| 52 | |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 53 | #define EXYNOS_PIN_BANK(pins, reg, id) \ |
| 54 | { \ |
Sam Protsenko | 2ed4ba8 | 2023-11-30 14:13:49 -0600 | [diff] [blame^] | 55 | .type = &bank_type_alive, \ |
Sam Protsenko | 7b34206 | 2023-11-30 14:13:46 -0600 | [diff] [blame] | 56 | .offset = reg, \ |
Thomas Abraham | 16ca80a | 2016-04-23 22:18:08 +0530 | [diff] [blame] | 57 | .nr_pins = pins, \ |
| 58 | .name = id \ |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * struct samsung_pin_ctrl: represent a pin controller. |
| 63 | * @pin_banks: list of pin banks included in this controller. |
| 64 | * @nr_banks: number of pin banks. |
| 65 | */ |
| 66 | struct samsung_pin_ctrl { |
| 67 | const struct samsung_pin_bank_data *pin_banks; |
| 68 | u32 nr_banks; |
| 69 | }; |
| 70 | |
| 71 | /** |
| 72 | * struct exynos_pinctrl_priv: exynos pin controller driver private data |
| 73 | * @pin_ctrl: pin controller bank information. |
| 74 | * @base: base address of the pin controller instance. |
| 75 | * @num_banks: number of pin banks included in the pin controller. |
| 76 | */ |
| 77 | struct exynos_pinctrl_priv { |
| 78 | const struct samsung_pin_ctrl *pin_ctrl; |
| 79 | unsigned long base; |
| 80 | int num_banks; |
| 81 | }; |
| 82 | |
| 83 | /** |
| 84 | * struct exynos_pinctrl_config_data: configuration for a peripheral. |
| 85 | * @offset: offset of the config registers in the controller. |
| 86 | * @mask: value of the register to be masked with. |
| 87 | * @value: new value to be programmed. |
| 88 | */ |
| 89 | struct exynos_pinctrl_config_data { |
| 90 | const unsigned int offset; |
| 91 | const unsigned int mask; |
| 92 | const unsigned int value; |
| 93 | }; |
| 94 | |
| 95 | |
| 96 | void exynos_pinctrl_setup_peri(struct exynos_pinctrl_config_data *conf, |
| 97 | unsigned int num_conf, unsigned long base); |
| 98 | int exynos_pinctrl_set_state(struct udevice *dev, |
| 99 | struct udevice *config); |
| 100 | int exynos_pinctrl_probe(struct udevice *dev); |
| 101 | |
| 102 | #endif /* __PINCTRL_EXYNOS_H_ */ |