Backmerge tag 'v4.7-rc2' into drm-next
[deliverable/linux.git] / drivers / pinctrl / sh-pfc / sh_pfc.h
CommitLineData
fae43399
MD
1/*
2 * SuperH Pin Function Controller Support
3 *
4 * Copyright (c) 2008 Magnus Damm
5 *
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
8 * for more details.
9 */
10
11#ifndef __SH_PFC_H
12#define __SH_PFC_H
13
bf9f0674 14#include <linux/bug.h>
5b9eaa56 15#include <linux/pinctrl/pinconf-generic.h>
72c7afa1 16#include <linux/stringify.h>
fae43399 17
06d5631f
PM
18enum {
19 PINMUX_TYPE_NONE,
06d5631f
PM
20 PINMUX_TYPE_FUNCTION,
21 PINMUX_TYPE_GPIO,
22 PINMUX_TYPE_OUTPUT,
23 PINMUX_TYPE_INPUT,
06d5631f 24};
fae43399 25
c58d9c1b
LP
26#define SH_PFC_PIN_CFG_INPUT (1 << 0)
27#define SH_PFC_PIN_CFG_OUTPUT (1 << 1)
28#define SH_PFC_PIN_CFG_PULL_UP (1 << 2)
29#define SH_PFC_PIN_CFG_PULL_DOWN (1 << 3)
5b9eaa56 30#define SH_PFC_PIN_CFG_IO_VOLTAGE (1 << 4)
3caa7d8c 31#define SH_PFC_PIN_CFG_DRIVE_STRENGTH (1 << 5)
4f82e3ee 32#define SH_PFC_PIN_CFG_NO_GPIO (1 << 31)
c58d9c1b 33
a3db40a6 34struct sh_pfc_pin {
9689896c 35 u16 pin;
533743dc 36 u16 enum_id;
72c7afa1 37 const char *name;
c58d9c1b 38 unsigned int configs;
fae43399
MD
39};
40
3d8d9f1d
LP
41#define SH_PFC_PIN_GROUP(n) \
42 { \
43 .name = #n, \
44 .pins = n##_pins, \
45 .mux = n##_mux, \
46 .nr_pins = ARRAY_SIZE(n##_pins), \
47 }
48
49struct sh_pfc_pin_group {
50 const char *name;
51 const unsigned int *pins;
52 const unsigned int *mux;
53 unsigned int nr_pins;
54};
55
423caa52
SS
56/*
57 * Using union vin_data saves memory occupied by the VIN data pins.
58 * VIN_DATA_PIN_GROUP() is a macro used to describe the VIN pin groups
59 * in this case.
60 */
61#define VIN_DATA_PIN_GROUP(n, s) \
62 { \
63 .name = #n#s, \
64 .pins = n##_pins.data##s, \
65 .mux = n##_mux.data##s, \
66 .nr_pins = ARRAY_SIZE(n##_pins.data##s), \
67 }
68
69union vin_data {
70 unsigned int data24[24];
71 unsigned int data20[20];
72 unsigned int data16[16];
73 unsigned int data12[12];
74 unsigned int data10[10];
75 unsigned int data8[8];
76 unsigned int data4[4];
77};
78
3d8d9f1d
LP
79#define SH_PFC_FUNCTION(n) \
80 { \
81 .name = #n, \
82 .groups = n##_groups, \
83 .nr_groups = ARRAY_SIZE(n##_groups), \
84 }
85
86struct sh_pfc_function {
87 const char *name;
88 const char * const *groups;
89 unsigned int nr_groups;
90};
91
a373ed0a 92struct pinmux_func {
533743dc 93 u16 enum_id;
a373ed0a
LP
94 const char *name;
95};
96
fae43399 97struct pinmux_cfg_reg {
1f34de05 98 u32 reg;
dc700715 99 u8 reg_width, field_width;
533743dc 100 const u16 *enum_ids;
dc700715 101 const u8 *var_field_width;
fae43399
MD
102};
103
cbc983f8
GU
104/*
105 * Describe a config register consisting of several fields of the same width
106 * - name: Register name (unused, for documentation purposes only)
107 * - r: Physical register address
108 * - r_width: Width of the register (in bits)
109 * - f_width: Width of the fixed-width register fields (in bits)
110 * This macro must be followed by initialization data: For each register field
111 * (from left to right, i.e. MSB to LSB), 2^f_width enum IDs must be specified,
112 * one for each possible combination of the register field bit values.
113 */
fae43399
MD
114#define PINMUX_CFG_REG(name, r, r_width, f_width) \
115 .reg = r, .reg_width = r_width, .field_width = f_width, \
9aecff58 116 .enum_ids = (const u16 [(r_width / f_width) * (1 << f_width)])
f78a26f5 117
cbc983f8
GU
118/*
119 * Describe a config register consisting of several fields of different widths
120 * - name: Register name (unused, for documentation purposes only)
121 * - r: Physical register address
122 * - r_width: Width of the register (in bits)
123 * - var_fw0, var_fwn...: List of widths of the register fields (in bits),
124 * From left to right (i.e. MSB to LSB)
125 * This macro must be followed by initialization data: For each register field
126 * (from left to right, i.e. MSB to LSB), 2^var_fwi enum IDs must be specified,
127 * one for each possible combination of the register field bit values.
128 */
f78a26f5
MD
129#define PINMUX_CFG_REG_VAR(name, r, r_width, var_fw0, var_fwn...) \
130 .reg = r, .reg_width = r_width, \
dc700715 131 .var_field_width = (const u8 [r_width]) \
9aecff58
LP
132 { var_fw0, var_fwn, 0 }, \
133 .enum_ids = (const u16 [])
fae43399 134
3caa7d8c
LP
135struct pinmux_drive_reg_field {
136 u16 pin;
137 u8 offset;
138 u8 size;
139};
140
141struct pinmux_drive_reg {
142 u32 reg;
143 const struct pinmux_drive_reg_field fields[8];
144};
145
146#define PINMUX_DRIVE_REG(name, r) \
147 .reg = r, \
148 .fields =
149
fae43399 150struct pinmux_data_reg {
1f34de05 151 u32 reg;
dc700715 152 u8 reg_width;
533743dc 153 const u16 *enum_ids;
fae43399
MD
154};
155
cbc983f8
GU
156/*
157 * Describe a data register
158 * - name: Register name (unused, for documentation purposes only)
159 * - r: Physical register address
160 * - r_width: Width of the register (in bits)
161 * This macro must be followed by initialization data: For each register bit
162 * (from left to right, i.e. MSB to LSB), one enum ID must be specified.
163 */
fae43399
MD
164#define PINMUX_DATA_REG(name, r, r_width) \
165 .reg = r, .reg_width = r_width, \
9aecff58 166 .enum_ids = (const u16 [r_width]) \
fae43399 167
ad2a8e7e 168struct pinmux_irq {
6d5bddd5 169 const short *gpios;
ad2a8e7e
MD
170};
171
cbc983f8
GU
172/*
173 * Describe the mapping from GPIOs to a single IRQ
174 * - ids...: List of GPIOs that are mapped to the same IRQ
175 */
4adeabd0 176#define PINMUX_IRQ(ids...) \
0e26e8df 177 { .gpios = (const short []) { ids, -1 } }
ad2a8e7e 178
fae43399 179struct pinmux_range {
533743dc
LP
180 u16 begin;
181 u16 end;
182 u16 force;
fae43399
MD
183};
184
c58d9c1b
LP
185struct sh_pfc;
186
187struct sh_pfc_soc_operations {
0c151062 188 int (*init)(struct sh_pfc *pfc);
c58d9c1b
LP
189 unsigned int (*get_bias)(struct sh_pfc *pfc, unsigned int pin);
190 void (*set_bias)(struct sh_pfc *pfc, unsigned int pin,
191 unsigned int bias);
5b9eaa56
BH
192 int (*get_io_voltage)(struct sh_pfc *pfc, unsigned int pin);
193 int (*set_io_voltage)(struct sh_pfc *pfc, unsigned int pin,
194 u16 voltage_mV);
c58d9c1b
LP
195};
196
19bb7fe3 197struct sh_pfc_soc_info {
cd3c1bee 198 const char *name;
c58d9c1b
LP
199 const struct sh_pfc_soc_operations *ops;
200
fae43399 201 struct pinmux_range input;
fae43399 202 struct pinmux_range output;
fae43399
MD
203 struct pinmux_range function;
204
cd3c1bee 205 const struct sh_pfc_pin *pins;
caa5bac3 206 unsigned int nr_pins;
3d8d9f1d
LP
207 const struct sh_pfc_pin_group *groups;
208 unsigned int nr_groups;
209 const struct sh_pfc_function *functions;
210 unsigned int nr_functions;
211
56f891b4 212#ifdef CONFIG_SUPERH
cd3c1bee 213 const struct pinmux_func *func_gpios;
a373ed0a 214 unsigned int nr_func_gpios;
56f891b4 215#endif
d7a7ca57 216
cd3c1bee 217 const struct pinmux_cfg_reg *cfg_regs;
3caa7d8c 218 const struct pinmux_drive_reg *drive_regs;
cd3c1bee 219 const struct pinmux_data_reg *data_regs;
fae43399 220
b8b47d67
GU
221 const u16 *pinmux_data;
222 unsigned int pinmux_data_size;
fae43399 223
cd3c1bee 224 const struct pinmux_irq *gpio_irq;
ad2a8e7e
MD
225 unsigned int gpio_irq_size;
226
1f34de05 227 u32 unlock_reg;
fae43399
MD
228};
229
e3d93b46
LP
230/* -----------------------------------------------------------------------------
231 * Helper macros to create pin and port lists
232 */
233
234/*
b8b47d67 235 * sh_pfc_soc_info pinmux_data array macros
e3d93b46
LP
236 */
237
cbc983f8
GU
238/*
239 * Describe generic pinmux data
240 * - data_or_mark: *_DATA or *_MARK enum ID
241 * - ids...: List of enum IDs to associate with data_or_mark
242 */
e3d93b46
LP
243#define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
244
cbc983f8
GU
245/*
246 * Describe a pinmux configuration without GPIO function that needs
247 * configuration in a Peripheral Function Select Register (IPSR)
248 * - ipsr: IPSR field (unused, for documentation purposes only)
249 * - fn: Function name, referring to a field in the IPSR
250 */
251#define PINMUX_IPSR_NOGP(ipsr, fn) \
e3d93b46 252 PINMUX_DATA(fn##_MARK, FN_##fn)
cbc983f8
GU
253
254/*
255 * Describe a pinmux configuration with GPIO function that needs configuration
256 * in both a Peripheral Function Select Register (IPSR) and in a
257 * GPIO/Peripheral Function Select Register (GPSR)
258 * - ipsr: IPSR field
259 * - fn: Function name, also referring to the IPSR field
260 */
e01678e3 261#define PINMUX_IPSR_GPSR(ipsr, fn) \
e3d93b46 262 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr)
cbc983f8
GU
263
264/*
265 * Describe a pinmux configuration without GPIO function that needs
266 * configuration in a Peripheral Function Select Register (IPSR), and where the
267 * pinmux function has a representation in a Module Select Register (MOD_SEL).
268 * - ipsr: IPSR field (unused, for documentation purposes only)
269 * - fn: Function name, also referring to the IPSR field
270 * - msel: Module selector
271 */
272#define PINMUX_IPSR_NOGM(ipsr, fn, msel) \
273 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##msel)
274
275/*
276 * Describe a pinmux configuration with GPIO function where the pinmux function
277 * has no representation in a Peripheral Function Select Register (IPSR), but
278 * instead solely depends on a group selection.
279 * - gpsr: GPSR field
280 * - fn: Function name, also referring to the GPSR field
281 * - gsel: Group selector
282 */
283#define PINMUX_IPSR_NOFN(gpsr, fn, gsel) \
284 PINMUX_DATA(fn##_MARK, FN_##gpsr, FN_##gsel)
285
286/*
287 * Describe a pinmux configuration with GPIO function that needs configuration
288 * in both a Peripheral Function Select Register (IPSR) and a GPIO/Peripheral
289 * Function Select Register (GPSR), and where the pinmux function has a
290 * representation in a Module Select Register (MOD_SEL).
291 * - ipsr: IPSR field
292 * - fn: Function name, also referring to the IPSR field
293 * - msel: Module selector
294 */
295#define PINMUX_IPSR_MSEL(ipsr, fn, msel) \
93d2185d 296 PINMUX_DATA(fn##_MARK, FN_##msel, FN_##fn, FN_##ipsr)
e3d93b46 297
dcd803be
GU
298/*
299 * Describe a pinmux configuration for a single-function pin with GPIO
300 * capability.
301 * - fn: Function name
302 */
303#define PINMUX_SINGLE(fn) \
304 PINMUX_DATA(fn##_MARK, FN_##fn)
305
e3d93b46
LP
306/*
307 * GP port style (32 ports banks)
308 */
309
22768fc6
UH
310#define PORT_GP_CFG_1(bank, pin, fn, sfx, cfg) fn(bank, pin, GP_##bank##_##pin, sfx, cfg)
311#define PORT_GP_1(bank, pin, fn, sfx) PORT_GP_CFG_1(bank, pin, fn, sfx, 0)
312
2d24fe67 313#define PORT_GP_CFG_4(bank, fn, sfx, cfg) \
22768fc6 314 PORT_GP_CFG_1(bank, 0, fn, sfx, cfg), PORT_GP_CFG_1(bank, 1, fn, sfx, cfg), \
2d24fe67
KM
315 PORT_GP_CFG_1(bank, 2, fn, sfx, cfg), PORT_GP_CFG_1(bank, 3, fn, sfx, cfg)
316#define PORT_GP_4(bank, fn, sfx) PORT_GP_CFG_4(bank, fn, sfx, 0)
317
318#define PORT_GP_CFG_8(bank, fn, sfx, cfg) \
319 PORT_GP_CFG_4(bank, fn, sfx, cfg), \
22768fc6 320 PORT_GP_CFG_1(bank, 4, fn, sfx, cfg), PORT_GP_CFG_1(bank, 5, fn, sfx, cfg), \
2d24fe67
KM
321 PORT_GP_CFG_1(bank, 6, fn, sfx, cfg), PORT_GP_CFG_1(bank, 7, fn, sfx, cfg)
322#define PORT_GP_8(bank, fn, sfx) PORT_GP_CFG_8(bank, fn, sfx, 0)
323
324#define PORT_GP_CFG_9(bank, fn, sfx, cfg) \
325 PORT_GP_CFG_8(bank, fn, sfx, cfg), \
326 PORT_GP_CFG_1(bank, 8, fn, sfx, cfg)
327#define PORT_GP_9(bank, fn, sfx) PORT_GP_CFG_9(bank, fn, sfx, 0)
328
329#define PORT_GP_CFG_12(bank, fn, sfx, cfg) \
330 PORT_GP_CFG_8(bank, fn, sfx, cfg), \
22768fc6 331 PORT_GP_CFG_1(bank, 8, fn, sfx, cfg), PORT_GP_CFG_1(bank, 9, fn, sfx, cfg), \
2d24fe67
KM
332 PORT_GP_CFG_1(bank, 10, fn, sfx, cfg), PORT_GP_CFG_1(bank, 11, fn, sfx, cfg)
333#define PORT_GP_12(bank, fn, sfx) PORT_GP_CFG_12(bank, fn, sfx, 0)
334
335#define PORT_GP_CFG_14(bank, fn, sfx, cfg) \
336 PORT_GP_CFG_12(bank, fn, sfx, cfg), \
337 PORT_GP_CFG_1(bank, 12, fn, sfx, cfg), PORT_GP_CFG_1(bank, 13, fn, sfx, cfg)
338#define PORT_GP_14(bank, fn, sfx) PORT_GP_CFG_14(bank, fn, sfx, 0)
339
340#define PORT_GP_CFG_15(bank, fn, sfx, cfg) \
341 PORT_GP_CFG_14(bank, fn, sfx, cfg), \
342 PORT_GP_CFG_1(bank, 14, fn, sfx, cfg)
343#define PORT_GP_15(bank, fn, sfx) PORT_GP_CFG_15(bank, fn, sfx, 0)
344
345#define PORT_GP_CFG_16(bank, fn, sfx, cfg) \
346 PORT_GP_CFG_14(bank, fn, sfx, cfg), \
347 PORT_GP_CFG_1(bank, 14, fn, sfx, cfg), PORT_GP_CFG_1(bank, 15, fn, sfx, cfg)
348#define PORT_GP_16(bank, fn, sfx) PORT_GP_CFG_16(bank, fn, sfx, 0)
349
350#define PORT_GP_CFG_18(bank, fn, sfx, cfg) \
351 PORT_GP_CFG_16(bank, fn, sfx, cfg), \
352 PORT_GP_CFG_1(bank, 16, fn, sfx, cfg), PORT_GP_CFG_1(bank, 17, fn, sfx, cfg)
353#define PORT_GP_18(bank, fn, sfx) PORT_GP_CFG_18(bank, fn, sfx, 0)
354
355#define PORT_GP_CFG_26(bank, fn, sfx, cfg) \
356 PORT_GP_CFG_18(bank, fn, sfx, cfg), \
22768fc6
UH
357 PORT_GP_CFG_1(bank, 18, fn, sfx, cfg), PORT_GP_CFG_1(bank, 19, fn, sfx, cfg), \
358 PORT_GP_CFG_1(bank, 20, fn, sfx, cfg), PORT_GP_CFG_1(bank, 21, fn, sfx, cfg), \
359 PORT_GP_CFG_1(bank, 22, fn, sfx, cfg), PORT_GP_CFG_1(bank, 23, fn, sfx, cfg), \
2d24fe67
KM
360 PORT_GP_CFG_1(bank, 24, fn, sfx, cfg), PORT_GP_CFG_1(bank, 25, fn, sfx, cfg)
361#define PORT_GP_26(bank, fn, sfx) PORT_GP_CFG_26(bank, fn, sfx, 0)
362
363#define PORT_GP_CFG_28(bank, fn, sfx, cfg) \
364 PORT_GP_CFG_26(bank, fn, sfx, cfg), \
365 PORT_GP_CFG_1(bank, 26, fn, sfx, cfg), PORT_GP_CFG_1(bank, 27, fn, sfx, cfg)
366#define PORT_GP_28(bank, fn, sfx) PORT_GP_CFG_28(bank, fn, sfx, 0)
367
368#define PORT_GP_CFG_30(bank, fn, sfx, cfg) \
369 PORT_GP_CFG_28(bank, fn, sfx, cfg), \
370 PORT_GP_CFG_1(bank, 28, fn, sfx, cfg), PORT_GP_CFG_1(bank, 29, fn, sfx, cfg)
371#define PORT_GP_30(bank, fn, sfx) PORT_GP_CFG_30(bank, fn, sfx, 0)
372
373#define PORT_GP_CFG_32(bank, fn, sfx, cfg) \
374 PORT_GP_CFG_30(bank, fn, sfx, cfg), \
22768fc6
UH
375 PORT_GP_CFG_1(bank, 30, fn, sfx, cfg), PORT_GP_CFG_1(bank, 31, fn, sfx, cfg)
376#define PORT_GP_32(bank, fn, sfx) PORT_GP_CFG_32(bank, fn, sfx, 0)
e3d93b46
LP
377
378#define PORT_GP_32_REV(bank, fn, sfx) \
379 PORT_GP_1(bank, 31, fn, sfx), PORT_GP_1(bank, 30, fn, sfx), \
380 PORT_GP_1(bank, 29, fn, sfx), PORT_GP_1(bank, 28, fn, sfx), \
381 PORT_GP_1(bank, 27, fn, sfx), PORT_GP_1(bank, 26, fn, sfx), \
382 PORT_GP_1(bank, 25, fn, sfx), PORT_GP_1(bank, 24, fn, sfx), \
383 PORT_GP_1(bank, 23, fn, sfx), PORT_GP_1(bank, 22, fn, sfx), \
384 PORT_GP_1(bank, 21, fn, sfx), PORT_GP_1(bank, 20, fn, sfx), \
385 PORT_GP_1(bank, 19, fn, sfx), PORT_GP_1(bank, 18, fn, sfx), \
386 PORT_GP_1(bank, 17, fn, sfx), PORT_GP_1(bank, 16, fn, sfx), \
387 PORT_GP_1(bank, 15, fn, sfx), PORT_GP_1(bank, 14, fn, sfx), \
388 PORT_GP_1(bank, 13, fn, sfx), PORT_GP_1(bank, 12, fn, sfx), \
389 PORT_GP_1(bank, 11, fn, sfx), PORT_GP_1(bank, 10, fn, sfx), \
390 PORT_GP_1(bank, 9, fn, sfx), PORT_GP_1(bank, 8, fn, sfx), \
391 PORT_GP_1(bank, 7, fn, sfx), PORT_GP_1(bank, 6, fn, sfx), \
392 PORT_GP_1(bank, 5, fn, sfx), PORT_GP_1(bank, 4, fn, sfx), \
393 PORT_GP_1(bank, 3, fn, sfx), PORT_GP_1(bank, 2, fn, sfx), \
394 PORT_GP_1(bank, 1, fn, sfx), PORT_GP_1(bank, 0, fn, sfx)
395
396/* GP_ALL(suffix) - Expand to a list of GP_#_#_suffix */
22768fc6 397#define _GP_ALL(bank, pin, name, sfx, cfg) name##_##sfx
e3d93b46
LP
398#define GP_ALL(str) CPU_ALL_PORT(_GP_ALL, str)
399
400/* PINMUX_GPIO_GP_ALL - Expand to a list of sh_pfc_pin entries */
22768fc6 401#define _GP_GPIO(bank, _pin, _name, sfx, cfg) \
61bb3aef 402 { \
9689896c 403 .pin = (bank * 32) + _pin, \
e3d93b46
LP
404 .name = __stringify(_name), \
405 .enum_id = _name##_DATA, \
22768fc6 406 .configs = cfg, \
e3d93b46
LP
407 }
408#define PINMUX_GPIO_GP_ALL() CPU_ALL_PORT(_GP_GPIO, unused)
409
410/* PINMUX_DATA_GP_ALL - Expand to a list of name_DATA, name_FN marks */
22768fc6 411#define _GP_DATA(bank, pin, name, sfx, cfg) PINMUX_DATA(name##_DATA, name##_FN)
e3d93b46
LP
412#define PINMUX_DATA_GP_ALL() CPU_ALL_PORT(_GP_DATA, unused)
413
414/*
415 * PORT style (linear pin space)
416 */
417
3ce0d7eb 418#define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx)
16b915e4
LP
419
420#define PORT_10(pn, fn, pfx, sfx) \
421 PORT_1(pn, fn, pfx##0, sfx), PORT_1(pn+1, fn, pfx##1, sfx), \
422 PORT_1(pn+2, fn, pfx##2, sfx), PORT_1(pn+3, fn, pfx##3, sfx), \
423 PORT_1(pn+4, fn, pfx##4, sfx), PORT_1(pn+5, fn, pfx##5, sfx), \
424 PORT_1(pn+6, fn, pfx##6, sfx), PORT_1(pn+7, fn, pfx##7, sfx), \
425 PORT_1(pn+8, fn, pfx##8, sfx), PORT_1(pn+9, fn, pfx##9, sfx)
426
427#define PORT_90(pn, fn, pfx, sfx) \
428 PORT_10(pn+10, fn, pfx##1, sfx), PORT_10(pn+20, fn, pfx##2, sfx), \
429 PORT_10(pn+30, fn, pfx##3, sfx), PORT_10(pn+40, fn, pfx##4, sfx), \
430 PORT_10(pn+50, fn, pfx##5, sfx), PORT_10(pn+60, fn, pfx##6, sfx), \
431 PORT_10(pn+70, fn, pfx##7, sfx), PORT_10(pn+80, fn, pfx##8, sfx), \
432 PORT_10(pn+90, fn, pfx##9, sfx)
972c3fb6 433
e3d93b46 434/* PORT_ALL(suffix) - Expand to a list of PORT_#_suffix */
3ce0d7eb 435#define _PORT_ALL(pn, pfx, sfx) pfx##_##sfx
e3d93b46 436#define PORT_ALL(str) CPU_ALL_PORT(_PORT_ALL, PORT, str)
972c3fb6 437
e3d93b46 438/* PINMUX_GPIO - Expand to a sh_pfc_pin entry */
9689896c
LP
439#define PINMUX_GPIO(_pin) \
440 [GPIO_##_pin] = { \
441 .pin = (u16)-1, \
8620f394 442 .name = __stringify(GPIO_##_pin), \
9689896c 443 .enum_id = _pin##_DATA, \
e3d93b46
LP
444 }
445
df020272 446/* SH_PFC_PIN_CFG - Expand to a sh_pfc_pin entry (named PORT#) with config */
9689896c 447#define SH_PFC_PIN_CFG(_pin, cfgs) \
df020272 448 { \
9689896c
LP
449 .pin = _pin, \
450 .name = __stringify(PORT##_pin), \
451 .enum_id = PORT##_pin##_DATA, \
df020272
LP
452 .configs = cfgs, \
453 }
454
4f82e3ee
LP
455/* SH_PFC_PIN_NAMED - Expand to a sh_pfc_pin entry with the given name */
456#define SH_PFC_PIN_NAMED(row, col, _name) \
457 { \
458 .pin = PIN_NUMBER(row, col), \
459 .name = __stringify(PIN_##_name), \
460 .configs = SH_PFC_PIN_CFG_NO_GPIO, \
461 }
462
e3d93b46
LP
463/* PINMUX_DATA_ALL - Expand to a list of PORT_name_DATA, PORT_name_FN0,
464 * PORT_name_OUT, PORT_name_IN marks
465 */
3ce0d7eb 466#define _PORT_DATA(pn, pfx, sfx) \
e3d93b46
LP
467 PINMUX_DATA(PORT##pfx##_DATA, PORT##pfx##_FN0, \
468 PORT##pfx##_OUT, PORT##pfx##_IN)
469#define PINMUX_DATA_ALL() CPU_ALL_PORT(_PORT_DATA, , unused)
470
471/* GPIO_FN(name) - Expand to a sh_pfc_pin entry for a function GPIO */
472#define PINMUX_GPIO_FN(gpio, base, data_or_mark) \
473 [gpio - (base)] = { \
474 .name = __stringify(gpio), \
475 .enum_id = data_or_mark, \
476 }
477#define GPIO_FN(str) \
478 PINMUX_GPIO_FN(GPIO_FN_##str, PINMUX_FN_BASE, str##_MARK)
bd8d0cba 479
e3d93b46 480/*
cbc983f8 481 * PORTnCR helper macro for SH-Mobile/R-Mobile
e3d93b46 482 */
9b49139b
KM
483#define PORTCR(nr, reg) \
484 { \
05c5f265
GU
485 PINMUX_CFG_REG_VAR("PORT" nr "CR", reg, 8, 2, 2, 1, 3) {\
486 /* PULMD[1:0], handled by .set_bias() */ \
487 0, 0, 0, 0, \
488 /* IE and OE */ \
489 0, PORT##nr##_OUT, PORT##nr##_IN, 0, \
490 /* SEC, not supported */ \
491 0, 0, \
492 /* PTMD[2:0] */ \
493 PORT##nr##_FN0, PORT##nr##_FN1, \
494 PORT##nr##_FN2, PORT##nr##_FN3, \
495 PORT##nr##_FN4, PORT##nr##_FN5, \
496 PORT##nr##_FN6, PORT##nr##_FN7 \
497 } \
9b49139b 498 }
bd8d0cba 499
69af775a
GU
500/*
501 * GPIO number helper macro for R-Car
502 */
503#define RCAR_GP_PIN(bank, pin) (((bank) * 32) + (pin))
504
fae43399 505#endif /* __SH_PFC_H */
This page took 0.483498 seconds and 5 git commands to generate.