tuntap: switch to use rtnl_dereference()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pinctrl / mvebu / pinctrl-dove.c
blob750dea78f53a401f10800cc94bd9d9596195041b
1 /*
2 * Marvell Dove pinctrl driver based on mvebu pinctrl core
4 * Author: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/err.h>
13 #include <linux/init.h>
14 #include <linux/io.h>
15 #include <linux/module.h>
16 #include <linux/bitops.h>
17 #include <linux/platform_device.h>
18 #include <linux/clk.h>
19 #include <linux/of.h>
20 #include <linux/of_device.h>
21 #include <linux/pinctrl/pinctrl.h>
23 #include "pinctrl-mvebu.h"
25 #define DOVE_SB_REGS_VIRT_BASE IOMEM(0xfde00000)
26 #define DOVE_MPP_VIRT_BASE (DOVE_SB_REGS_VIRT_BASE + 0xd0200)
27 #define DOVE_PMU_MPP_GENERAL_CTRL (DOVE_MPP_VIRT_BASE + 0x10)
28 #define DOVE_AU0_AC97_SEL BIT(16)
29 #define DOVE_GLOBAL_CONFIG_1 (DOVE_SB_REGS_VIRT_BASE + 0xe802C)
30 #define DOVE_TWSI_ENABLE_OPTION1 BIT(7)
31 #define DOVE_GLOBAL_CONFIG_2 (DOVE_SB_REGS_VIRT_BASE + 0xe8030)
32 #define DOVE_TWSI_ENABLE_OPTION2 BIT(20)
33 #define DOVE_TWSI_ENABLE_OPTION3 BIT(21)
34 #define DOVE_TWSI_OPTION3_GPIO BIT(22)
35 #define DOVE_SSP_CTRL_STATUS_1 (DOVE_SB_REGS_VIRT_BASE + 0xe8034)
36 #define DOVE_SSP_ON_AU1 BIT(0)
37 #define DOVE_MPP_GENERAL_VIRT_BASE (DOVE_SB_REGS_VIRT_BASE + 0xe803c)
38 #define DOVE_AU1_SPDIFO_GPIO_EN BIT(1)
39 #define DOVE_NAND_GPIO_EN BIT(0)
40 #define DOVE_GPIO_LO_VIRT_BASE (DOVE_SB_REGS_VIRT_BASE + 0xd0400)
41 #define DOVE_MPP_CTRL4_VIRT_BASE (DOVE_GPIO_LO_VIRT_BASE + 0x40)
42 #define DOVE_SPI_GPIO_SEL BIT(5)
43 #define DOVE_UART1_GPIO_SEL BIT(4)
44 #define DOVE_AU1_GPIO_SEL BIT(3)
45 #define DOVE_CAM_GPIO_SEL BIT(2)
46 #define DOVE_SD1_GPIO_SEL BIT(1)
47 #define DOVE_SD0_GPIO_SEL BIT(0)
49 #define MPPS_PER_REG 8
50 #define MPP_BITS 4
51 #define MPP_MASK 0xf
53 #define CONFIG_PMU BIT(4)
55 static int dove_pmu_mpp_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
56 unsigned long *config)
58 unsigned off = (ctrl->pid / MPPS_PER_REG) * MPP_BITS;
59 unsigned shift = (ctrl->pid % MPPS_PER_REG) * MPP_BITS;
60 unsigned long pmu = readl(DOVE_PMU_MPP_GENERAL_CTRL);
61 unsigned long mpp = readl(DOVE_MPP_VIRT_BASE + off);
63 if (pmu & (1 << ctrl->pid))
64 *config = CONFIG_PMU;
65 else
66 *config = (mpp >> shift) & MPP_MASK;
67 return 0;
70 static int dove_pmu_mpp_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
71 unsigned long config)
73 unsigned off = (ctrl->pid / MPPS_PER_REG) * MPP_BITS;
74 unsigned shift = (ctrl->pid % MPPS_PER_REG) * MPP_BITS;
75 unsigned long pmu = readl(DOVE_PMU_MPP_GENERAL_CTRL);
76 unsigned long mpp = readl(DOVE_MPP_VIRT_BASE + off);
78 if (config == CONFIG_PMU)
79 writel(pmu | (1 << ctrl->pid), DOVE_PMU_MPP_GENERAL_CTRL);
80 else {
81 writel(pmu & ~(1 << ctrl->pid), DOVE_PMU_MPP_GENERAL_CTRL);
82 mpp &= ~(MPP_MASK << shift);
83 mpp |= config << shift;
84 writel(mpp, DOVE_MPP_VIRT_BASE + off);
86 return 0;
89 static int dove_mpp4_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
90 unsigned long *config)
92 unsigned long mpp4 = readl(DOVE_MPP_CTRL4_VIRT_BASE);
93 unsigned long mask;
95 switch (ctrl->pid) {
96 case 24: /* mpp_camera */
97 mask = DOVE_CAM_GPIO_SEL;
98 break;
99 case 40: /* mpp_sdio0 */
100 mask = DOVE_SD0_GPIO_SEL;
101 break;
102 case 46: /* mpp_sdio1 */
103 mask = DOVE_SD1_GPIO_SEL;
104 break;
105 case 58: /* mpp_spi0 */
106 mask = DOVE_SPI_GPIO_SEL;
107 break;
108 case 62: /* mpp_uart1 */
109 mask = DOVE_UART1_GPIO_SEL;
110 break;
111 default:
112 return -EINVAL;
115 *config = ((mpp4 & mask) != 0);
117 return 0;
120 static int dove_mpp4_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
121 unsigned long config)
123 unsigned long mpp4 = readl(DOVE_MPP_CTRL4_VIRT_BASE);
124 unsigned long mask;
126 switch (ctrl->pid) {
127 case 24: /* mpp_camera */
128 mask = DOVE_CAM_GPIO_SEL;
129 break;
130 case 40: /* mpp_sdio0 */
131 mask = DOVE_SD0_GPIO_SEL;
132 break;
133 case 46: /* mpp_sdio1 */
134 mask = DOVE_SD1_GPIO_SEL;
135 break;
136 case 58: /* mpp_spi0 */
137 mask = DOVE_SPI_GPIO_SEL;
138 break;
139 case 62: /* mpp_uart1 */
140 mask = DOVE_UART1_GPIO_SEL;
141 break;
142 default:
143 return -EINVAL;
146 mpp4 &= ~mask;
147 if (config)
148 mpp4 |= mask;
150 writel(mpp4, DOVE_MPP_CTRL4_VIRT_BASE);
152 return 0;
155 static int dove_nand_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
156 unsigned long *config)
158 unsigned long gmpp = readl(DOVE_MPP_GENERAL_VIRT_BASE);
160 *config = ((gmpp & DOVE_NAND_GPIO_EN) != 0);
162 return 0;
165 static int dove_nand_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
166 unsigned long config)
168 unsigned long gmpp = readl(DOVE_MPP_GENERAL_VIRT_BASE);
170 gmpp &= ~DOVE_NAND_GPIO_EN;
171 if (config)
172 gmpp |= DOVE_NAND_GPIO_EN;
174 writel(gmpp, DOVE_MPP_GENERAL_VIRT_BASE);
176 return 0;
179 static int dove_audio0_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
180 unsigned long *config)
182 unsigned long pmu = readl(DOVE_PMU_MPP_GENERAL_CTRL);
184 *config = ((pmu & DOVE_AU0_AC97_SEL) != 0);
186 return 0;
189 static int dove_audio0_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
190 unsigned long config)
192 unsigned long pmu = readl(DOVE_PMU_MPP_GENERAL_CTRL);
194 pmu &= ~DOVE_AU0_AC97_SEL;
195 if (config)
196 pmu |= DOVE_AU0_AC97_SEL;
197 writel(pmu, DOVE_PMU_MPP_GENERAL_CTRL);
199 return 0;
202 static int dove_audio1_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
203 unsigned long *config)
205 unsigned long mpp4 = readl(DOVE_MPP_CTRL4_VIRT_BASE);
206 unsigned long sspc1 = readl(DOVE_SSP_CTRL_STATUS_1);
207 unsigned long gmpp = readl(DOVE_MPP_GENERAL_VIRT_BASE);
208 unsigned long gcfg2 = readl(DOVE_GLOBAL_CONFIG_2);
210 *config = 0;
211 if (mpp4 & DOVE_AU1_GPIO_SEL)
212 *config |= BIT(3);
213 if (sspc1 & DOVE_SSP_ON_AU1)
214 *config |= BIT(2);
215 if (gmpp & DOVE_AU1_SPDIFO_GPIO_EN)
216 *config |= BIT(1);
217 if (gcfg2 & DOVE_TWSI_OPTION3_GPIO)
218 *config |= BIT(0);
220 /* SSP/TWSI only if I2S1 not set*/
221 if ((*config & BIT(3)) == 0)
222 *config &= ~(BIT(2) | BIT(0));
223 /* TWSI only if SPDIFO not set*/
224 if ((*config & BIT(1)) == 0)
225 *config &= ~BIT(0);
226 return 0;
229 static int dove_audio1_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
230 unsigned long config)
232 unsigned long mpp4 = readl(DOVE_MPP_CTRL4_VIRT_BASE);
233 unsigned long sspc1 = readl(DOVE_SSP_CTRL_STATUS_1);
234 unsigned long gmpp = readl(DOVE_MPP_GENERAL_VIRT_BASE);
235 unsigned long gcfg2 = readl(DOVE_GLOBAL_CONFIG_2);
238 * clear all audio1 related bits before configure
240 gcfg2 &= ~DOVE_TWSI_OPTION3_GPIO;
241 gmpp &= ~DOVE_AU1_SPDIFO_GPIO_EN;
242 sspc1 &= ~DOVE_SSP_ON_AU1;
243 mpp4 &= ~DOVE_AU1_GPIO_SEL;
245 if (config & BIT(0))
246 gcfg2 |= DOVE_TWSI_OPTION3_GPIO;
247 if (config & BIT(1))
248 gmpp |= DOVE_AU1_SPDIFO_GPIO_EN;
249 if (config & BIT(2))
250 sspc1 |= DOVE_SSP_ON_AU1;
251 if (config & BIT(3))
252 mpp4 |= DOVE_AU1_GPIO_SEL;
254 writel(mpp4, DOVE_MPP_CTRL4_VIRT_BASE);
255 writel(sspc1, DOVE_SSP_CTRL_STATUS_1);
256 writel(gmpp, DOVE_MPP_GENERAL_VIRT_BASE);
257 writel(gcfg2, DOVE_GLOBAL_CONFIG_2);
259 return 0;
262 /* mpp[52:57] gpio pins depend heavily on current config;
263 * gpio_req does not try to mux in gpio capabilities to not
264 * break other functions. If you require all mpps as gpio
265 * enforce gpio setting by pinctrl mapping.
267 static int dove_audio1_ctrl_gpio_req(struct mvebu_mpp_ctrl *ctrl, u8 pid)
269 unsigned long config;
271 dove_audio1_ctrl_get(ctrl, &config);
273 switch (config) {
274 case 0x02: /* i2s1 : gpio[56:57] */
275 case 0x0e: /* ssp : gpio[56:57] */
276 if (pid >= 56)
277 return 0;
278 return -ENOTSUPP;
279 case 0x08: /* spdifo : gpio[52:55] */
280 case 0x0b: /* twsi : gpio[52:55] */
281 if (pid <= 55)
282 return 0;
283 return -ENOTSUPP;
284 case 0x0a: /* all gpio */
285 return 0;
286 /* 0x00 : i2s1/spdifo : no gpio */
287 /* 0x0c : ssp/spdifo : no gpio */
288 /* 0x0f : ssp/twsi : no gpio */
290 return -ENOTSUPP;
293 /* mpp[52:57] has gpio pins capable of in and out */
294 static int dove_audio1_ctrl_gpio_dir(struct mvebu_mpp_ctrl *ctrl, u8 pid,
295 bool input)
297 if (pid < 52 || pid > 57)
298 return -ENOTSUPP;
299 return 0;
302 static int dove_twsi_ctrl_get(struct mvebu_mpp_ctrl *ctrl,
303 unsigned long *config)
305 unsigned long gcfg1 = readl(DOVE_GLOBAL_CONFIG_1);
306 unsigned long gcfg2 = readl(DOVE_GLOBAL_CONFIG_2);
308 *config = 0;
309 if (gcfg1 & DOVE_TWSI_ENABLE_OPTION1)
310 *config = 1;
311 else if (gcfg2 & DOVE_TWSI_ENABLE_OPTION2)
312 *config = 2;
313 else if (gcfg2 & DOVE_TWSI_ENABLE_OPTION3)
314 *config = 3;
316 return 0;
319 static int dove_twsi_ctrl_set(struct mvebu_mpp_ctrl *ctrl,
320 unsigned long config)
322 unsigned long gcfg1 = readl(DOVE_GLOBAL_CONFIG_1);
323 unsigned long gcfg2 = readl(DOVE_GLOBAL_CONFIG_2);
325 gcfg1 &= ~DOVE_TWSI_ENABLE_OPTION1;
326 gcfg2 &= ~(DOVE_TWSI_ENABLE_OPTION2 | DOVE_TWSI_ENABLE_OPTION2);
328 switch (config) {
329 case 1:
330 gcfg1 |= DOVE_TWSI_ENABLE_OPTION1;
331 break;
332 case 2:
333 gcfg2 |= DOVE_TWSI_ENABLE_OPTION2;
334 break;
335 case 3:
336 gcfg2 |= DOVE_TWSI_ENABLE_OPTION3;
337 break;
340 writel(gcfg1, DOVE_GLOBAL_CONFIG_1);
341 writel(gcfg2, DOVE_GLOBAL_CONFIG_2);
343 return 0;
346 static struct mvebu_mpp_ctrl dove_mpp_controls[] = {
347 MPP_FUNC_CTRL(0, 0, "mpp0", dove_pmu_mpp_ctrl),
348 MPP_FUNC_CTRL(1, 1, "mpp1", dove_pmu_mpp_ctrl),
349 MPP_FUNC_CTRL(2, 2, "mpp2", dove_pmu_mpp_ctrl),
350 MPP_FUNC_CTRL(3, 3, "mpp3", dove_pmu_mpp_ctrl),
351 MPP_FUNC_CTRL(4, 4, "mpp4", dove_pmu_mpp_ctrl),
352 MPP_FUNC_CTRL(5, 5, "mpp5", dove_pmu_mpp_ctrl),
353 MPP_FUNC_CTRL(6, 6, "mpp6", dove_pmu_mpp_ctrl),
354 MPP_FUNC_CTRL(7, 7, "mpp7", dove_pmu_mpp_ctrl),
355 MPP_FUNC_CTRL(8, 8, "mpp8", dove_pmu_mpp_ctrl),
356 MPP_FUNC_CTRL(9, 9, "mpp9", dove_pmu_mpp_ctrl),
357 MPP_FUNC_CTRL(10, 10, "mpp10", dove_pmu_mpp_ctrl),
358 MPP_FUNC_CTRL(11, 11, "mpp11", dove_pmu_mpp_ctrl),
359 MPP_FUNC_CTRL(12, 12, "mpp12", dove_pmu_mpp_ctrl),
360 MPP_FUNC_CTRL(13, 13, "mpp13", dove_pmu_mpp_ctrl),
361 MPP_FUNC_CTRL(14, 14, "mpp14", dove_pmu_mpp_ctrl),
362 MPP_FUNC_CTRL(15, 15, "mpp15", dove_pmu_mpp_ctrl),
363 MPP_REG_CTRL(16, 23),
364 MPP_FUNC_CTRL(24, 39, "mpp_camera", dove_mpp4_ctrl),
365 MPP_FUNC_CTRL(40, 45, "mpp_sdio0", dove_mpp4_ctrl),
366 MPP_FUNC_CTRL(46, 51, "mpp_sdio1", dove_mpp4_ctrl),
367 MPP_FUNC_GPIO_CTRL(52, 57, "mpp_audio1", dove_audio1_ctrl),
368 MPP_FUNC_CTRL(58, 61, "mpp_spi0", dove_mpp4_ctrl),
369 MPP_FUNC_CTRL(62, 63, "mpp_uart1", dove_mpp4_ctrl),
370 MPP_FUNC_CTRL(64, 71, "mpp_nand", dove_nand_ctrl),
371 MPP_FUNC_CTRL(72, 72, "audio0", dove_audio0_ctrl),
372 MPP_FUNC_CTRL(73, 73, "twsi", dove_twsi_ctrl),
375 static struct mvebu_mpp_mode dove_mpp_modes[] = {
376 MPP_MODE(0,
377 MPP_FUNCTION(0x00, "gpio", NULL),
378 MPP_FUNCTION(0x02, "uart2", "rts"),
379 MPP_FUNCTION(0x03, "sdio0", "cd"),
380 MPP_FUNCTION(0x0f, "lcd0", "pwm"),
381 MPP_FUNCTION(0x10, "pmu", NULL)),
382 MPP_MODE(1,
383 MPP_FUNCTION(0x00, "gpio", NULL),
384 MPP_FUNCTION(0x02, "uart2", "cts"),
385 MPP_FUNCTION(0x03, "sdio0", "wp"),
386 MPP_FUNCTION(0x0f, "lcd1", "pwm"),
387 MPP_FUNCTION(0x10, "pmu", NULL)),
388 MPP_MODE(2,
389 MPP_FUNCTION(0x00, "gpio", NULL),
390 MPP_FUNCTION(0x01, "sata", "prsnt"),
391 MPP_FUNCTION(0x02, "uart2", "txd"),
392 MPP_FUNCTION(0x03, "sdio0", "buspwr"),
393 MPP_FUNCTION(0x04, "uart1", "rts"),
394 MPP_FUNCTION(0x10, "pmu", NULL)),
395 MPP_MODE(3,
396 MPP_FUNCTION(0x00, "gpio", NULL),
397 MPP_FUNCTION(0x01, "sata", "act"),
398 MPP_FUNCTION(0x02, "uart2", "rxd"),
399 MPP_FUNCTION(0x03, "sdio0", "ledctrl"),
400 MPP_FUNCTION(0x04, "uart1", "cts"),
401 MPP_FUNCTION(0x0f, "lcd-spi", "cs1"),
402 MPP_FUNCTION(0x10, "pmu", NULL)),
403 MPP_MODE(4,
404 MPP_FUNCTION(0x00, "gpio", NULL),
405 MPP_FUNCTION(0x02, "uart3", "rts"),
406 MPP_FUNCTION(0x03, "sdio1", "cd"),
407 MPP_FUNCTION(0x04, "spi1", "miso"),
408 MPP_FUNCTION(0x10, "pmu", NULL)),
409 MPP_MODE(5,
410 MPP_FUNCTION(0x00, "gpio", NULL),
411 MPP_FUNCTION(0x02, "uart3", "cts"),
412 MPP_FUNCTION(0x03, "sdio1", "wp"),
413 MPP_FUNCTION(0x04, "spi1", "cs"),
414 MPP_FUNCTION(0x10, "pmu", NULL)),
415 MPP_MODE(6,
416 MPP_FUNCTION(0x00, "gpio", NULL),
417 MPP_FUNCTION(0x02, "uart3", "txd"),
418 MPP_FUNCTION(0x03, "sdio1", "buspwr"),
419 MPP_FUNCTION(0x04, "spi1", "mosi"),
420 MPP_FUNCTION(0x10, "pmu", NULL)),
421 MPP_MODE(7,
422 MPP_FUNCTION(0x00, "gpio", NULL),
423 MPP_FUNCTION(0x02, "uart3", "rxd"),
424 MPP_FUNCTION(0x03, "sdio1", "ledctrl"),
425 MPP_FUNCTION(0x04, "spi1", "sck"),
426 MPP_FUNCTION(0x10, "pmu", NULL)),
427 MPP_MODE(8,
428 MPP_FUNCTION(0x00, "gpio", NULL),
429 MPP_FUNCTION(0x01, "watchdog", "rstout"),
430 MPP_FUNCTION(0x10, "pmu", NULL)),
431 MPP_MODE(9,
432 MPP_FUNCTION(0x00, "gpio", NULL),
433 MPP_FUNCTION(0x05, "pex1", "clkreq"),
434 MPP_FUNCTION(0x10, "pmu", NULL)),
435 MPP_MODE(10,
436 MPP_FUNCTION(0x00, "gpio", NULL),
437 MPP_FUNCTION(0x05, "ssp", "sclk"),
438 MPP_FUNCTION(0x10, "pmu", NULL)),
439 MPP_MODE(11,
440 MPP_FUNCTION(0x00, "gpio", NULL),
441 MPP_FUNCTION(0x01, "sata", "prsnt"),
442 MPP_FUNCTION(0x02, "sata-1", "act"),
443 MPP_FUNCTION(0x03, "sdio0", "ledctrl"),
444 MPP_FUNCTION(0x04, "sdio1", "ledctrl"),
445 MPP_FUNCTION(0x05, "pex0", "clkreq"),
446 MPP_FUNCTION(0x10, "pmu", NULL)),
447 MPP_MODE(12,
448 MPP_FUNCTION(0x00, "gpio", NULL),
449 MPP_FUNCTION(0x01, "sata", "act"),
450 MPP_FUNCTION(0x02, "uart2", "rts"),
451 MPP_FUNCTION(0x03, "audio0", "extclk"),
452 MPP_FUNCTION(0x04, "sdio1", "cd"),
453 MPP_FUNCTION(0x10, "pmu", NULL)),
454 MPP_MODE(13,
455 MPP_FUNCTION(0x00, "gpio", NULL),
456 MPP_FUNCTION(0x02, "uart2", "cts"),
457 MPP_FUNCTION(0x03, "audio1", "extclk"),
458 MPP_FUNCTION(0x04, "sdio1", "wp"),
459 MPP_FUNCTION(0x05, "ssp", "extclk"),
460 MPP_FUNCTION(0x10, "pmu", NULL)),
461 MPP_MODE(14,
462 MPP_FUNCTION(0x00, "gpio", NULL),
463 MPP_FUNCTION(0x02, "uart2", "txd"),
464 MPP_FUNCTION(0x04, "sdio1", "buspwr"),
465 MPP_FUNCTION(0x05, "ssp", "rxd"),
466 MPP_FUNCTION(0x10, "pmu", NULL)),
467 MPP_MODE(15,
468 MPP_FUNCTION(0x00, "gpio", NULL),
469 MPP_FUNCTION(0x02, "uart2", "rxd"),
470 MPP_FUNCTION(0x04, "sdio1", "ledctrl"),
471 MPP_FUNCTION(0x05, "ssp", "sfrm"),
472 MPP_FUNCTION(0x10, "pmu", NULL)),
473 MPP_MODE(16,
474 MPP_FUNCTION(0x00, "gpio", NULL),
475 MPP_FUNCTION(0x02, "uart3", "rts"),
476 MPP_FUNCTION(0x03, "sdio0", "cd"),
477 MPP_FUNCTION(0x04, "lcd-spi", "cs1"),
478 MPP_FUNCTION(0x05, "ac97", "sdi1")),
479 MPP_MODE(17,
480 MPP_FUNCTION(0x00, "gpio", NULL),
481 MPP_FUNCTION(0x01, "ac97-1", "sysclko"),
482 MPP_FUNCTION(0x02, "uart3", "cts"),
483 MPP_FUNCTION(0x03, "sdio0", "wp"),
484 MPP_FUNCTION(0x04, "twsi", "sda"),
485 MPP_FUNCTION(0x05, "ac97", "sdi2")),
486 MPP_MODE(18,
487 MPP_FUNCTION(0x00, "gpio", NULL),
488 MPP_FUNCTION(0x02, "uart3", "txd"),
489 MPP_FUNCTION(0x03, "sdio0", "buspwr"),
490 MPP_FUNCTION(0x04, "lcd0", "pwm"),
491 MPP_FUNCTION(0x05, "ac97", "sdi3")),
492 MPP_MODE(19,
493 MPP_FUNCTION(0x00, "gpio", NULL),
494 MPP_FUNCTION(0x02, "uart3", "rxd"),
495 MPP_FUNCTION(0x03, "sdio0", "ledctrl"),
496 MPP_FUNCTION(0x04, "twsi", "sck")),
497 MPP_MODE(20,
498 MPP_FUNCTION(0x00, "gpio", NULL),
499 MPP_FUNCTION(0x01, "ac97", "sysclko"),
500 MPP_FUNCTION(0x02, "lcd-spi", "miso"),
501 MPP_FUNCTION(0x03, "sdio1", "cd"),
502 MPP_FUNCTION(0x05, "sdio0", "cd"),
503 MPP_FUNCTION(0x06, "spi1", "miso")),
504 MPP_MODE(21,
505 MPP_FUNCTION(0x00, "gpio", NULL),
506 MPP_FUNCTION(0x01, "uart1", "rts"),
507 MPP_FUNCTION(0x02, "lcd-spi", "cs0"),
508 MPP_FUNCTION(0x03, "sdio1", "wp"),
509 MPP_FUNCTION(0x04, "ssp", "sfrm"),
510 MPP_FUNCTION(0x05, "sdio0", "wp"),
511 MPP_FUNCTION(0x06, "spi1", "cs")),
512 MPP_MODE(22,
513 MPP_FUNCTION(0x00, "gpio", NULL),
514 MPP_FUNCTION(0x01, "uart1", "cts"),
515 MPP_FUNCTION(0x02, "lcd-spi", "mosi"),
516 MPP_FUNCTION(0x03, "sdio1", "buspwr"),
517 MPP_FUNCTION(0x04, "ssp", "txd"),
518 MPP_FUNCTION(0x05, "sdio0", "buspwr"),
519 MPP_FUNCTION(0x06, "spi1", "mosi")),
520 MPP_MODE(23,
521 MPP_FUNCTION(0x00, "gpio", NULL),
522 MPP_FUNCTION(0x02, "lcd-spi", "sck"),
523 MPP_FUNCTION(0x03, "sdio1", "ledctrl"),
524 MPP_FUNCTION(0x04, "ssp", "sclk"),
525 MPP_FUNCTION(0x05, "sdio0", "ledctrl"),
526 MPP_FUNCTION(0x06, "spi1", "sck")),
527 MPP_MODE(24,
528 MPP_FUNCTION(0x00, "camera", NULL),
529 MPP_FUNCTION(0x01, "gpio", NULL)),
530 MPP_MODE(40,
531 MPP_FUNCTION(0x00, "sdio0", NULL),
532 MPP_FUNCTION(0x01, "gpio", NULL)),
533 MPP_MODE(46,
534 MPP_FUNCTION(0x00, "sdio1", NULL),
535 MPP_FUNCTION(0x01, "gpio", NULL)),
536 MPP_MODE(52,
537 MPP_FUNCTION(0x00, "i2s1/spdifo", NULL),
538 MPP_FUNCTION(0x02, "i2s1", NULL),
539 MPP_FUNCTION(0x08, "spdifo", NULL),
540 MPP_FUNCTION(0x0a, "gpio", NULL),
541 MPP_FUNCTION(0x0b, "twsi", NULL),
542 MPP_FUNCTION(0x0c, "ssp/spdifo", NULL),
543 MPP_FUNCTION(0x0e, "ssp", NULL),
544 MPP_FUNCTION(0x0f, "ssp/twsi", NULL)),
545 MPP_MODE(58,
546 MPP_FUNCTION(0x00, "spi0", NULL),
547 MPP_FUNCTION(0x01, "gpio", NULL)),
548 MPP_MODE(62,
549 MPP_FUNCTION(0x00, "uart1", NULL),
550 MPP_FUNCTION(0x01, "gpio", NULL)),
551 MPP_MODE(64,
552 MPP_FUNCTION(0x00, "nand", NULL),
553 MPP_FUNCTION(0x01, "gpo", NULL)),
554 MPP_MODE(72,
555 MPP_FUNCTION(0x00, "i2s", NULL),
556 MPP_FUNCTION(0x01, "ac97", NULL)),
557 MPP_MODE(73,
558 MPP_FUNCTION(0x00, "twsi-none", NULL),
559 MPP_FUNCTION(0x01, "twsi-opt1", NULL),
560 MPP_FUNCTION(0x02, "twsi-opt2", NULL),
561 MPP_FUNCTION(0x03, "twsi-opt3", NULL)),
564 static struct pinctrl_gpio_range dove_mpp_gpio_ranges[] = {
565 MPP_GPIO_RANGE(0, 0, 0, 32),
566 MPP_GPIO_RANGE(1, 32, 32, 32),
567 MPP_GPIO_RANGE(2, 64, 64, 8),
570 static struct mvebu_pinctrl_soc_info dove_pinctrl_info = {
571 .controls = dove_mpp_controls,
572 .ncontrols = ARRAY_SIZE(dove_mpp_controls),
573 .modes = dove_mpp_modes,
574 .nmodes = ARRAY_SIZE(dove_mpp_modes),
575 .gpioranges = dove_mpp_gpio_ranges,
576 .ngpioranges = ARRAY_SIZE(dove_mpp_gpio_ranges),
577 .variant = 0,
580 static struct clk *clk;
582 static struct of_device_id dove_pinctrl_of_match[] = {
583 { .compatible = "marvell,dove-pinctrl", .data = &dove_pinctrl_info },
587 static int dove_pinctrl_probe(struct platform_device *pdev)
589 const struct of_device_id *match =
590 of_match_device(dove_pinctrl_of_match, &pdev->dev);
591 pdev->dev.platform_data = match->data;
594 * General MPP Configuration Register is part of pdma registers.
595 * grab clk to make sure it is ticking.
597 clk = devm_clk_get(&pdev->dev, NULL);
598 if (!IS_ERR(clk))
599 clk_prepare_enable(clk);
601 return mvebu_pinctrl_probe(pdev);
604 static int dove_pinctrl_remove(struct platform_device *pdev)
606 int ret;
608 ret = mvebu_pinctrl_remove(pdev);
609 if (!IS_ERR(clk))
610 clk_disable_unprepare(clk);
611 return ret;
614 static struct platform_driver dove_pinctrl_driver = {
615 .driver = {
616 .name = "dove-pinctrl",
617 .owner = THIS_MODULE,
618 .of_match_table = of_match_ptr(dove_pinctrl_of_match),
620 .probe = dove_pinctrl_probe,
621 .remove = dove_pinctrl_remove,
624 module_platform_driver(dove_pinctrl_driver);
626 MODULE_AUTHOR("Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>");
627 MODULE_DESCRIPTION("Marvell Dove pinctrl driver");
628 MODULE_LICENSE("GPL v2");