Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 2 | /* |
Masahiro Yamada | fa1f73f | 2016-07-19 21:56:13 +0900 | [diff] [blame] | 3 | * Copyright (C) 2015-2016 Socionext Inc. |
| 4 | * Author: Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __PINCTRL_UNIPHIER_H__ |
| 8 | #define __PINCTRL_UNIPHIER_H__ |
| 9 | |
Masahiro Yamada | 7a629ef | 2016-03-24 22:32:44 +0900 | [diff] [blame] | 10 | #include <linux/bitops.h> |
Masahiro Yamada | 17ca7f2 | 2018-05-05 19:53:53 +0900 | [diff] [blame] | 11 | #include <linux/build_bug.h> |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/types.h> |
| 14 | |
Masahiro Yamada | e5299ed | 2018-05-05 19:53:55 +0900 | [diff] [blame] | 15 | /* drive strength control register number */ |
| 16 | #define UNIPHIER_PIN_DRVCTRL_SHIFT 0 |
| 17 | #define UNIPHIER_PIN_DRVCTRL_BITS 9 |
| 18 | #define UNIPHIER_PIN_DRVCTRL_MASK ((1U << (UNIPHIER_PIN_DRVCTRL_BITS)) \ |
| 19 | - 1) |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 20 | |
Masahiro Yamada | e5299ed | 2018-05-05 19:53:55 +0900 | [diff] [blame] | 21 | /* drive control type */ |
| 22 | #define UNIPHIER_PIN_DRV_TYPE_SHIFT ((UNIPHIER_PIN_DRVCTRL_SHIFT) + \ |
| 23 | (UNIPHIER_PIN_DRVCTRL_BITS)) |
| 24 | #define UNIPHIER_PIN_DRV_TYPE_BITS 2 |
| 25 | #define UNIPHIER_PIN_DRV_TYPE_MASK ((1U << (UNIPHIER_PIN_DRV_TYPE_BITS)) \ |
| 26 | - 1) |
| 27 | |
| 28 | /* drive control type */ |
| 29 | enum uniphier_pin_drv_type { |
| 30 | UNIPHIER_PIN_DRV_1BIT, /* 2 level control: 4/8 mA */ |
| 31 | UNIPHIER_PIN_DRV_2BIT, /* 4 level control: 8/12/16/20 mA */ |
| 32 | UNIPHIER_PIN_DRV_3BIT, /* 8 level control: 4/5/7/9/11/12/14/16 mA */ |
| 33 | }; |
| 34 | |
| 35 | #define UNIPHIER_PIN_DRVCTRL(x) \ |
| 36 | (((x) & (UNIPHIER_PIN_DRVCTRL_MASK)) << (UNIPHIER_PIN_DRVCTRL_SHIFT)) |
| 37 | #define UNIPHIER_PIN_DRV_TYPE(x) \ |
| 38 | (((x) & (UNIPHIER_PIN_DRV_TYPE_MASK)) << (UNIPHIER_PIN_DRV_TYPE_SHIFT)) |
| 39 | |
| 40 | #define UNIPHIER_PIN_ATTR_PACKED(drvctrl, drv_type) \ |
| 41 | UNIPHIER_PIN_DRVCTRL(drvctrl) | \ |
| 42 | UNIPHIER_PIN_DRV_TYPE(drv_type) |
| 43 | |
| 44 | static inline unsigned int uniphier_pin_get_drvctrl(unsigned int data) |
| 45 | { |
| 46 | return (data >> UNIPHIER_PIN_DRVCTRL_SHIFT) & UNIPHIER_PIN_DRVCTRL_MASK; |
| 47 | } |
| 48 | |
| 49 | static inline unsigned int uniphier_pin_get_drv_type(unsigned int data) |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 50 | { |
Masahiro Yamada | e5299ed | 2018-05-05 19:53:55 +0900 | [diff] [blame] | 51 | return (data >> UNIPHIER_PIN_DRV_TYPE_SHIFT) & |
| 52 | UNIPHIER_PIN_DRV_TYPE_MASK; |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /** |
| 56 | * struct uniphier_pinctrl_pin - pin data for UniPhier SoC |
| 57 | * |
| 58 | * @number: pin number |
| 59 | * @data: additional per-pin data |
| 60 | */ |
| 61 | struct uniphier_pinctrl_pin { |
| 62 | unsigned number; |
Masahiro Yamada | 914b571 | 2018-05-05 19:53:54 +0900 | [diff] [blame] | 63 | const char *name; |
| 64 | unsigned int data; |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | /** |
| 68 | * struct uniphier_pinctrl_group - pin group data for UniPhier SoC |
| 69 | * |
| 70 | * @name: pin group name |
| 71 | * @pins: array of pins that belong to the group |
| 72 | * @num_pins: number of pins in the group |
| 73 | * @muxvals: array of values to be set to pinmux registers |
| 74 | */ |
| 75 | struct uniphier_pinctrl_group { |
| 76 | const char *name; |
| 77 | const unsigned *pins; |
| 78 | unsigned num_pins; |
Masahiro Yamada | 9447e13 | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 79 | const int *muxvals; |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | /** |
| 83 | * struct uniphier_pinctrl_socdata - SoC data for UniPhier pin controller |
| 84 | * |
| 85 | * @pins: array of pin data |
| 86 | * @pins_count: number of pin data |
| 87 | * @groups: array of pin group data |
| 88 | * @groups_count: number of pin group data |
| 89 | * @functions: array of pinmux function names |
| 90 | * @functions_count: number of pinmux functions |
| 91 | * @mux_bits: bit width of each pinmux register |
| 92 | * @reg_stride: stride of pinmux register address |
Masahiro Yamada | 7a629ef | 2016-03-24 22:32:44 +0900 | [diff] [blame] | 93 | * @caps: SoC-specific capability flag |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 94 | */ |
| 95 | struct uniphier_pinctrl_socdata { |
| 96 | const struct uniphier_pinctrl_pin *pins; |
| 97 | int pins_count; |
| 98 | const struct uniphier_pinctrl_group *groups; |
| 99 | int groups_count; |
| 100 | const char * const *functions; |
| 101 | int functions_count; |
Masahiro Yamada | 7a629ef | 2016-03-24 22:32:44 +0900 | [diff] [blame] | 102 | unsigned caps; |
Masahiro Yamada | 140e9f1 | 2017-02-12 18:21:15 +0900 | [diff] [blame] | 103 | #define UNIPHIER_PINCTRL_CAPS_PUPD_SIMPLE BIT(3) |
Masahiro Yamada | c3380ed | 2016-09-17 03:32:58 +0900 | [diff] [blame] | 104 | #define UNIPHIER_PINCTRL_CAPS_PERPIN_IECTRL BIT(2) |
| 105 | #define UNIPHIER_PINCTRL_CAPS_DBGMUX_SEPARATE BIT(1) |
| 106 | #define UNIPHIER_PINCTRL_CAPS_MUX_4BIT BIT(0) |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 107 | }; |
| 108 | |
Masahiro Yamada | e5299ed | 2018-05-05 19:53:55 +0900 | [diff] [blame] | 109 | #define UNIPHIER_PINCTRL_PIN(a, b, c, d) \ |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 110 | { \ |
| 111 | .number = a, \ |
Masahiro Yamada | e5299ed | 2018-05-05 19:53:55 +0900 | [diff] [blame] | 112 | .name = b, \ |
| 113 | .data = UNIPHIER_PIN_ATTR_PACKED(c, d), \ |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 114 | } |
| 115 | |
Masahiro Yamada | 65ef4f7 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 116 | #define __UNIPHIER_PINCTRL_GROUP(grp) \ |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 117 | { \ |
| 118 | .name = #grp, \ |
| 119 | .pins = grp##_pins, \ |
| 120 | .num_pins = ARRAY_SIZE(grp##_pins), \ |
| 121 | .muxvals = grp##_muxvals + \ |
| 122 | BUILD_BUG_ON_ZERO(ARRAY_SIZE(grp##_pins) != \ |
| 123 | ARRAY_SIZE(grp##_muxvals)), \ |
| 124 | } |
| 125 | |
Masahiro Yamada | 65ef4f7 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 126 | #define __UNIPHIER_PINMUX_FUNCTION(func) #func |
| 127 | |
| 128 | #ifdef CONFIG_SPL_BUILD |
Masahiro Yamada | 945c470 | 2016-10-09 23:52:57 +0900 | [diff] [blame] | 129 | /* |
| 130 | * a tricky way to drop unneeded *_pins and *_muxvals arrays from SPL, |
| 131 | * suppressing "defined but not used" warnings. |
| 132 | */ |
| 133 | #define UNIPHIER_PINCTRL_GROUP(grp) \ |
| 134 | { .num_pins = ARRAY_SIZE(grp##_pins) + ARRAY_SIZE(grp##_muxvals) } |
Masahiro Yamada | 65ef4f7 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 135 | #define UNIPHIER_PINMUX_FUNCTION(func) NULL |
| 136 | #else |
| 137 | #define UNIPHIER_PINCTRL_GROUP(grp) __UNIPHIER_PINCTRL_GROUP(grp) |
| 138 | #define UNIPHIER_PINMUX_FUNCTION(func) __UNIPHIER_PINMUX_FUNCTION(func) |
| 139 | #endif |
| 140 | |
| 141 | #define UNIPHIER_PINCTRL_GROUP_SPL(grp) __UNIPHIER_PINCTRL_GROUP(grp) |
| 142 | #define UNIPHIER_PINMUX_FUNCTION_SPL(func) __UNIPHIER_PINMUX_FUNCTION(func) |
| 143 | |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 144 | /** |
| 145 | * struct uniphier_pinctrl_priv - private data for UniPhier pinctrl driver |
| 146 | * |
| 147 | * @base: base address of the pinctrl device |
| 148 | * @socdata: SoC specific data |
| 149 | */ |
| 150 | struct uniphier_pinctrl_priv { |
| 151 | void __iomem *base; |
| 152 | struct uniphier_pinctrl_socdata *socdata; |
| 153 | }; |
| 154 | |
| 155 | extern const struct pinctrl_ops uniphier_pinctrl_ops; |
| 156 | |
| 157 | int uniphier_pinctrl_probe(struct udevice *dev, |
| 158 | struct uniphier_pinctrl_socdata *socdata); |
| 159 | |
Masahiro Yamada | 847e618b8 | 2015-09-11 20:17:32 +0900 | [diff] [blame] | 160 | #endif /* __PINCTRL_UNIPHIER_H__ */ |