blob: 11bd0d970a5246a378185e77955e957d7b4e7376 [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>
Paul Mundt72c7afa2012-07-10 11:59:29 +090015#include <linux/stringify.h>
Magnus Dammfae43392009-11-27 07:38:01 +000016
Paul Mundt06d56312012-06-21 00:03:41 +090017enum {
18 PINMUX_TYPE_NONE,
Paul Mundt06d56312012-06-21 00:03:41 +090019 PINMUX_TYPE_FUNCTION,
20 PINMUX_TYPE_GPIO,
21 PINMUX_TYPE_OUTPUT,
22 PINMUX_TYPE_INPUT,
Paul Mundt06d56312012-06-21 00:03:41 +090023};
Magnus Dammfae43392009-11-27 07:38:01 +000024
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010025#define SH_PFC_PIN_CFG_INPUT (1 << 0)
26#define SH_PFC_PIN_CFG_OUTPUT (1 << 1)
27#define SH_PFC_PIN_CFG_PULL_UP (1 << 2)
28#define SH_PFC_PIN_CFG_PULL_DOWN (1 << 3)
Laurent Pinchart4f82e3e2013-07-15 21:10:54 +020029#define SH_PFC_PIN_CFG_NO_GPIO (1 << 31)
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010030
Laurent Pincharta3db40a2013-01-02 14:53:37 +010031struct sh_pfc_pin {
Laurent Pinchart96898962013-02-14 00:59:49 +010032 u16 pin;
Laurent Pinchart533743d2013-07-15 13:03:20 +020033 u16 enum_id;
Paul Mundt72c7afa2012-07-10 11:59:29 +090034 const char *name;
Laurent Pinchartc58d9c12013-03-10 16:44:02 +010035 unsigned int configs;
Magnus Dammfae43392009-11-27 07:38:01 +000036};
37
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +010038#define SH_PFC_PIN_GROUP(n) \
39 { \
40 .name = #n, \
41 .pins = n##_pins, \
42 .mux = n##_mux, \
43 .nr_pins = ARRAY_SIZE(n##_pins), \
44 }
45
46struct sh_pfc_pin_group {
47 const char *name;
48 const unsigned int *pins;
49 const unsigned int *mux;
50 unsigned int nr_pins;
51};
52
53#define SH_PFC_FUNCTION(n) \
54 { \
55 .name = #n, \
56 .groups = n##_groups, \
57 .nr_groups = ARRAY_SIZE(n##_groups), \
58 }
59
60struct sh_pfc_function {
61 const char *name;
62 const char * const *groups;
63 unsigned int nr_groups;
64};
65
Laurent Pincharta373ed02012-11-29 13:24:07 +010066struct pinmux_func {
Laurent Pinchart533743d2013-07-15 13:03:20 +020067 u16 enum_id;
Laurent Pincharta373ed02012-11-29 13:24:07 +010068 const char *name;
69};
70
Magnus Dammfae43392009-11-27 07:38:01 +000071struct pinmux_cfg_reg {
72 unsigned long reg, reg_width, field_width;
Laurent Pinchart533743d2013-07-15 13:03:20 +020073 const u16 *enum_ids;
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +010074 const unsigned long *var_field_width;
Magnus Dammfae43392009-11-27 07:38:01 +000075};
76
77#define PINMUX_CFG_REG(name, r, r_width, f_width) \
78 .reg = r, .reg_width = r_width, .field_width = f_width, \
Laurent Pinchart533743d2013-07-15 13:03:20 +020079 .enum_ids = (u16 [(r_width / f_width) * (1 << f_width)])
Magnus Dammf78a26f2011-12-14 01:01:05 +090080
81#define PINMUX_CFG_REG_VAR(name, r, r_width, var_fw0, var_fwn...) \
82 .reg = r, .reg_width = r_width, \
Magnus Dammf78a26f2011-12-14 01:01:05 +090083 .var_field_width = (unsigned long [r_width]) { var_fw0, var_fwn, 0 }, \
Laurent Pinchart533743d2013-07-15 13:03:20 +020084 .enum_ids = (u16 [])
Magnus Dammfae43392009-11-27 07:38:01 +000085
86struct pinmux_data_reg {
Laurent Pinchart51cb2262013-02-16 18:34:32 +010087 unsigned long reg, reg_width;
Laurent Pinchart533743d2013-07-15 13:03:20 +020088 const u16 *enum_ids;
Magnus Dammfae43392009-11-27 07:38:01 +000089};
90
91#define PINMUX_DATA_REG(name, r, r_width) \
92 .reg = r, .reg_width = r_width, \
Laurent Pinchart533743d2013-07-15 13:03:20 +020093 .enum_ids = (u16 [r_width]) \
Magnus Dammfae43392009-11-27 07:38:01 +000094
Magnus Dammad2a8e72011-09-28 16:50:58 +090095struct pinmux_irq {
96 int irq;
Laurent Pinchartc07f54f2013-01-03 14:12:14 +010097 unsigned short *gpios;
Magnus Dammad2a8e72011-09-28 16:50:58 +090098};
99
100#define PINMUX_IRQ(irq_nr, ids...) \
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100101 { .irq = irq_nr, .gpios = (unsigned short []) { ids, 0 } } \
Magnus Dammad2a8e72011-09-28 16:50:58 +0900102
Magnus Dammfae43392009-11-27 07:38:01 +0000103struct pinmux_range {
Laurent Pinchart533743d2013-07-15 13:03:20 +0200104 u16 begin;
105 u16 end;
106 u16 force;
Magnus Dammfae43392009-11-27 07:38:01 +0000107};
108
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100109struct sh_pfc;
110
111struct sh_pfc_soc_operations {
Laurent Pinchart0c151062013-04-21 20:21:57 +0200112 int (*init)(struct sh_pfc *pfc);
113 void (*exit)(struct sh_pfc *pfc);
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100114 unsigned int (*get_bias)(struct sh_pfc *pfc, unsigned int pin);
115 void (*set_bias)(struct sh_pfc *pfc, unsigned int pin,
116 unsigned int bias);
117};
118
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100119struct sh_pfc_soc_info {
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100120 const char *name;
Laurent Pinchartc58d9c12013-03-10 16:44:02 +0100121 const struct sh_pfc_soc_operations *ops;
122
Magnus Dammfae43392009-11-27 07:38:01 +0000123 struct pinmux_range input;
Magnus Dammfae43392009-11-27 07:38:01 +0000124 struct pinmux_range output;
Magnus Dammfae43392009-11-27 07:38:01 +0000125 struct pinmux_range function;
126
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100127 const struct sh_pfc_pin *pins;
Laurent Pinchartcaa5bac2012-11-29 12:24:51 +0100128 unsigned int nr_pins;
Laurent Pinchart3d8d9f12013-01-03 14:33:13 +0100129 const struct sh_pfc_pin_group *groups;
130 unsigned int nr_groups;
131 const struct sh_pfc_function *functions;
132 unsigned int nr_functions;
133
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100134 const struct pinmux_func *func_gpios;
Laurent Pincharta373ed02012-11-29 13:24:07 +0100135 unsigned int nr_func_gpios;
Laurent Pinchartd7a7ca52012-11-28 17:51:00 +0100136
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100137 const struct pinmux_cfg_reg *cfg_regs;
138 const struct pinmux_data_reg *data_regs;
Magnus Dammfae43392009-11-27 07:38:01 +0000139
Laurent Pinchart533743d2013-07-15 13:03:20 +0200140 const u16 *gpio_data;
Magnus Dammfae43392009-11-27 07:38:01 +0000141 unsigned int gpio_data_size;
142
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +0100143 const struct pinmux_irq *gpio_irq;
Magnus Dammad2a8e72011-09-28 16:50:58 +0900144 unsigned int gpio_irq_size;
145
Magnus Damme499ada2011-12-14 01:01:14 +0900146 unsigned long unlock_reg;
Magnus Dammfae43392009-11-27 07:38:01 +0000147};
148
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200149/* -----------------------------------------------------------------------------
150 * Helper macros to create pin and port lists
151 */
152
153/*
154 * sh_pfc_soc_info gpio_data array macros
155 */
156
157#define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
158
159#define PINMUX_IPSR_NOGP(ispr, fn) \
160 PINMUX_DATA(fn##_MARK, FN_##fn)
161#define PINMUX_IPSR_DATA(ipsr, fn) \
162 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr)
163#define PINMUX_IPSR_NOGM(ispr, fn, ms) \
164 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ms)
165#define PINMUX_IPSR_MSEL(ipsr, fn, ms) \
166 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr, FN_##ms)
167#define PINMUX_IPSR_MODSEL_DATA(ipsr, fn, ms) \
168 PINMUX_DATA(fn##_MARK, FN_##ms, FN_##ipsr, FN_##fn)
169
170/*
171 * GP port style (32 ports banks)
172 */
173
174#define PORT_GP_1(bank, pin, fn, sfx) fn(bank, pin, GP_##bank##_##pin, sfx)
175
176#define PORT_GP_32(bank, fn, sfx) \
177 PORT_GP_1(bank, 0, fn, sfx), PORT_GP_1(bank, 1, fn, sfx), \
178 PORT_GP_1(bank, 2, fn, sfx), PORT_GP_1(bank, 3, fn, sfx), \
179 PORT_GP_1(bank, 4, fn, sfx), PORT_GP_1(bank, 5, fn, sfx), \
180 PORT_GP_1(bank, 6, fn, sfx), PORT_GP_1(bank, 7, fn, sfx), \
181 PORT_GP_1(bank, 8, fn, sfx), PORT_GP_1(bank, 9, fn, sfx), \
182 PORT_GP_1(bank, 10, fn, sfx), PORT_GP_1(bank, 11, fn, sfx), \
183 PORT_GP_1(bank, 12, fn, sfx), PORT_GP_1(bank, 13, fn, sfx), \
184 PORT_GP_1(bank, 14, fn, sfx), PORT_GP_1(bank, 15, fn, sfx), \
185 PORT_GP_1(bank, 16, fn, sfx), PORT_GP_1(bank, 17, fn, sfx), \
186 PORT_GP_1(bank, 18, fn, sfx), PORT_GP_1(bank, 19, fn, sfx), \
187 PORT_GP_1(bank, 20, fn, sfx), PORT_GP_1(bank, 21, fn, sfx), \
188 PORT_GP_1(bank, 22, fn, sfx), PORT_GP_1(bank, 23, fn, sfx), \
189 PORT_GP_1(bank, 24, fn, sfx), PORT_GP_1(bank, 25, fn, sfx), \
190 PORT_GP_1(bank, 26, fn, sfx), PORT_GP_1(bank, 27, fn, sfx), \
191 PORT_GP_1(bank, 28, fn, sfx), PORT_GP_1(bank, 29, fn, sfx), \
192 PORT_GP_1(bank, 30, fn, sfx), PORT_GP_1(bank, 31, fn, sfx)
193
194#define PORT_GP_32_REV(bank, fn, sfx) \
195 PORT_GP_1(bank, 31, fn, sfx), PORT_GP_1(bank, 30, fn, sfx), \
196 PORT_GP_1(bank, 29, fn, sfx), PORT_GP_1(bank, 28, fn, sfx), \
197 PORT_GP_1(bank, 27, fn, sfx), PORT_GP_1(bank, 26, fn, sfx), \
198 PORT_GP_1(bank, 25, fn, sfx), PORT_GP_1(bank, 24, fn, sfx), \
199 PORT_GP_1(bank, 23, fn, sfx), PORT_GP_1(bank, 22, fn, sfx), \
200 PORT_GP_1(bank, 21, fn, sfx), PORT_GP_1(bank, 20, fn, sfx), \
201 PORT_GP_1(bank, 19, fn, sfx), PORT_GP_1(bank, 18, fn, sfx), \
202 PORT_GP_1(bank, 17, fn, sfx), PORT_GP_1(bank, 16, fn, sfx), \
203 PORT_GP_1(bank, 15, fn, sfx), PORT_GP_1(bank, 14, fn, sfx), \
204 PORT_GP_1(bank, 13, fn, sfx), PORT_GP_1(bank, 12, fn, sfx), \
205 PORT_GP_1(bank, 11, fn, sfx), PORT_GP_1(bank, 10, fn, sfx), \
206 PORT_GP_1(bank, 9, fn, sfx), PORT_GP_1(bank, 8, fn, sfx), \
207 PORT_GP_1(bank, 7, fn, sfx), PORT_GP_1(bank, 6, fn, sfx), \
208 PORT_GP_1(bank, 5, fn, sfx), PORT_GP_1(bank, 4, fn, sfx), \
209 PORT_GP_1(bank, 3, fn, sfx), PORT_GP_1(bank, 2, fn, sfx), \
210 PORT_GP_1(bank, 1, fn, sfx), PORT_GP_1(bank, 0, fn, sfx)
211
212/* GP_ALL(suffix) - Expand to a list of GP_#_#_suffix */
213#define _GP_ALL(bank, pin, name, sfx) name##_##sfx
214#define GP_ALL(str) CPU_ALL_PORT(_GP_ALL, str)
215
216/* PINMUX_GPIO_GP_ALL - Expand to a list of sh_pfc_pin entries */
Laurent Pinchart96898962013-02-14 00:59:49 +0100217#define _GP_GPIO(bank, _pin, _name, sfx) \
218 [(bank * 32) + _pin] = { \
219 .pin = (bank * 32) + _pin, \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200220 .name = __stringify(_name), \
221 .enum_id = _name##_DATA, \
222 }
223#define PINMUX_GPIO_GP_ALL() CPU_ALL_PORT(_GP_GPIO, unused)
224
225/* PINMUX_DATA_GP_ALL - Expand to a list of name_DATA, name_FN marks */
226#define _GP_DATA(bank, pin, name, sfx) PINMUX_DATA(name##_DATA, name##_FN)
227#define PINMUX_DATA_GP_ALL() CPU_ALL_PORT(_GP_DATA, unused)
228
229/*
230 * PORT style (linear pin space)
231 */
232
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100233#define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800234
Laurent Pinchart16b915e2013-02-14 00:24:32 +0100235#define PORT_10(pn, fn, pfx, sfx) \
236 PORT_1(pn, fn, pfx##0, sfx), PORT_1(pn+1, fn, pfx##1, sfx), \
237 PORT_1(pn+2, fn, pfx##2, sfx), PORT_1(pn+3, fn, pfx##3, sfx), \
238 PORT_1(pn+4, fn, pfx##4, sfx), PORT_1(pn+5, fn, pfx##5, sfx), \
239 PORT_1(pn+6, fn, pfx##6, sfx), PORT_1(pn+7, fn, pfx##7, sfx), \
240 PORT_1(pn+8, fn, pfx##8, sfx), PORT_1(pn+9, fn, pfx##9, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800241
Laurent Pinchart16b915e2013-02-14 00:24:32 +0100242#define PORT_90(pn, fn, pfx, sfx) \
243 PORT_10(pn+10, fn, pfx##1, sfx), PORT_10(pn+20, fn, pfx##2, sfx), \
244 PORT_10(pn+30, fn, pfx##3, sfx), PORT_10(pn+40, fn, pfx##4, sfx), \
245 PORT_10(pn+50, fn, pfx##5, sfx), PORT_10(pn+60, fn, pfx##6, sfx), \
246 PORT_10(pn+70, fn, pfx##7, sfx), PORT_10(pn+80, fn, pfx##8, sfx), \
247 PORT_10(pn+90, fn, pfx##9, sfx)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800248
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200249/* PORT_ALL(suffix) - Expand to a list of PORT_#_suffix */
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100250#define _PORT_ALL(pn, pfx, sfx) pfx##_##sfx
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200251#define PORT_ALL(str) CPU_ALL_PORT(_PORT_ALL, PORT, str)
Kuninori Morimoto972c3fb2011-11-10 18:45:33 -0800252
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200253/* PINMUX_GPIO - Expand to a sh_pfc_pin entry */
Laurent Pinchart96898962013-02-14 00:59:49 +0100254#define PINMUX_GPIO(_pin) \
255 [GPIO_##_pin] = { \
256 .pin = (u16)-1, \
Laurent Pinchart7cbb0e52013-07-15 21:16:25 +0200257 .name = __stringify(name), \
Laurent Pinchart96898962013-02-14 00:59:49 +0100258 .enum_id = _pin##_DATA, \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200259 }
Kuninori Morimotobd8d0cba2011-11-10 18:45:23 -0800260
Laurent Pinchartdf020272013-07-15 17:42:48 +0200261/* SH_PFC_PIN_CFG - Expand to a sh_pfc_pin entry (named PORT#) with config */
Laurent Pinchart96898962013-02-14 00:59:49 +0100262#define SH_PFC_PIN_CFG(_pin, cfgs) \
Laurent Pinchartdf020272013-07-15 17:42:48 +0200263 { \
Laurent Pinchart96898962013-02-14 00:59:49 +0100264 .pin = _pin, \
265 .name = __stringify(PORT##_pin), \
266 .enum_id = PORT##_pin##_DATA, \
Laurent Pinchartdf020272013-07-15 17:42:48 +0200267 .configs = cfgs, \
268 }
269
Laurent Pinchart4f82e3e2013-07-15 21:10:54 +0200270/* SH_PFC_PIN_NAMED - Expand to a sh_pfc_pin entry with the given name */
271#define SH_PFC_PIN_NAMED(row, col, _name) \
272 { \
273 .pin = PIN_NUMBER(row, col), \
274 .name = __stringify(PIN_##_name), \
275 .configs = SH_PFC_PIN_CFG_NO_GPIO, \
276 }
277
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200278/* PINMUX_DATA_ALL - Expand to a list of PORT_name_DATA, PORT_name_FN0,
279 * PORT_name_OUT, PORT_name_IN marks
280 */
Laurent Pinchart3ce0d7e2013-02-14 00:41:57 +0100281#define _PORT_DATA(pn, pfx, sfx) \
Laurent Pincharte3d93b42013-07-15 15:14:22 +0200282 PINMUX_DATA(PORT##pfx##_DATA, PORT##pfx##_FN0, \
283 PORT##pfx##_OUT, PORT##pfx##_IN)
284#define PINMUX_DATA_ALL() CPU_ALL_PORT(_PORT_DATA, , unused)
285
286/* GPIO_FN(name) - Expand to a sh_pfc_pin entry for a function GPIO */
287#define PINMUX_GPIO_FN(gpio, base, data_or_mark) \
288 [gpio - (base)] = { \
289 .name = __stringify(gpio), \
290 .enum_id = data_or_mark, \
291 }
292#define GPIO_FN(str) \
293 PINMUX_GPIO_FN(GPIO_FN_##str, PINMUX_FN_BASE, str##_MARK)
294
295/*
296 * PORTnCR macro
297 */
Kuninori Morimoto9b491392011-11-10 18:45:43 -0800298#define _PCRH(in, in_pd, in_pu, out) \
299 0, (out), (in), 0, \
300 0, 0, 0, 0, \
301 0, 0, (in_pd), 0, \
302 0, 0, (in_pu), 0
303
304#define PORTCR(nr, reg) \
305 { \
306 PINMUX_CFG_REG("PORT" nr "CR", reg, 8, 4) { \
307 _PCRH(PORT##nr##_IN, PORT##nr##_IN_PD, \
308 PORT##nr##_IN_PU, PORT##nr##_OUT), \
309 PORT##nr##_FN0, PORT##nr##_FN1, \
310 PORT##nr##_FN2, PORT##nr##_FN3, \
311 PORT##nr##_FN4, PORT##nr##_FN5, \
312 PORT##nr##_FN6, PORT##nr##_FN7 } \
313 }
Kuninori Morimotobd8d0cba2011-11-10 18:45:23 -0800314
Magnus Dammfae43392009-11-27 07:38:01 +0000315#endif /* __SH_PFC_H */