blob: 15afd49fd4e33b5e72a9fe4b8c618d5ef4d2aa3a [file] [log] [blame]
Magnus Dammfae43392009-11-27 07:38:01 +00001/*
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
Laurent Pinchartbf9f0672013-04-09 14:06:01 +000014#include <linux/bug.h>
Ben Hutchings5b9eaa52015-06-30 17:53:59 +010015#include <linux/pinctrl/pinconf-generic.h>
Paul Mundt72c7afa2012-07-10 11:59:29 +090016#include <linux/stringify.h>
Magnus Dammfae43392009-11-27 07:38:01 +000017
Paul Mundt06d56312012-06-21 00:03:41 +090018enum {
19 PINMUX_TYPE_NONE,
Paul Mundt06d56312012-06-21 00:03:41 +090020 PINMUX_TYPE_FUNCTION,
21 PINMUX_TYPE_GPIO,
22 PINMUX_TYPE_OUTPUT,
23 PINMUX_TYPE_INPUT,
Paul Mundt06d56312012-06-21 00:03:41 +090024};
Magnus Dammfae43392009-11-27 07:38:01 +000025
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010026#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)
Ben Hutchings5b9eaa52015-06-30 17:53:59 +010030#define SH_PFC_PIN_CFG_IO_VOLTAGE (1 << 4)
Laurent Pinchart4f82e3e2013-07-15 21:10:54 +020031#define SH_PFC_PIN_CFG_NO_GPIO (1 << 31)
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010032
Laurent Pincharta3db40a2013-01-02 14:53:37 +010033struct sh_pfc_pin {
Laurent Pinchart96898962013-02-14 00:59:49 +010034 u16 pin;
Laurent Pinchart533743d2013-07-15 13:03:20 +020035 u16 enum_id;
Paul Mundt72c7afa2012-07-10 11:59:29 +090036 const char *name;
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010037 unsigned int configs;
Magnus Dammfae43392009-11-27 07:38:01 +000038};
39
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010040#define SH_PFC_PIN_GROUP(n) \
41 { \
42 .name = #n, \
43 .pins = n##_pins, \
44 .mux = n##_mux, \
45 .nr_pins = ARRAY_SIZE(n##_pins), \
46 }
47
48struct sh_pfc_pin_group {
49 const char *name;
50 const unsigned int *pins;
51 const unsigned int *mux;
52 unsigned int nr_pins;
53};
54
55#define SH_PFC_FUNCTION(n) \
56 { \
57 .name = #n, \
58 .groups = n##_groups, \
59 .nr_groups = ARRAY_SIZE(n##_groups), \
60 }
61
62struct sh_pfc_function {
63 const char *name;
64 const char * const *groups;
65 unsigned int nr_groups;
66};
67
Laurent Pincharta373ed02012-11-29 13:24:07 +010068struct pinmux_func {
Laurent Pinchart533743d2013-07-15 13:03:20 +020069 u16 enum_id;
Laurent Pincharta373ed02012-11-29 13:24:07 +010070 const char *name;
71};
72
Magnus Dammfae43392009-11-27 07:38:01 +000073struct pinmux_cfg_reg {
Geert Uytterhoeven1f34de02015-03-12 11:09:16 +010074 u32 reg;
Geert Uytterhoevendc700712015-03-12 11:09:13 +010075 u8 reg_width, field_width;
Laurent Pinchart533743d2013-07-15 13:03:20 +020076 const u16 *enum_ids;
Geert Uytterhoevendc700712015-03-12 11:09:13 +010077 const u8 *var_field_width;
Magnus Dammfae43392009-11-27 07:38:01 +000078};
79
80#define PINMUX_CFG_REG(name, r, r_width, f_width) \
81 .reg = r, .reg_width = r_width, .field_width = f_width, \
Laurent Pinchart9aecff52013-12-16 20:25:14 +010082 .enum_ids = (const u16 [(r_width / f_width) * (1 << f_width)])
Magnus Dammf78a26f2011-12-14 01:01:05 +090083
84#define PINMUX_CFG_REG_VAR(name, r, r_width, var_fw0, var_fwn...) \
85 .reg = r, .reg_width = r_width, \
Geert Uytterhoevendc700712015-03-12 11:09:13 +010086 .var_field_width = (const u8 [r_width]) \
Laurent Pinchart9aecff52013-12-16 20:25:14 +010087 { var_fw0, var_fwn, 0 }, \
88 .enum_ids = (const u16 [])
Magnus Dammfae43392009-11-27 07:38:01 +000089
90struct pinmux_data_reg {
Geert Uytterhoeven1f34de02015-03-12 11:09:16 +010091 u32 reg;
Geert Uytterhoevendc700712015-03-12 11:09:13 +010092 u8 reg_width;
Laurent Pinchart533743d2013-07-15 13:03:20 +020093 const u16 *enum_ids;
Magnus Dammfae43392009-11-27 07:38:01 +000094};
95
96#define PINMUX_DATA_REG(name, r, r_width) \
97 .reg = r, .reg_width = r_width, \
Laurent Pinchart9aecff52013-12-16 20:25:14 +010098 .enum_ids = (const u16 [r_width]) \
Magnus Dammfae43392009-11-27 07:38:01 +000099
Magnus Dammad2a8e72011-09-28 16:50:58 +0900100struct pinmux_irq {
101 int irq;
Laurent Pinchart6d5bddd2013-12-16 20:25:15 +0100102 const short *gpios;
Magnus Dammad2a8e72011-09-28 16:50:58 +0900103};
104
Laurent Pinchart0e26e8d2014-05-13 13:37:46 +0200105#ifdef CONFIG_ARCH_MULTIPLATFORM
106#define PINMUX_IRQ(irq_nr, ids...) \
107 { .gpios = (const short []) { ids, -1 } }
108#else
Magnus Dammad2a8e72011-09-28 16:50:58 +0900109#define PINMUX_IRQ(irq_nr, ids...) \
Laurent Pinchart6d5bddd2013-12-16 20:25:15 +0100110 { .irq = irq_nr, .gpios = (const short []) { ids, -1 } }
Laurent Pinchart0e26e8d2014-05-13 13:37:46 +0200111#endif
Magnus Dammad2a8e72011-09-28 16:50:58 +0900112
Magnus Dammfae43392009-11-27 07:38:01 +0000113struct pinmux_range {
Laurent Pinchart533743d2013-07-15 13:03:20 +0200114 u16 begin;
115 u16 end;
116 u16 force;
Magnus Dammfae43392009-11-27 07:38:01 +0000117};
118
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100119struct sh_pfc;
120
121struct sh_pfc_soc_operations {
Laurent Pinchart0c151062013-04-21 20:21:57 +0200122 int (*init)(struct sh_pfc *pfc);
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100123 unsigned int (*get_bias)(struct sh_pfc *pfc, unsigned int pin);
124 void (*set_bias)(struct sh_pfc *pfc, unsigned int pin,
125 unsigned int bias);
Ben Hutchings5b9eaa52015-06-30 17:53:59 +0100126 int (*get_io_voltage)(struct sh_pfc *pfc, unsigned int pin);
127 int (*set_io_voltage)(struct sh_pfc *pfc, unsigned int pin,
128 u16 voltage_mV);
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100129};
130
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100131struct sh_pfc_soc_info {
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100132 const char *name;
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100133 const struct sh_pfc_soc_operations *ops;
134
Magnus Dammfae43392009-11-27 07:38:01 +0000135 struct pinmux_range input;
Magnus Dammfae43392009-11-27 07:38:01 +0000136 struct pinmux_range output;
Magnus Dammfae43392009-11-27 07:38:01 +0000137 struct pinmux_range function;
138
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100139 const struct sh_pfc_pin *pins;
Laurent Pinchartcaa5bac2012-11-29 12:24:51 +0100140 unsigned int nr_pins;
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100141 const struct sh_pfc_pin_group *groups;
142 unsigned int nr_groups;
143 const struct sh_pfc_function *functions;
144 unsigned int nr_functions;
145
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100146 const struct pinmux_func *func_gpios;
Laurent Pincharta373ed02012-11-29 13:24:07 +0100147 unsigned int nr_func_gpios;
Laurent Pinchartd7a7ca52012-11-28 17:51:00 +0100148
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100149 const struct pinmux_cfg_reg *cfg_regs;
150 const struct pinmux_data_reg *data_regs;
Magnus Dammfae43392009-11-27 07:38:01 +0000151
Laurent Pinchart533743d2013-07-15 13:03:20 +0200152 const u16 *gpio_data;
Magnus Dammfae43392009-11-27 07:38:01 +0000153 unsigned int gpio_data_size;
154
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100155 const struct pinmux_irq *gpio_irq;
Magnus Dammad2a8e72011-09-28 16:50:58 +0900156 unsigned int gpio_irq_size;
157
Geert Uytterhoeven1f34de02015-03-12 11:09:16 +0100158 u32 unlock_reg;
Magnus Dammfae43392009-11-27 07:38:01 +0000159};
160
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200161/* -----------------------------------------------------------------------------
162 * Helper macros to create pin and port lists
163 */
164
165/*
166 * sh_pfc_soc_info gpio_data array macros
167 */
168
169#define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
170
171#define PINMUX_IPSR_NOGP(ispr, fn) \
172 PINMUX_DATA(fn##_MARK, FN_##fn)
173#define PINMUX_IPSR_DATA(ipsr, fn) \
174 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr)
175#define PINMUX_IPSR_NOGM(ispr, fn, ms) \
176 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ms)
Niklas Söderlund4c9e4732015-01-18 13:20:01 +0100177#define PINMUX_IPSR_NOFN(ipsr, fn, ms) \
178 PINMUX_DATA(fn##_MARK, FN_##ipsr, FN_##ms)
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200179#define PINMUX_IPSR_MSEL(ipsr, fn, ms) \
180 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr, FN_##ms)
181#define PINMUX_IPSR_MODSEL_DATA(ipsr, fn, ms) \
182 PINMUX_DATA(fn##_MARK, FN_##ms, FN_##ipsr, FN_##fn)
183
184/*
185 * GP port style (32 ports banks)
186 */
187
188#define PORT_GP_1(bank, pin, fn, sfx) fn(bank, pin, GP_##bank##_##pin, sfx)
189
190#define PORT_GP_32(bank, fn, sfx) \
191 PORT_GP_1(bank, 0, fn, sfx), PORT_GP_1(bank, 1, fn, sfx), \
192 PORT_GP_1(bank, 2, fn, sfx), PORT_GP_1(bank, 3, fn, sfx), \
193 PORT_GP_1(bank, 4, fn, sfx), PORT_GP_1(bank, 5, fn, sfx), \
194 PORT_GP_1(bank, 6, fn, sfx), PORT_GP_1(bank, 7, fn, sfx), \
195 PORT_GP_1(bank, 8, fn, sfx), PORT_GP_1(bank, 9, fn, sfx), \
196 PORT_GP_1(bank, 10, fn, sfx), PORT_GP_1(bank, 11, fn, sfx), \
197 PORT_GP_1(bank, 12, fn, sfx), PORT_GP_1(bank, 13, fn, sfx), \
198 PORT_GP_1(bank, 14, fn, sfx), PORT_GP_1(bank, 15, fn, sfx), \
199 PORT_GP_1(bank, 16, fn, sfx), PORT_GP_1(bank, 17, fn, sfx), \
200 PORT_GP_1(bank, 18, fn, sfx), PORT_GP_1(bank, 19, fn, sfx), \
201 PORT_GP_1(bank, 20, fn, sfx), PORT_GP_1(bank, 21, fn, sfx), \
202 PORT_GP_1(bank, 22, fn, sfx), PORT_GP_1(bank, 23, fn, sfx), \
203 PORT_GP_1(bank, 24, fn, sfx), PORT_GP_1(bank, 25, fn, sfx), \
204 PORT_GP_1(bank, 26, fn, sfx), PORT_GP_1(bank, 27, fn, sfx), \
205 PORT_GP_1(bank, 28, fn, sfx), PORT_GP_1(bank, 29, fn, sfx), \
206 PORT_GP_1(bank, 30, fn, sfx), PORT_GP_1(bank, 31, fn, sfx)
207
208#define PORT_GP_32_REV(bank, fn, sfx) \
209 PORT_GP_1(bank, 31, fn, sfx), PORT_GP_1(bank, 30, fn, sfx), \
210 PORT_GP_1(bank, 29, fn, sfx), PORT_GP_1(bank, 28, fn, sfx), \
211 PORT_GP_1(bank, 27, fn, sfx), PORT_GP_1(bank, 26, fn, sfx), \
212 PORT_GP_1(bank, 25, fn, sfx), PORT_GP_1(bank, 24, fn, sfx), \
213 PORT_GP_1(bank, 23, fn, sfx), PORT_GP_1(bank, 22, fn, sfx), \
214 PORT_GP_1(bank, 21, fn, sfx), PORT_GP_1(bank, 20, fn, sfx), \
215 PORT_GP_1(bank, 19, fn, sfx), PORT_GP_1(bank, 18, fn, sfx), \
216 PORT_GP_1(bank, 17, fn, sfx), PORT_GP_1(bank, 16, fn, sfx), \
217 PORT_GP_1(bank, 15, fn, sfx), PORT_GP_1(bank, 14, fn, sfx), \
218 PORT_GP_1(bank, 13, fn, sfx), PORT_GP_1(bank, 12, fn, sfx), \
219 PORT_GP_1(bank, 11, fn, sfx), PORT_GP_1(bank, 10, fn, sfx), \
220 PORT_GP_1(bank, 9, fn, sfx), PORT_GP_1(bank, 8, fn, sfx), \
221 PORT_GP_1(bank, 7, fn, sfx), PORT_GP_1(bank, 6, fn, sfx), \
222 PORT_GP_1(bank, 5, fn, sfx), PORT_GP_1(bank, 4, fn, sfx), \
223 PORT_GP_1(bank, 3, fn, sfx), PORT_GP_1(bank, 2, fn, sfx), \
224 PORT_GP_1(bank, 1, fn, sfx), PORT_GP_1(bank, 0, fn, sfx)
225
226/* GP_ALL(suffix) - Expand to a list of GP_#_#_suffix */
227#define _GP_ALL(bank, pin, name, sfx) name##_##sfx
228#define GP_ALL(str) CPU_ALL_PORT(_GP_ALL, str)
229
230/* PINMUX_GPIO_GP_ALL - Expand to a list of sh_pfc_pin entries */
Laurent Pinchart96898962013-02-14 00:59:49 +0100231#define _GP_GPIO(bank, _pin, _name, sfx) \
Sergei Shtylyov61bb3ae2015-06-26 01:40:56 +0300232 { \
Laurent Pinchart96898962013-02-14 00:59:49 +0100233 .pin = (bank * 32) + _pin, \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200234 .name = __stringify(_name), \
235 .enum_id = _name##_DATA, \
236 }
237#define PINMUX_GPIO_GP_ALL() CPU_ALL_PORT(_GP_GPIO, unused)
238
239/* PINMUX_DATA_GP_ALL - Expand to a list of name_DATA, name_FN marks */
240#define _GP_DATA(bank, pin, name, sfx) PINMUX_DATA(name##_DATA, name##_FN)
241#define PINMUX_DATA_GP_ALL() CPU_ALL_PORT(_GP_DATA, unused)
242
243/*
244 * PORT style (linear pin space)
245 */
246
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100247#define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800248
Laurent Pinchart16b915e2013-02-14 00:24:32 +0100249#define PORT_10(pn, fn, pfx, sfx) \
250 PORT_1(pn, fn, pfx##0, sfx), PORT_1(pn+1, fn, pfx##1, sfx), \
251 PORT_1(pn+2, fn, pfx##2, sfx), PORT_1(pn+3, fn, pfx##3, sfx), \
252 PORT_1(pn+4, fn, pfx##4, sfx), PORT_1(pn+5, fn, pfx##5, sfx), \
253 PORT_1(pn+6, fn, pfx##6, sfx), PORT_1(pn+7, fn, pfx##7, sfx), \
254 PORT_1(pn+8, fn, pfx##8, sfx), PORT_1(pn+9, fn, pfx##9, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800255
Laurent Pinchart16b915e2013-02-14 00:24:32 +0100256#define PORT_90(pn, fn, pfx, sfx) \
257 PORT_10(pn+10, fn, pfx##1, sfx), PORT_10(pn+20, fn, pfx##2, sfx), \
258 PORT_10(pn+30, fn, pfx##3, sfx), PORT_10(pn+40, fn, pfx##4, sfx), \
259 PORT_10(pn+50, fn, pfx##5, sfx), PORT_10(pn+60, fn, pfx##6, sfx), \
260 PORT_10(pn+70, fn, pfx##7, sfx), PORT_10(pn+80, fn, pfx##8, sfx), \
261 PORT_10(pn+90, fn, pfx##9, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800262
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200263/* PORT_ALL(suffix) - Expand to a list of PORT_#_suffix */
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100264#define _PORT_ALL(pn, pfx, sfx) pfx##_##sfx
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200265#define PORT_ALL(str) CPU_ALL_PORT(_PORT_ALL, PORT, str)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800266
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200267/* PINMUX_GPIO - Expand to a sh_pfc_pin entry */
Laurent Pinchart96898962013-02-14 00:59:49 +0100268#define PINMUX_GPIO(_pin) \
269 [GPIO_##_pin] = { \
270 .pin = (u16)-1, \
Laurent Pinchart8620f392013-11-26 02:45:34 +0100271 .name = __stringify(GPIO_##_pin), \
Laurent Pinchart96898962013-02-14 00:59:49 +0100272 .enum_id = _pin##_DATA, \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200273 }
Kuninori Morimotobd8d0cba2011-11-10 18:45:23 -0800274
Laurent Pinchartdf020272013-07-15 17:42:48 +0200275/* SH_PFC_PIN_CFG - Expand to a sh_pfc_pin entry (named PORT#) with config */
Laurent Pinchart96898962013-02-14 00:59:49 +0100276#define SH_PFC_PIN_CFG(_pin, cfgs) \
Laurent Pinchartdf020272013-07-15 17:42:48 +0200277 { \
Laurent Pinchart96898962013-02-14 00:59:49 +0100278 .pin = _pin, \
279 .name = __stringify(PORT##_pin), \
280 .enum_id = PORT##_pin##_DATA, \
Laurent Pinchartdf020272013-07-15 17:42:48 +0200281 .configs = cfgs, \
282 }
283
Laurent Pinchart4f82e3e2013-07-15 21:10:54 +0200284/* SH_PFC_PIN_NAMED - Expand to a sh_pfc_pin entry with the given name */
285#define SH_PFC_PIN_NAMED(row, col, _name) \
286 { \
287 .pin = PIN_NUMBER(row, col), \
288 .name = __stringify(PIN_##_name), \
289 .configs = SH_PFC_PIN_CFG_NO_GPIO, \
290 }
291
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200292/* PINMUX_DATA_ALL - Expand to a list of PORT_name_DATA, PORT_name_FN0,
293 * PORT_name_OUT, PORT_name_IN marks
294 */
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100295#define _PORT_DATA(pn, pfx, sfx) \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200296 PINMUX_DATA(PORT##pfx##_DATA, PORT##pfx##_FN0, \
297 PORT##pfx##_OUT, PORT##pfx##_IN)
298#define PINMUX_DATA_ALL() CPU_ALL_PORT(_PORT_DATA, , unused)
299
300/* GPIO_FN(name) - Expand to a sh_pfc_pin entry for a function GPIO */
301#define PINMUX_GPIO_FN(gpio, base, data_or_mark) \
302 [gpio - (base)] = { \
303 .name = __stringify(gpio), \
304 .enum_id = data_or_mark, \
305 }
306#define GPIO_FN(str) \
307 PINMUX_GPIO_FN(GPIO_FN_##str, PINMUX_FN_BASE, str##_MARK)
308
309/*
310 * PORTnCR macro
311 */
Kuninori Morimoto9b491392011-11-10 18:45:43 -0800312#define PORTCR(nr, reg) \
313 { \
Geert Uytterhoeven05c5f262015-02-27 18:38:02 +0100314 PINMUX_CFG_REG_VAR("PORT" nr "CR", reg, 8, 2, 2, 1, 3) {\
315 /* PULMD[1:0], handled by .set_bias() */ \
316 0, 0, 0, 0, \
317 /* IE and OE */ \
318 0, PORT##nr##_OUT, PORT##nr##_IN, 0, \
319 /* SEC, not supported */ \
320 0, 0, \
321 /* PTMD[2:0] */ \
322 PORT##nr##_FN0, PORT##nr##_FN1, \
323 PORT##nr##_FN2, PORT##nr##_FN3, \
324 PORT##nr##_FN4, PORT##nr##_FN5, \
325 PORT##nr##_FN6, PORT##nr##_FN7 \
326 } \
Kuninori Morimoto9b491392011-11-10 18:45:43 -0800327 }
Kuninori Morimotobd8d0cba2011-11-10 18:45:23 -0800328
Magnus Dammfae43392009-11-27 07:38:01 +0000329#endif /* __SH_PFC_H */