blob: f35fd3379a9406aaba60c730e8b8351a000d701f [file] [log] [blame]
Marek Vasut0e8e9892021-04-26 22:04:11 +02001/* SPDX-License-Identifier: GPL-2.0
2 *
Marek Vasut3066a062017-09-15 21:13:55 +02003 * SuperH Pin Function Controller Support
4 *
5 * Copyright (c) 2008 Magnus Damm
Marek Vasut3066a062017-09-15 21:13:55 +02006 */
7
8#ifndef __SH_PFC_H
9#define __SH_PFC_H
10
11#include <linux/stringify.h>
12
13enum {
14 PINMUX_TYPE_NONE,
15 PINMUX_TYPE_FUNCTION,
16 PINMUX_TYPE_GPIO,
17 PINMUX_TYPE_OUTPUT,
18 PINMUX_TYPE_INPUT,
19};
20
Marek Vasut0e8e9892021-04-26 22:04:11 +020021#define SH_PFC_PIN_NONE U16_MAX
22
Marek Vasut3066a062017-09-15 21:13:55 +020023#define SH_PFC_PIN_CFG_INPUT (1 << 0)
24#define SH_PFC_PIN_CFG_OUTPUT (1 << 1)
25#define SH_PFC_PIN_CFG_PULL_UP (1 << 2)
26#define SH_PFC_PIN_CFG_PULL_DOWN (1 << 3)
Marek Vasut0e8e9892021-04-26 22:04:11 +020027#define SH_PFC_PIN_CFG_PULL_UP_DOWN (SH_PFC_PIN_CFG_PULL_UP | \
28 SH_PFC_PIN_CFG_PULL_DOWN)
Marek Vasut3066a062017-09-15 21:13:55 +020029#define SH_PFC_PIN_CFG_IO_VOLTAGE (1 << 4)
30#define SH_PFC_PIN_CFG_DRIVE_STRENGTH (1 << 5)
Marek Vasut0e8e9892021-04-26 22:04:11 +020031
32#define SH_PFC_PIN_VOLTAGE_18_33 (0 << 6)
33#define SH_PFC_PIN_VOLTAGE_25_33 (1 << 6)
Hai Pham9a8aaa32023-02-28 22:37:03 +010034#define SH_PFC_PIN_VOLTAGE_18_25 (2 << 6)
Marek Vasut0e8e9892021-04-26 22:04:11 +020035
36#define SH_PFC_PIN_CFG_IO_VOLTAGE_18_33 (SH_PFC_PIN_CFG_IO_VOLTAGE | \
37 SH_PFC_PIN_VOLTAGE_18_33)
38#define SH_PFC_PIN_CFG_IO_VOLTAGE_25_33 (SH_PFC_PIN_CFG_IO_VOLTAGE | \
39 SH_PFC_PIN_VOLTAGE_25_33)
Hai Pham9a8aaa32023-02-28 22:37:03 +010040#define SH_PFC_PIN_CFG_IO_VOLTAGE_18_25 (SH_PFC_PIN_CFG_IO_VOLTAGE | \
41 SH_PFC_PIN_VOLTAGE_18_25)
Marek Vasut0e8e9892021-04-26 22:04:11 +020042
Marek Vasut3066a062017-09-15 21:13:55 +020043#define SH_PFC_PIN_CFG_NO_GPIO (1 << 31)
44
45struct sh_pfc_pin {
Marek Vasut3066a062017-09-15 21:13:55 +020046 const char *name;
47 unsigned int configs;
Marek Vasut0e8e9892021-04-26 22:04:11 +020048 u16 pin;
49 u16 enum_id;
Marek Vasut3066a062017-09-15 21:13:55 +020050};
51
Marek Vasutd1bc9322023-01-26 21:01:35 +010052#define SH_PFC_PIN_GROUP_ALIAS(alias, _name) { \
53 .name = #alias, \
54 .pins = _name##_pins, \
55 .mux = _name##_mux, \
56 .nr_pins = ARRAY_SIZE(_name##_pins) + \
57 BUILD_BUG_ON_ZERO(sizeof(_name##_pins) != sizeof(_name##_mux)), \
58}
59#define SH_PFC_PIN_GROUP(name) SH_PFC_PIN_GROUP_ALIAS(name, name)
60
61/*
62 * Define a pin group referring to a subset of an array of pins.
63 */
64#define SH_PFC_PIN_GROUP_SUBSET(_name, data, first, n) { \
65 .name = #_name, \
66 .pins = data##_pins + first, \
67 .mux = data##_mux + first, \
68 .nr_pins = n + \
69 BUILD_BUG_ON_ZERO(first + n > ARRAY_SIZE(data##_pins)) + \
70 BUILD_BUG_ON_ZERO(first + n > ARRAY_SIZE(data##_mux)), \
71}
72
73/*
74 * Define a pin group for the data pins of a resizable bus.
75 * An optional 'suffix' argument is accepted, to be used when the same group
76 * can appear on a different set of pins.
77 */
78#define BUS_DATA_PIN_GROUP(base, n, ...) \
79 SH_PFC_PIN_GROUP_SUBSET(base##n##__VA_ARGS__, base##__VA_ARGS__, 0, n)
Marek Vasut3066a062017-09-15 21:13:55 +020080
81struct sh_pfc_pin_group {
82 const char *name;
83 const unsigned int *pins;
84 const unsigned int *mux;
85 unsigned int nr_pins;
86};
87
Marek Vasutd1bc9322023-01-26 21:01:35 +010088#define SH_PFC_FUNCTION(n) { \
89 .name = #n, \
90 .groups = n##_groups, \
91 .nr_groups = ARRAY_SIZE(n##_groups), \
92}
Marek Vasut3066a062017-09-15 21:13:55 +020093
94struct sh_pfc_function {
95 const char *name;
96 const char * const *groups;
97 unsigned int nr_groups;
98};
99
100struct pinmux_func {
101 u16 enum_id;
102 const char *name;
103};
104
105struct pinmux_cfg_reg {
106 u32 reg;
107 u8 reg_width, field_width;
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200108#ifdef DEBUG
109 u16 nr_enum_ids; /* for variable width regs only */
110#define SET_NR_ENUM_IDS(n) .nr_enum_ids = n,
111#else
112#define SET_NR_ENUM_IDS(n)
113#endif
Marek Vasut3066a062017-09-15 21:13:55 +0200114 const u16 *enum_ids;
Marek Vasutd1bc9322023-01-26 21:01:35 +0100115 const s8 *var_field_width;
Marek Vasut3066a062017-09-15 21:13:55 +0200116};
117
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200118#define GROUP(...) __VA_ARGS__
119
Marek Vasut3066a062017-09-15 21:13:55 +0200120/*
121 * Describe a config register consisting of several fields of the same width
122 * - name: Register name (unused, for documentation purposes only)
123 * - r: Physical register address
124 * - r_width: Width of the register (in bits)
125 * - f_width: Width of the fixed-width register fields (in bits)
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200126 * - ids: For each register field (from left to right, i.e. MSB to LSB),
127 * 2^f_width enum IDs must be specified, one for each possible
128 * combination of the register field bit values, all wrapped using
129 * the GROUP() macro.
Marek Vasut3066a062017-09-15 21:13:55 +0200130 */
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200131#define PINMUX_CFG_REG(name, r, r_width, f_width, ids) \
132 .reg = r, .reg_width = r_width, \
133 .field_width = f_width + BUILD_BUG_ON_ZERO(r_width % f_width) + \
134 BUILD_BUG_ON_ZERO(sizeof((const u16 []) { ids }) / sizeof(u16) != \
Marek Vasutd1bc9322023-01-26 21:01:35 +0100135 (r_width / f_width) << f_width), \
136 .enum_ids = (const u16 [(r_width / f_width) << f_width]) { ids }
Marek Vasut3066a062017-09-15 21:13:55 +0200137
138/*
139 * Describe a config register consisting of several fields of different widths
140 * - name: Register name (unused, for documentation purposes only)
141 * - r: Physical register address
142 * - r_width: Width of the register (in bits)
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200143 * - f_widths: List of widths of the register fields (in bits), from left
144 * to right (i.e. MSB to LSB), wrapped using the GROUP() macro.
Marek Vasutd1bc9322023-01-26 21:01:35 +0100145 * Reserved fields are indicated by negating the field width.
146 * - ids: For each non-reserved register field (from left to right, i.e. MSB
147 * to LSB), 2^f_widths[i] enum IDs must be specified, one for each
148 * possible combination of the register field bit values, all wrapped
149 * using the GROUP() macro.
Marek Vasut3066a062017-09-15 21:13:55 +0200150 */
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200151#define PINMUX_CFG_REG_VAR(name, r, r_width, f_widths, ids) \
152 .reg = r, .reg_width = r_width, \
Marek Vasutd1bc9322023-01-26 21:01:35 +0100153 .var_field_width = (const s8 []) { f_widths, 0 }, \
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200154 SET_NR_ENUM_IDS(sizeof((const u16 []) { ids }) / sizeof(u16)) \
155 .enum_ids = (const u16 []) { ids }
Marek Vasut3066a062017-09-15 21:13:55 +0200156
157struct pinmux_drive_reg_field {
158 u16 pin;
159 u8 offset;
160 u8 size;
161};
162
163struct pinmux_drive_reg {
164 u32 reg;
Marek Vasutd1bc9322023-01-26 21:01:35 +0100165 const struct pinmux_drive_reg_field fields[10];
Marek Vasut3066a062017-09-15 21:13:55 +0200166};
167
168#define PINMUX_DRIVE_REG(name, r) \
169 .reg = r, \
170 .fields =
171
Marek Vasutd1bc9322023-01-26 21:01:35 +0100172struct pinmux_bias_reg { /* At least one of puen/pud must exist */
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200173 u32 puen; /* Pull-enable or pull-up control register */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100174 u32 pud; /* Pull-up/down or pull-down control register */
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200175 const u16 pins[32];
176};
177
178#define PINMUX_BIAS_REG(name1, r1, name2, r2) \
179 .puen = r1, \
180 .pud = r2, \
181 .pins =
182
183struct pinmux_ioctrl_reg {
184 u32 reg;
185};
186
Marek Vasut3066a062017-09-15 21:13:55 +0200187struct pinmux_data_reg {
188 u32 reg;
189 u8 reg_width;
190 const u16 *enum_ids;
191};
192
193/*
194 * Describe a data register
195 * - name: Register name (unused, for documentation purposes only)
196 * - r: Physical register address
197 * - r_width: Width of the register (in bits)
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200198 * - ids: For each register bit (from left to right, i.e. MSB to LSB), one
199 * enum ID must be specified, all wrapped using the GROUP() macro.
Marek Vasut3066a062017-09-15 21:13:55 +0200200 */
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200201#define PINMUX_DATA_REG(name, r, r_width, ids) \
202 .reg = r, .reg_width = r_width + \
203 BUILD_BUG_ON_ZERO(sizeof((const u16 []) { ids }) / sizeof(u16) != \
204 r_width), \
205 .enum_ids = (const u16 [r_width]) { ids }
Marek Vasut3066a062017-09-15 21:13:55 +0200206
207struct pinmux_irq {
208 const short *gpios;
209};
210
211/*
212 * Describe the mapping from GPIOs to a single IRQ
213 * - ids...: List of GPIOs that are mapped to the same IRQ
214 */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100215#define PINMUX_IRQ(ids...) { \
216 .gpios = (const short []) { ids, -1 } \
217}
Marek Vasut3066a062017-09-15 21:13:55 +0200218
219struct pinmux_range {
220 u16 begin;
221 u16 end;
222 u16 force;
223};
224
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200225struct sh_pfc_window {
226 phys_addr_t phys;
227 void __iomem *virt;
228 unsigned long size;
Marek Vasut3066a062017-09-15 21:13:55 +0200229};
230
231struct sh_pfc_pin_range;
232
233struct sh_pfc {
234 struct device *dev;
235 const struct sh_pfc_soc_info *info;
236
237 void *regs;
238
239 struct sh_pfc_pin_range *ranges;
240 unsigned int nr_ranges;
241
242 unsigned int nr_gpio_pins;
243
244 struct sh_pfc_chip *gpio;
245};
246
247struct sh_pfc_soc_operations {
248 int (*init)(struct sh_pfc *pfc);
249 unsigned int (*get_bias)(struct sh_pfc *pfc, unsigned int pin);
250 void (*set_bias)(struct sh_pfc *pfc, unsigned int pin,
251 unsigned int bias);
Marek Vasutd1bc9322023-01-26 21:01:35 +0100252 int (*pin_to_pocctrl)(unsigned int pin, u32 *pocctrl);
253 int (*pin_to_portcr)(unsigned int pin);
Marek Vasut3066a062017-09-15 21:13:55 +0200254};
255
256struct sh_pfc_soc_info {
257 const char *name;
258 const struct sh_pfc_soc_operations *ops;
259
260 struct pinmux_range input;
261 struct pinmux_range output;
262 struct pinmux_range function;
263
264 const struct sh_pfc_pin *pins;
265 unsigned int nr_pins;
266 const struct sh_pfc_pin_group *groups;
267 unsigned int nr_groups;
268 const struct sh_pfc_function *functions;
269 unsigned int nr_functions;
270
271 const struct pinmux_cfg_reg *cfg_regs;
272 const struct pinmux_drive_reg *drive_regs;
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200273 const struct pinmux_bias_reg *bias_regs;
274 const struct pinmux_ioctrl_reg *ioctrl_regs;
Marek Vasut3066a062017-09-15 21:13:55 +0200275 const struct pinmux_data_reg *data_regs;
276
277 const u16 *pinmux_data;
278 unsigned int pinmux_data_size;
279
Marek Vasut651d5a72021-04-27 22:03:38 +0200280 u32 unlock_reg; /* can be literal address or mask */
Marek Vasut3066a062017-09-15 21:13:55 +0200281};
282
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200283u32 sh_pfc_read(struct sh_pfc *pfc, u32 reg);
284void sh_pfc_write(struct sh_pfc *pfc, u32 reg, u32 data);
Marek Vasut3066a062017-09-15 21:13:55 +0200285
Marek Vasutd1bc9322023-01-26 21:01:35 +0100286extern const struct sh_pfc_soc_info emev2_pinmux_info;
287extern const struct sh_pfc_soc_info r8a73a4_pinmux_info;
288extern const struct sh_pfc_soc_info r8a7740_pinmux_info;
289extern const struct sh_pfc_soc_info r8a7742_pinmux_info;
290extern const struct sh_pfc_soc_info r8a7743_pinmux_info;
291extern const struct sh_pfc_soc_info r8a7744_pinmux_info;
292extern const struct sh_pfc_soc_info r8a7745_pinmux_info;
293extern const struct sh_pfc_soc_info r8a77470_pinmux_info;
Adam Ford96980fb2020-06-30 09:30:09 -0500294extern const struct sh_pfc_soc_info r8a774a1_pinmux_info;
Biju Dasd1d78882020-10-28 10:34:21 +0000295extern const struct sh_pfc_soc_info r8a774b1_pinmux_info;
Lad Prabhakar53b88b92021-03-15 22:24:04 +0000296extern const struct sh_pfc_soc_info r8a774c0_pinmux_info;
Biju Das121bd002020-10-28 10:34:22 +0000297extern const struct sh_pfc_soc_info r8a774e1_pinmux_info;
Marek Vasutd1bc9322023-01-26 21:01:35 +0100298extern const struct sh_pfc_soc_info r8a7778_pinmux_info;
299extern const struct sh_pfc_soc_info r8a7779_pinmux_info;
Marek Vasutc40f2d62018-01-17 22:18:59 +0100300extern const struct sh_pfc_soc_info r8a7790_pinmux_info;
Marek Vasut06ef9e82018-01-17 17:14:45 +0100301extern const struct sh_pfc_soc_info r8a7791_pinmux_info;
Marek Vasut1ef39302018-01-17 22:29:50 +0100302extern const struct sh_pfc_soc_info r8a7792_pinmux_info;
Marek Vasut06ef9e82018-01-17 17:14:45 +0100303extern const struct sh_pfc_soc_info r8a7793_pinmux_info;
Marek Vasut4dd88d52018-01-17 22:33:59 +0100304extern const struct sh_pfc_soc_info r8a7794_pinmux_info;
Marek Vasutd1bc9322023-01-26 21:01:35 +0100305extern const struct sh_pfc_soc_info r8a77950_pinmux_info;
306extern const struct sh_pfc_soc_info r8a77951_pinmux_info;
307extern const struct sh_pfc_soc_info r8a77960_pinmux_info;
308extern const struct sh_pfc_soc_info r8a77961_pinmux_info;
Marek Vasut72269e02019-03-04 01:32:44 +0100309extern const struct sh_pfc_soc_info r8a77965_pinmux_info;
Marek Vasuta0e11e52017-10-09 20:57:29 +0200310extern const struct sh_pfc_soc_info r8a77970_pinmux_info;
Marek Vasuta6a7f482019-07-29 19:59:44 +0200311extern const struct sh_pfc_soc_info r8a77980_pinmux_info;
Marek Vasut68a77042018-04-26 13:09:20 +0200312extern const struct sh_pfc_soc_info r8a77990_pinmux_info;
Marek Vasut7d35e642017-10-08 20:57:37 +0200313extern const struct sh_pfc_soc_info r8a77995_pinmux_info;
Marek Vasut4dbc6532021-04-27 01:55:54 +0200314extern const struct sh_pfc_soc_info r8a779a0_pinmux_info;
LUU HOAI9b68f5d2023-02-28 22:34:40 +0100315extern const struct sh_pfc_soc_info r8a779f0_pinmux_info;
Hai Pham9a8aaa32023-02-28 22:37:03 +0100316extern const struct sh_pfc_soc_info r8a779g0_pinmux_info;
Marek Vasut88e81ec2019-03-04 22:39:51 +0100317
Marek Vasut3066a062017-09-15 21:13:55 +0200318/* -----------------------------------------------------------------------------
319 * Helper macros to create pin and port lists
320 */
321
322/*
323 * sh_pfc_soc_info pinmux_data array macros
324 */
325
326/*
327 * Describe generic pinmux data
328 * - data_or_mark: *_DATA or *_MARK enum ID
329 * - ids...: List of enum IDs to associate with data_or_mark
330 */
331#define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
332
333/*
334 * Describe a pinmux configuration without GPIO function that needs
335 * configuration in a Peripheral Function Select Register (IPSR)
336 * - ipsr: IPSR field (unused, for documentation purposes only)
337 * - fn: Function name, referring to a field in the IPSR
338 */
339#define PINMUX_IPSR_NOGP(ipsr, fn) \
340 PINMUX_DATA(fn##_MARK, FN_##fn)
341
342/*
343 * Describe a pinmux configuration with GPIO function that needs configuration
344 * in both a Peripheral Function Select Register (IPSR) and in a
345 * GPIO/Peripheral Function Select Register (GPSR)
346 * - ipsr: IPSR field
347 * - fn: Function name, also referring to the IPSR field
348 */
349#define PINMUX_IPSR_GPSR(ipsr, fn) \
350 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr)
351
352/*
353 * Describe a pinmux configuration without GPIO function that needs
354 * configuration in a Peripheral Function Select Register (IPSR), and where the
355 * pinmux function has a representation in a Module Select Register (MOD_SEL).
356 * - ipsr: IPSR field (unused, for documentation purposes only)
357 * - fn: Function name, also referring to the IPSR field
358 * - msel: Module selector
359 */
360#define PINMUX_IPSR_NOGM(ipsr, fn, msel) \
361 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##msel)
362
363/*
364 * Describe a pinmux configuration with GPIO function where the pinmux function
365 * has no representation in a Peripheral Function Select Register (IPSR), but
366 * instead solely depends on a group selection.
367 * - gpsr: GPSR field
368 * - fn: Function name, also referring to the GPSR field
369 * - gsel: Group selector
370 */
371#define PINMUX_IPSR_NOFN(gpsr, fn, gsel) \
372 PINMUX_DATA(fn##_MARK, FN_##gpsr, FN_##gsel)
373
374/*
375 * Describe a pinmux configuration with GPIO function that needs configuration
376 * in both a Peripheral Function Select Register (IPSR) and a GPIO/Peripheral
377 * Function Select Register (GPSR), and where the pinmux function has a
378 * representation in a Module Select Register (MOD_SEL).
379 * - ipsr: IPSR field
380 * - fn: Function name, also referring to the IPSR field
381 * - msel: Module selector
382 */
383#define PINMUX_IPSR_MSEL(ipsr, fn, msel) \
384 PINMUX_DATA(fn##_MARK, FN_##msel, FN_##fn, FN_##ipsr)
385
386/*
Marek Vasut88e81ec2019-03-04 22:39:51 +0100387 * Describe a pinmux configuration similar to PINMUX_IPSR_MSEL, but with
388 * an additional select register that controls physical multiplexing
389 * with another pin.
390 * - ipsr: IPSR field
391 * - fn: Function name, also referring to the IPSR field
392 * - psel: Physical multiplexing selector
393 * - msel: Module selector
394 */
395#define PINMUX_IPSR_PHYS_MSEL(ipsr, fn, psel, msel) \
396 PINMUX_DATA(fn##_MARK, FN_##psel, FN_##msel, FN_##fn, FN_##ipsr)
397
398/*
399 * Describe a pinmux configuration in which a pin is physically multiplexed
400 * with other pins.
Marek Vasut0e8e9892021-04-26 22:04:11 +0200401 * - ipsr: IPSR field
Eugeniu Roscaf0066b02019-07-09 18:27:11 +0200402 * - fn: Function name
Marek Vasut88e81ec2019-03-04 22:39:51 +0100403 * - psel: Physical multiplexing selector
404 */
405#define PINMUX_IPSR_PHYS(ipsr, fn, psel) \
Marek Vasut0e8e9892021-04-26 22:04:11 +0200406 PINMUX_DATA(fn##_MARK, FN_##psel, FN_##ipsr)
Marek Vasut88e81ec2019-03-04 22:39:51 +0100407
408/*
Marek Vasut3066a062017-09-15 21:13:55 +0200409 * Describe a pinmux configuration for a single-function pin with GPIO
410 * capability.
411 * - fn: Function name
412 */
413#define PINMUX_SINGLE(fn) \
414 PINMUX_DATA(fn##_MARK, FN_##fn)
415
416/*
417 * GP port style (32 ports banks)
418 */
419
420#define PORT_GP_CFG_1(bank, pin, fn, sfx, cfg) \
421 fn(bank, pin, GP_##bank##_##pin, sfx, cfg)
422#define PORT_GP_1(bank, pin, fn, sfx) PORT_GP_CFG_1(bank, pin, fn, sfx, 0)
423
Marek Vasut0e8e9892021-04-26 22:04:11 +0200424#define PORT_GP_CFG_2(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200425 PORT_GP_CFG_1(bank, 0, fn, sfx, cfg), \
Marek Vasut0e8e9892021-04-26 22:04:11 +0200426 PORT_GP_CFG_1(bank, 1, fn, sfx, cfg)
427#define PORT_GP_2(bank, fn, sfx) PORT_GP_CFG_2(bank, fn, sfx, 0)
428
429#define PORT_GP_CFG_4(bank, fn, sfx, cfg) \
430 PORT_GP_CFG_2(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200431 PORT_GP_CFG_1(bank, 2, fn, sfx, cfg), \
432 PORT_GP_CFG_1(bank, 3, fn, sfx, cfg)
433#define PORT_GP_4(bank, fn, sfx) PORT_GP_CFG_4(bank, fn, sfx, 0)
434
Marek Vasuta0e11e52017-10-09 20:57:29 +0200435#define PORT_GP_CFG_6(bank, fn, sfx, cfg) \
436 PORT_GP_CFG_4(bank, fn, sfx, cfg), \
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200437 PORT_GP_CFG_1(bank, 4, fn, sfx, cfg), \
438 PORT_GP_CFG_1(bank, 5, fn, sfx, cfg)
Marek Vasuta0e11e52017-10-09 20:57:29 +0200439#define PORT_GP_6(bank, fn, sfx) PORT_GP_CFG_6(bank, fn, sfx, 0)
440
Marek Vasutd1bc9322023-01-26 21:01:35 +0100441#define PORT_GP_CFG_7(bank, fn, sfx, cfg) \
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200442 PORT_GP_CFG_6(bank, fn, sfx, cfg), \
Marek Vasutd1bc9322023-01-26 21:01:35 +0100443 PORT_GP_CFG_1(bank, 6, fn, sfx, cfg)
444#define PORT_GP_7(bank, fn, sfx) PORT_GP_CFG_7(bank, fn, sfx, 0)
445
446#define PORT_GP_CFG_8(bank, fn, sfx, cfg) \
447 PORT_GP_CFG_7(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200448 PORT_GP_CFG_1(bank, 7, fn, sfx, cfg)
449#define PORT_GP_8(bank, fn, sfx) PORT_GP_CFG_8(bank, fn, sfx, 0)
450
451#define PORT_GP_CFG_9(bank, fn, sfx, cfg) \
452 PORT_GP_CFG_8(bank, fn, sfx, cfg), \
453 PORT_GP_CFG_1(bank, 8, fn, sfx, cfg)
454#define PORT_GP_9(bank, fn, sfx) PORT_GP_CFG_9(bank, fn, sfx, 0)
455
456#define PORT_GP_CFG_10(bank, fn, sfx, cfg) \
457 PORT_GP_CFG_9(bank, fn, sfx, cfg), \
458 PORT_GP_CFG_1(bank, 9, fn, sfx, cfg)
459#define PORT_GP_10(bank, fn, sfx) PORT_GP_CFG_10(bank, fn, sfx, 0)
460
Takeshi Kihara3b0548a2018-03-07 15:26:12 +0900461#define PORT_GP_CFG_11(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200462 PORT_GP_CFG_10(bank, fn, sfx, cfg), \
Marek Vasut88e81ec2019-03-04 22:39:51 +0100463 PORT_GP_CFG_1(bank, 10, fn, sfx, cfg)
Takeshi Kihara3b0548a2018-03-07 15:26:12 +0900464#define PORT_GP_11(bank, fn, sfx) PORT_GP_CFG_11(bank, fn, sfx, 0)
465
466#define PORT_GP_CFG_12(bank, fn, sfx, cfg) \
Marek Vasut88e81ec2019-03-04 22:39:51 +0100467 PORT_GP_CFG_11(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200468 PORT_GP_CFG_1(bank, 11, fn, sfx, cfg)
469#define PORT_GP_12(bank, fn, sfx) PORT_GP_CFG_12(bank, fn, sfx, 0)
470
Marek Vasutd1bc9322023-01-26 21:01:35 +0100471#define PORT_GP_CFG_13(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200472 PORT_GP_CFG_12(bank, fn, sfx, cfg), \
Marek Vasutd1bc9322023-01-26 21:01:35 +0100473 PORT_GP_CFG_1(bank, 12, fn, sfx, cfg)
474#define PORT_GP_13(bank, fn, sfx) PORT_GP_CFG_13(bank, fn, sfx, 0)
475
476#define PORT_GP_CFG_14(bank, fn, sfx, cfg) \
477 PORT_GP_CFG_13(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200478 PORT_GP_CFG_1(bank, 13, fn, sfx, cfg)
479#define PORT_GP_14(bank, fn, sfx) PORT_GP_CFG_14(bank, fn, sfx, 0)
480
481#define PORT_GP_CFG_15(bank, fn, sfx, cfg) \
482 PORT_GP_CFG_14(bank, fn, sfx, cfg), \
483 PORT_GP_CFG_1(bank, 14, fn, sfx, cfg)
484#define PORT_GP_15(bank, fn, sfx) PORT_GP_CFG_15(bank, fn, sfx, 0)
485
486#define PORT_GP_CFG_16(bank, fn, sfx, cfg) \
487 PORT_GP_CFG_15(bank, fn, sfx, cfg), \
488 PORT_GP_CFG_1(bank, 15, fn, sfx, cfg)
489#define PORT_GP_16(bank, fn, sfx) PORT_GP_CFG_16(bank, fn, sfx, 0)
490
491#define PORT_GP_CFG_17(bank, fn, sfx, cfg) \
492 PORT_GP_CFG_16(bank, fn, sfx, cfg), \
493 PORT_GP_CFG_1(bank, 16, fn, sfx, cfg)
494#define PORT_GP_17(bank, fn, sfx) PORT_GP_CFG_17(bank, fn, sfx, 0)
495
496#define PORT_GP_CFG_18(bank, fn, sfx, cfg) \
497 PORT_GP_CFG_17(bank, fn, sfx, cfg), \
498 PORT_GP_CFG_1(bank, 17, fn, sfx, cfg)
499#define PORT_GP_18(bank, fn, sfx) PORT_GP_CFG_18(bank, fn, sfx, 0)
500
Marek Vasutd1bc9322023-01-26 21:01:35 +0100501#define PORT_GP_CFG_19(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200502 PORT_GP_CFG_18(bank, fn, sfx, cfg), \
Marek Vasutd1bc9322023-01-26 21:01:35 +0100503 PORT_GP_CFG_1(bank, 18, fn, sfx, cfg)
504#define PORT_GP_19(bank, fn, sfx) PORT_GP_CFG_19(bank, fn, sfx, 0)
505
506#define PORT_GP_CFG_20(bank, fn, sfx, cfg) \
507 PORT_GP_CFG_19(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200508 PORT_GP_CFG_1(bank, 19, fn, sfx, cfg)
509#define PORT_GP_20(bank, fn, sfx) PORT_GP_CFG_20(bank, fn, sfx, 0)
510
511#define PORT_GP_CFG_21(bank, fn, sfx, cfg) \
512 PORT_GP_CFG_20(bank, fn, sfx, cfg), \
513 PORT_GP_CFG_1(bank, 20, fn, sfx, cfg)
514#define PORT_GP_21(bank, fn, sfx) PORT_GP_CFG_21(bank, fn, sfx, 0)
515
Marek Vasuta0e11e52017-10-09 20:57:29 +0200516#define PORT_GP_CFG_22(bank, fn, sfx, cfg) \
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200517 PORT_GP_CFG_21(bank, fn, sfx, cfg), \
518 PORT_GP_CFG_1(bank, 21, fn, sfx, cfg)
Marek Vasuta0e11e52017-10-09 20:57:29 +0200519#define PORT_GP_22(bank, fn, sfx) PORT_GP_CFG_22(bank, fn, sfx, 0)
520
Marek Vasut3066a062017-09-15 21:13:55 +0200521#define PORT_GP_CFG_23(bank, fn, sfx, cfg) \
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200522 PORT_GP_CFG_22(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200523 PORT_GP_CFG_1(bank, 22, fn, sfx, cfg)
524#define PORT_GP_23(bank, fn, sfx) PORT_GP_CFG_23(bank, fn, sfx, 0)
525
526#define PORT_GP_CFG_24(bank, fn, sfx, cfg) \
527 PORT_GP_CFG_23(bank, fn, sfx, cfg), \
528 PORT_GP_CFG_1(bank, 23, fn, sfx, cfg)
529#define PORT_GP_24(bank, fn, sfx) PORT_GP_CFG_24(bank, fn, sfx, 0)
530
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200531#define PORT_GP_CFG_25(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200532 PORT_GP_CFG_24(bank, fn, sfx, cfg), \
Marek Vasuteb13e0f2018-06-10 16:05:48 +0200533 PORT_GP_CFG_1(bank, 24, fn, sfx, cfg)
534#define PORT_GP_25(bank, fn, sfx) PORT_GP_CFG_25(bank, fn, sfx, 0)
535
536#define PORT_GP_CFG_26(bank, fn, sfx, cfg) \
537 PORT_GP_CFG_25(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200538 PORT_GP_CFG_1(bank, 25, fn, sfx, cfg)
539#define PORT_GP_26(bank, fn, sfx) PORT_GP_CFG_26(bank, fn, sfx, 0)
540
Marek Vasut0e8e9892021-04-26 22:04:11 +0200541#define PORT_GP_CFG_27(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200542 PORT_GP_CFG_26(bank, fn, sfx, cfg), \
Marek Vasut0e8e9892021-04-26 22:04:11 +0200543 PORT_GP_CFG_1(bank, 26, fn, sfx, cfg)
544#define PORT_GP_27(bank, fn, sfx) PORT_GP_CFG_27(bank, fn, sfx, 0)
545
546#define PORT_GP_CFG_28(bank, fn, sfx, cfg) \
547 PORT_GP_CFG_27(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200548 PORT_GP_CFG_1(bank, 27, fn, sfx, cfg)
549#define PORT_GP_28(bank, fn, sfx) PORT_GP_CFG_28(bank, fn, sfx, 0)
550
551#define PORT_GP_CFG_29(bank, fn, sfx, cfg) \
552 PORT_GP_CFG_28(bank, fn, sfx, cfg), \
553 PORT_GP_CFG_1(bank, 28, fn, sfx, cfg)
554#define PORT_GP_29(bank, fn, sfx) PORT_GP_CFG_29(bank, fn, sfx, 0)
555
556#define PORT_GP_CFG_30(bank, fn, sfx, cfg) \
557 PORT_GP_CFG_29(bank, fn, sfx, cfg), \
558 PORT_GP_CFG_1(bank, 29, fn, sfx, cfg)
559#define PORT_GP_30(bank, fn, sfx) PORT_GP_CFG_30(bank, fn, sfx, 0)
560
Marek Vasut0e8e9892021-04-26 22:04:11 +0200561#define PORT_GP_CFG_31(bank, fn, sfx, cfg) \
Marek Vasut3066a062017-09-15 21:13:55 +0200562 PORT_GP_CFG_30(bank, fn, sfx, cfg), \
Marek Vasut0e8e9892021-04-26 22:04:11 +0200563 PORT_GP_CFG_1(bank, 30, fn, sfx, cfg)
564#define PORT_GP_31(bank, fn, sfx) PORT_GP_CFG_31(bank, fn, sfx, 0)
565
566#define PORT_GP_CFG_32(bank, fn, sfx, cfg) \
567 PORT_GP_CFG_31(bank, fn, sfx, cfg), \
Marek Vasut3066a062017-09-15 21:13:55 +0200568 PORT_GP_CFG_1(bank, 31, fn, sfx, cfg)
569#define PORT_GP_32(bank, fn, sfx) PORT_GP_CFG_32(bank, fn, sfx, 0)
570
571#define PORT_GP_32_REV(bank, fn, sfx) \
572 PORT_GP_1(bank, 31, fn, sfx), PORT_GP_1(bank, 30, fn, sfx), \
573 PORT_GP_1(bank, 29, fn, sfx), PORT_GP_1(bank, 28, fn, sfx), \
574 PORT_GP_1(bank, 27, fn, sfx), PORT_GP_1(bank, 26, fn, sfx), \
575 PORT_GP_1(bank, 25, fn, sfx), PORT_GP_1(bank, 24, fn, sfx), \
576 PORT_GP_1(bank, 23, fn, sfx), PORT_GP_1(bank, 22, fn, sfx), \
577 PORT_GP_1(bank, 21, fn, sfx), PORT_GP_1(bank, 20, fn, sfx), \
578 PORT_GP_1(bank, 19, fn, sfx), PORT_GP_1(bank, 18, fn, sfx), \
579 PORT_GP_1(bank, 17, fn, sfx), PORT_GP_1(bank, 16, fn, sfx), \
580 PORT_GP_1(bank, 15, fn, sfx), PORT_GP_1(bank, 14, fn, sfx), \
581 PORT_GP_1(bank, 13, fn, sfx), PORT_GP_1(bank, 12, fn, sfx), \
582 PORT_GP_1(bank, 11, fn, sfx), PORT_GP_1(bank, 10, fn, sfx), \
583 PORT_GP_1(bank, 9, fn, sfx), PORT_GP_1(bank, 8, fn, sfx), \
584 PORT_GP_1(bank, 7, fn, sfx), PORT_GP_1(bank, 6, fn, sfx), \
585 PORT_GP_1(bank, 5, fn, sfx), PORT_GP_1(bank, 4, fn, sfx), \
586 PORT_GP_1(bank, 3, fn, sfx), PORT_GP_1(bank, 2, fn, sfx), \
587 PORT_GP_1(bank, 1, fn, sfx), PORT_GP_1(bank, 0, fn, sfx)
588
589/* GP_ALL(suffix) - Expand to a list of GP_#_#_suffix */
590#define _GP_ALL(bank, pin, name, sfx, cfg) name##_##sfx
Marek Vasut0e8e9892021-04-26 22:04:11 +0200591#define GP_ALL(str) CPU_ALL_GP(_GP_ALL, str)
Marek Vasut3066a062017-09-15 21:13:55 +0200592
593/* PINMUX_GPIO_GP_ALL - Expand to a list of sh_pfc_pin entries */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100594#define _GP_GPIO(bank, _pin, _name, sfx, cfg) { \
595 .pin = (bank * 32) + _pin, \
596 .name = __stringify(_name), \
597 .enum_id = _name##_DATA, \
598 .configs = cfg, \
599}
Marek Vasut0e8e9892021-04-26 22:04:11 +0200600#define PINMUX_GPIO_GP_ALL() CPU_ALL_GP(_GP_GPIO, unused)
Marek Vasut3066a062017-09-15 21:13:55 +0200601
602/* PINMUX_DATA_GP_ALL - Expand to a list of name_DATA, name_FN marks */
603#define _GP_DATA(bank, pin, name, sfx, cfg) PINMUX_DATA(name##_DATA, name##_FN)
Marek Vasut0e8e9892021-04-26 22:04:11 +0200604#define PINMUX_DATA_GP_ALL() CPU_ALL_GP(_GP_DATA, unused)
Marek Vasut3066a062017-09-15 21:13:55 +0200605
606/*
Marek Vasut0e8e9892021-04-26 22:04:11 +0200607 * GP_ASSIGN_LAST() - Expand to an enum definition for the last GP pin
608 *
609 * The largest GP pin index is obtained by taking the size of a union,
610 * containing one array per GP pin, sized by the corresponding pin index.
611 * As the fields in the CPU_ALL_GP() macro definition are separated by commas,
612 * while the members of a union must be terminated by semicolons, the commas
613 * are absorbed by wrapping them inside dummy attributes.
614 */
615#define _GP_ENTRY(bank, pin, name, sfx, cfg) \
616 deprecated)); char name[(bank * 32) + pin] __attribute__((deprecated
617#define GP_ASSIGN_LAST() \
618 GP_LAST = sizeof(union { \
619 char dummy[0] __attribute__((deprecated, \
620 CPU_ALL_GP(_GP_ENTRY, unused), \
621 deprecated)); \
622 })
623
624/*
Marek Vasut3066a062017-09-15 21:13:55 +0200625 * PORT style (linear pin space)
626 */
627
628#define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx)
629
630#define PORT_10(pn, fn, pfx, sfx) \
631 PORT_1(pn, fn, pfx##0, sfx), PORT_1(pn+1, fn, pfx##1, sfx), \
632 PORT_1(pn+2, fn, pfx##2, sfx), PORT_1(pn+3, fn, pfx##3, sfx), \
633 PORT_1(pn+4, fn, pfx##4, sfx), PORT_1(pn+5, fn, pfx##5, sfx), \
634 PORT_1(pn+6, fn, pfx##6, sfx), PORT_1(pn+7, fn, pfx##7, sfx), \
635 PORT_1(pn+8, fn, pfx##8, sfx), PORT_1(pn+9, fn, pfx##9, sfx)
636
637#define PORT_90(pn, fn, pfx, sfx) \
638 PORT_10(pn+10, fn, pfx##1, sfx), PORT_10(pn+20, fn, pfx##2, sfx), \
639 PORT_10(pn+30, fn, pfx##3, sfx), PORT_10(pn+40, fn, pfx##4, sfx), \
640 PORT_10(pn+50, fn, pfx##5, sfx), PORT_10(pn+60, fn, pfx##6, sfx), \
641 PORT_10(pn+70, fn, pfx##7, sfx), PORT_10(pn+80, fn, pfx##8, sfx), \
642 PORT_10(pn+90, fn, pfx##9, sfx)
643
644/* PORT_ALL(suffix) - Expand to a list of PORT_#_suffix */
645#define _PORT_ALL(pn, pfx, sfx) pfx##_##sfx
646#define PORT_ALL(str) CPU_ALL_PORT(_PORT_ALL, PORT, str)
647
648/* PINMUX_GPIO - Expand to a sh_pfc_pin entry */
649#define PINMUX_GPIO(_pin) \
650 [GPIO_##_pin] = { \
651 .pin = (u16)-1, \
652 .name = __stringify(GPIO_##_pin), \
653 .enum_id = _pin##_DATA, \
654 }
655
656/* SH_PFC_PIN_CFG - Expand to a sh_pfc_pin entry (named PORT#) with config */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100657#define SH_PFC_PIN_CFG(_pin, cfgs) { \
658 .pin = _pin, \
659 .name = __stringify(PORT##_pin), \
660 .enum_id = PORT##_pin##_DATA, \
661 .configs = cfgs, \
662}
Marek Vasut3066a062017-09-15 21:13:55 +0200663
Marek Vasut3066a062017-09-15 21:13:55 +0200664/* PINMUX_DATA_ALL - Expand to a list of PORT_name_DATA, PORT_name_FN0,
665 * PORT_name_OUT, PORT_name_IN marks
666 */
667#define _PORT_DATA(pn, pfx, sfx) \
668 PINMUX_DATA(PORT##pfx##_DATA, PORT##pfx##_FN0, \
669 PORT##pfx##_OUT, PORT##pfx##_IN)
670#define PINMUX_DATA_ALL() CPU_ALL_PORT(_PORT_DATA, , unused)
671
Marek Vasut0e8e9892021-04-26 22:04:11 +0200672/*
673 * PORT_ASSIGN_LAST() - Expand to an enum definition for the last PORT pin
674 *
675 * The largest PORT pin index is obtained by taking the size of a union,
676 * containing one array per PORT pin, sized by the corresponding pin index.
677 * As the fields in the CPU_ALL_PORT() macro definition are separated by
678 * commas, while the members of a union must be terminated by semicolons, the
679 * commas are absorbed by wrapping them inside dummy attributes.
680 */
681#define _PORT_ENTRY(pn, pfx, sfx) \
682 deprecated)); char pfx[pn] __attribute__((deprecated
683#define PORT_ASSIGN_LAST() \
684 PORT_LAST = sizeof(union { \
685 char dummy[0] __attribute__((deprecated, \
686 CPU_ALL_PORT(_PORT_ENTRY, PORT, unused), \
687 deprecated)); \
688 })
689
Marek Vasut3066a062017-09-15 21:13:55 +0200690/* GPIO_FN(name) - Expand to a sh_pfc_pin entry for a function GPIO */
691#define PINMUX_GPIO_FN(gpio, base, data_or_mark) \
692 [gpio - (base)] = { \
693 .name = __stringify(gpio), \
694 .enum_id = data_or_mark, \
695 }
696#define GPIO_FN(str) \
697 PINMUX_GPIO_FN(GPIO_FN_##str, PINMUX_FN_BASE, str##_MARK)
698
699/*
Marek Vasut0e8e9892021-04-26 22:04:11 +0200700 * Pins not associated with a GPIO port
701 */
702
703#define PIN_NOGP_CFG(pin, name, fn, cfg) fn(pin, name, cfg)
704#define PIN_NOGP(pin, name, fn) fn(pin, name, 0)
705
706/* NOGP_ALL - Expand to a list of PIN_id */
707#define _NOGP_ALL(pin, name, cfg) PIN_##pin
708#define NOGP_ALL() CPU_ALL_NOGP(_NOGP_ALL)
709
710/* PINMUX_NOGP_ALL - Expand to a list of sh_pfc_pin entries */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100711#define _NOGP_PINMUX(_pin, _name, cfg) { \
712 .pin = PIN_##_pin, \
713 .name = "PIN_" _name, \
714 .configs = SH_PFC_PIN_CFG_NO_GPIO | cfg, \
715}
Marek Vasut0e8e9892021-04-26 22:04:11 +0200716#define PINMUX_NOGP_ALL() CPU_ALL_NOGP(_NOGP_PINMUX)
717
718/*
Marek Vasut3066a062017-09-15 21:13:55 +0200719 * PORTnCR helper macro for SH-Mobile/R-Mobile
720 */
Marek Vasutd1bc9322023-01-26 21:01:35 +0100721#define PORTCR(nr, reg) { \
722 PINMUX_CFG_REG_VAR("PORT" nr "CR", reg, 8, GROUP(-2, 2, -1, 3), \
723 GROUP( \
724 /* PULMD[1:0], handled by .set_bias() */ \
725 /* IE and OE */ \
726 0, PORT##nr##_OUT, PORT##nr##_IN, 0, \
727 /* SEC, not supported */ \
728 /* PTMD[2:0] */ \
729 PORT##nr##_FN0, PORT##nr##_FN1, \
730 PORT##nr##_FN2, PORT##nr##_FN3, \
731 PORT##nr##_FN4, PORT##nr##_FN5, \
732 PORT##nr##_FN6, PORT##nr##_FN7 \
733 )) \
734}
Marek Vasut3066a062017-09-15 21:13:55 +0200735
736/*
737 * GPIO number helper macro for R-Car
738 */
739#define RCAR_GP_PIN(bank, pin) (((bank) * 32) + (pin))
740
Marek Vasutd1bc9322023-01-26 21:01:35 +0100741/*
742 * Bias helpers
743 */
744const struct pinmux_bias_reg *
745rcar_pin_to_bias_reg(const struct sh_pfc_soc_info *info, unsigned int pin,
746 unsigned int *bit);
747unsigned int rcar_pinmux_get_bias(struct sh_pfc *pfc, unsigned int pin);
748void rcar_pinmux_set_bias(struct sh_pfc *pfc, unsigned int pin,
749 unsigned int bias);
750
Marek Vasut3066a062017-09-15 21:13:55 +0200751#endif /* __SH_PFC_H */