2 * SuperH Pin Function Controller Support
4 * Copyright (c) 2008 Magnus Damm
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
14 #include <linux/bug.h>
15 #include <linux/stringify.h>
17 typedef unsigned short pinmux_enum_t
;
19 #define SH_PFC_MARK_INVALID ((pinmux_enum_t)-1)
28 PINMUX_TYPE_INPUT_PULLUP
,
29 PINMUX_TYPE_INPUT_PULLDOWN
,
31 PINMUX_FLAG_TYPE
, /* must be last */
34 #define SH_PFC_PIN_CFG_INPUT (1 << 0)
35 #define SH_PFC_PIN_CFG_OUTPUT (1 << 1)
36 #define SH_PFC_PIN_CFG_PULL_UP (1 << 2)
37 #define SH_PFC_PIN_CFG_PULL_DOWN (1 << 3)
40 const pinmux_enum_t enum_id
;
45 #define SH_PFC_PIN_GROUP(n) \
50 .nr_pins = ARRAY_SIZE(n##_pins), \
53 struct sh_pfc_pin_group
{
55 const unsigned int *pins
;
56 const unsigned int *mux
;
60 #define SH_PFC_FUNCTION(n) \
63 .groups = n##_groups, \
64 .nr_groups = ARRAY_SIZE(n##_groups), \
67 struct sh_pfc_function
{
69 const char * const *groups
;
70 unsigned int nr_groups
;
74 const pinmux_enum_t enum_id
;
78 #define PINMUX_GPIO(gpio, data_or_mark) \
80 .name = __stringify(gpio), \
81 .enum_id = data_or_mark, \
83 #define PINMUX_GPIO_FN(gpio, base, data_or_mark) \
85 .name = __stringify(gpio), \
86 .enum_id = data_or_mark, \
89 #define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
91 struct pinmux_cfg_reg
{
92 unsigned long reg
, reg_width
, field_width
;
93 const pinmux_enum_t
*enum_ids
;
94 const unsigned long *var_field_width
;
97 #define PINMUX_CFG_REG(name, r, r_width, f_width) \
98 .reg = r, .reg_width = r_width, .field_width = f_width, \
99 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)])
101 #define PINMUX_CFG_REG_VAR(name, r, r_width, var_fw0, var_fwn...) \
102 .reg = r, .reg_width = r_width, \
103 .var_field_width = (unsigned long [r_width]) { var_fw0, var_fwn, 0 }, \
104 .enum_ids = (pinmux_enum_t [])
106 struct pinmux_data_reg
{
107 unsigned long reg
, reg_width
;
108 const pinmux_enum_t
*enum_ids
;
111 #define PINMUX_DATA_REG(name, r, r_width) \
112 .reg = r, .reg_width = r_width, \
113 .enum_ids = (pinmux_enum_t [r_width]) \
117 unsigned short *gpios
;
120 #define PINMUX_IRQ(irq_nr, ids...) \
121 { .irq = irq_nr, .gpios = (unsigned short []) { ids, 0 } } \
123 struct pinmux_range {
131 struct sh_pfc_soc_operations
{
132 int (*init
)(struct sh_pfc
*pfc
);
133 void (*exit
)(struct sh_pfc
*pfc
);
134 unsigned int (*get_bias
)(struct sh_pfc
*pfc
, unsigned int pin
);
135 void (*set_bias
)(struct sh_pfc
*pfc
, unsigned int pin
,
139 struct sh_pfc_soc_info
{
141 const struct sh_pfc_soc_operations
*ops
;
143 struct pinmux_range input
;
144 struct pinmux_range input_pd
;
145 struct pinmux_range input_pu
;
146 struct pinmux_range output
;
147 struct pinmux_range function
;
149 const struct sh_pfc_pin
*pins
;
150 unsigned int nr_pins
;
151 const struct pinmux_range
*ranges
;
152 unsigned int nr_ranges
;
153 const struct sh_pfc_pin_group
*groups
;
154 unsigned int nr_groups
;
155 const struct sh_pfc_function
*functions
;
156 unsigned int nr_functions
;
158 const struct pinmux_func
*func_gpios
;
159 unsigned int nr_func_gpios
;
161 const struct pinmux_cfg_reg
*cfg_regs
;
162 const struct pinmux_data_reg
*data_regs
;
164 const pinmux_enum_t
*gpio_data
;
165 unsigned int gpio_data_size
;
167 const struct pinmux_irq
*gpio_irq
;
168 unsigned int gpio_irq_size
;
170 unsigned long unlock_reg
;
173 enum { GPIO_CFG_REQ
, GPIO_CFG_FREE
};
175 /* helper macro for port */
176 #define PORT_1(fn, pfx, sfx) fn(pfx, sfx)
178 #define PORT_10(fn, pfx, sfx) \
179 PORT_1(fn, pfx##0, sfx), PORT_1(fn, pfx##1, sfx), \
180 PORT_1(fn, pfx##2, sfx), PORT_1(fn, pfx##3, sfx), \
181 PORT_1(fn, pfx##4, sfx), PORT_1(fn, pfx##5, sfx), \
182 PORT_1(fn, pfx##6, sfx), PORT_1(fn, pfx##7, sfx), \
183 PORT_1(fn, pfx##8, sfx), PORT_1(fn, pfx##9, sfx)
185 #define PORT_10_REV(fn, pfx, sfx) \
186 PORT_1(fn, pfx##9, sfx), PORT_1(fn, pfx##8, sfx), \
187 PORT_1(fn, pfx##7, sfx), PORT_1(fn, pfx##6, sfx), \
188 PORT_1(fn, pfx##5, sfx), PORT_1(fn, pfx##4, sfx), \
189 PORT_1(fn, pfx##3, sfx), PORT_1(fn, pfx##2, sfx), \
190 PORT_1(fn, pfx##1, sfx), PORT_1(fn, pfx##0, sfx)
192 #define PORT_32(fn, pfx, sfx) \
193 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \
194 PORT_10(fn, pfx##2, sfx), PORT_1(fn, pfx##30, sfx), \
195 PORT_1(fn, pfx##31, sfx)
197 #define PORT_32_REV(fn, pfx, sfx) \
198 PORT_1(fn, pfx##31, sfx), PORT_1(fn, pfx##30, sfx), \
199 PORT_10_REV(fn, pfx##2, sfx), PORT_10_REV(fn, pfx##1, sfx), \
200 PORT_10_REV(fn, pfx, sfx)
202 #define PORT_90(fn, pfx, sfx) \
203 PORT_10(fn, pfx##1, sfx), PORT_10(fn, pfx##2, sfx), \
204 PORT_10(fn, pfx##3, sfx), PORT_10(fn, pfx##4, sfx), \
205 PORT_10(fn, pfx##5, sfx), PORT_10(fn, pfx##6, sfx), \
206 PORT_10(fn, pfx##7, sfx), PORT_10(fn, pfx##8, sfx), \
207 PORT_10(fn, pfx##9, sfx)
209 #define _PORT_ALL(pfx, sfx) pfx##_##sfx
210 #define _GPIO_PORT(pfx, sfx) PINMUX_GPIO(GPIO_PORT##pfx, PORT##pfx##_DATA)
211 #define PORT_ALL(str) CPU_ALL_PORT(_PORT_ALL, PORT, str)
212 #define GPIO_PORT_ALL() CPU_ALL_PORT(_GPIO_PORT, , unused)
213 #define GPIO_FN(str) PINMUX_GPIO_FN(GPIO_FN_##str, PINMUX_FN_BASE, str##_MARK)
215 /* helper macro for pinmux_enum_t */
216 #define PORT_DATA_I(nr) \
217 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_IN)
219 #define PORT_DATA_I_PD(nr) \
220 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, \
221 PORT##nr##_IN, PORT##nr##_IN_PD)
223 #define PORT_DATA_I_PU(nr) \
224 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, \
225 PORT##nr##_IN, PORT##nr##_IN_PU)
227 #define PORT_DATA_I_PU_PD(nr) \
228 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, \
229 PORT##nr##_IN, PORT##nr##_IN_PD, PORT##nr##_IN_PU)
231 #define PORT_DATA_O(nr) \
232 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_OUT)
234 #define PORT_DATA_IO(nr) \
235 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_OUT, \
238 #define PORT_DATA_IO_PD(nr) \
239 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_OUT, \
240 PORT##nr##_IN, PORT##nr##_IN_PD)
242 #define PORT_DATA_IO_PU(nr) \
243 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_OUT, \
244 PORT##nr##_IN, PORT##nr##_IN_PU)
246 #define PORT_DATA_IO_PU_PD(nr) \
247 PINMUX_DATA(PORT##nr##_DATA, PORT##nr##_FN0, PORT##nr##_OUT, \
248 PORT##nr##_IN, PORT##nr##_IN_PD, PORT##nr##_IN_PU)
250 /* helper macro for top 4 bits in PORTnCR */
251 #define _PCRH(in, in_pd, in_pu, out) \
257 #define PORTCR(nr, reg) \
259 PINMUX_CFG_REG("PORT" nr "CR", reg, 8, 4) { \
260 _PCRH(PORT##nr##_IN, PORT##nr##_IN_PD, \
261 PORT##nr##_IN_PU, PORT##nr##_OUT), \
262 PORT##nr##_FN0, PORT##nr##_FN1, \
263 PORT##nr##_FN2, PORT##nr##_FN3, \
264 PORT##nr##_FN4, PORT##nr##_FN5, \
265 PORT##nr##_FN6, PORT##nr##_FN7 } \
268 #endif /* __SH_PFC_H */