blob: 937d868007c1a8d7274c873a65436923db07e353 [file] [log] [blame]
Thomas Petazzoni463e2702012-09-13 17:41:47 +02001/*
2 * Marvell Armada XP pinctrl driver based on mvebu pinctrl core
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This file supports the three variants of Armada XP SoCs that are
14 * available: mv78230, mv78260 and mv78460. From a pin muxing
15 * perspective, the mv78230 has 49 MPP pins. The mv78260 and mv78460
16 * both have 67 MPP pins (more GPIOs and address lines for the memory
Thomas Petazzoni80b3d042015-06-09 18:46:57 +020017 * bus mainly).
Thomas Petazzoni463e2702012-09-13 17:41:47 +020018 */
19
20#include <linux/err.h>
21#include <linux/init.h>
22#include <linux/io.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/clk.h>
26#include <linux/of.h>
27#include <linux/of_device.h>
28#include <linux/pinctrl/pinctrl.h>
29#include <linux/bitops.h>
30
31#include "pinctrl-mvebu.h"
32
Sebastian Hesselbarthad2a4f22014-01-31 01:33:45 +010033static void __iomem *mpp_base;
Thomas Petazzoni12149a22015-03-19 11:30:47 +010034static u32 *mpp_saved_regs;
Sebastian Hesselbarthad2a4f22014-01-31 01:33:45 +010035
36static int armada_xp_mpp_ctrl_get(unsigned pid, unsigned long *config)
37{
38 return default_mpp_ctrl_get(mpp_base, pid, config);
39}
40
41static int armada_xp_mpp_ctrl_set(unsigned pid, unsigned long config)
42{
43 return default_mpp_ctrl_set(mpp_base, pid, config);
44}
45
Thomas Petazzoni463e2702012-09-13 17:41:47 +020046enum armada_xp_variant {
47 V_MV78230 = BIT(0),
48 V_MV78260 = BIT(1),
49 V_MV78460 = BIT(2),
50 V_MV78230_PLUS = (V_MV78230 | V_MV78260 | V_MV78460),
51 V_MV78260_PLUS = (V_MV78260 | V_MV78460),
52};
53
54static struct mvebu_mpp_mode armada_xp_mpp_modes[] = {
55 MPP_MODE(0,
56 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzonia361cbc2015-06-09 18:47:11 +020057 MPP_VAR_FUNCTION(0x1, "ge0", "txclkout", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +020058 MPP_VAR_FUNCTION(0x4, "lcd", "d0", V_MV78230_PLUS)),
59 MPP_MODE(1,
60 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
61 MPP_VAR_FUNCTION(0x1, "ge0", "txd0", V_MV78230_PLUS),
62 MPP_VAR_FUNCTION(0x4, "lcd", "d1", V_MV78230_PLUS)),
63 MPP_MODE(2,
64 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
65 MPP_VAR_FUNCTION(0x1, "ge0", "txd1", V_MV78230_PLUS),
66 MPP_VAR_FUNCTION(0x4, "lcd", "d2", V_MV78230_PLUS)),
67 MPP_MODE(3,
68 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
69 MPP_VAR_FUNCTION(0x1, "ge0", "txd2", V_MV78230_PLUS),
70 MPP_VAR_FUNCTION(0x4, "lcd", "d3", V_MV78230_PLUS)),
71 MPP_MODE(4,
72 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
73 MPP_VAR_FUNCTION(0x1, "ge0", "txd3", V_MV78230_PLUS),
74 MPP_VAR_FUNCTION(0x4, "lcd", "d4", V_MV78230_PLUS)),
75 MPP_MODE(5,
76 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
77 MPP_VAR_FUNCTION(0x1, "ge0", "txctl", V_MV78230_PLUS),
78 MPP_VAR_FUNCTION(0x4, "lcd", "d5", V_MV78230_PLUS)),
79 MPP_MODE(6,
80 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
81 MPP_VAR_FUNCTION(0x1, "ge0", "rxd0", V_MV78230_PLUS),
82 MPP_VAR_FUNCTION(0x4, "lcd", "d6", V_MV78230_PLUS)),
83 MPP_MODE(7,
84 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
85 MPP_VAR_FUNCTION(0x1, "ge0", "rxd1", V_MV78230_PLUS),
86 MPP_VAR_FUNCTION(0x4, "lcd", "d7", V_MV78230_PLUS)),
87 MPP_MODE(8,
88 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
89 MPP_VAR_FUNCTION(0x1, "ge0", "rxd2", V_MV78230_PLUS),
90 MPP_VAR_FUNCTION(0x4, "lcd", "d8", V_MV78230_PLUS)),
91 MPP_MODE(9,
92 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
93 MPP_VAR_FUNCTION(0x1, "ge0", "rxd3", V_MV78230_PLUS),
94 MPP_VAR_FUNCTION(0x4, "lcd", "d9", V_MV78230_PLUS)),
95 MPP_MODE(10,
96 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
97 MPP_VAR_FUNCTION(0x1, "ge0", "rxctl", V_MV78230_PLUS),
98 MPP_VAR_FUNCTION(0x4, "lcd", "d10", V_MV78230_PLUS)),
99 MPP_MODE(11,
100 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
101 MPP_VAR_FUNCTION(0x1, "ge0", "rxclk", V_MV78230_PLUS),
102 MPP_VAR_FUNCTION(0x4, "lcd", "d11", V_MV78230_PLUS)),
103 MPP_MODE(12,
104 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
105 MPP_VAR_FUNCTION(0x1, "ge0", "txd4", V_MV78230_PLUS),
Thomas Petazzonia361cbc2015-06-09 18:47:11 +0200106 MPP_VAR_FUNCTION(0x2, "ge1", "txclkout", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200107 MPP_VAR_FUNCTION(0x4, "lcd", "d12", V_MV78230_PLUS)),
108 MPP_MODE(13,
109 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
110 MPP_VAR_FUNCTION(0x1, "ge0", "txd5", V_MV78230_PLUS),
111 MPP_VAR_FUNCTION(0x2, "ge1", "txd0", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200112 MPP_VAR_FUNCTION(0x3, "spi1", "mosi", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200113 MPP_VAR_FUNCTION(0x4, "lcd", "d13", V_MV78230_PLUS)),
114 MPP_MODE(14,
115 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
116 MPP_VAR_FUNCTION(0x1, "ge0", "txd6", V_MV78230_PLUS),
117 MPP_VAR_FUNCTION(0x2, "ge1", "txd1", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200118 MPP_VAR_FUNCTION(0x3, "spi1", "sck", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200119 MPP_VAR_FUNCTION(0x4, "lcd", "d14", V_MV78230_PLUS)),
120 MPP_MODE(15,
121 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
122 MPP_VAR_FUNCTION(0x1, "ge0", "txd7", V_MV78230_PLUS),
123 MPP_VAR_FUNCTION(0x2, "ge1", "txd2", V_MV78230_PLUS),
124 MPP_VAR_FUNCTION(0x4, "lcd", "d15", V_MV78230_PLUS)),
125 MPP_MODE(16,
126 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
127 MPP_VAR_FUNCTION(0x1, "ge0", "txclk", V_MV78230_PLUS),
128 MPP_VAR_FUNCTION(0x2, "ge1", "txd3", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200129 MPP_VAR_FUNCTION(0x3, "spi1", "cs0", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200130 MPP_VAR_FUNCTION(0x4, "lcd", "d16", V_MV78230_PLUS)),
131 MPP_MODE(17,
132 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
133 MPP_VAR_FUNCTION(0x1, "ge0", "col", V_MV78230_PLUS),
134 MPP_VAR_FUNCTION(0x2, "ge1", "txctl", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200135 MPP_VAR_FUNCTION(0x3, "spi1", "miso", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200136 MPP_VAR_FUNCTION(0x4, "lcd", "d17", V_MV78230_PLUS)),
137 MPP_MODE(18,
138 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
139 MPP_VAR_FUNCTION(0x1, "ge0", "rxerr", V_MV78230_PLUS),
140 MPP_VAR_FUNCTION(0x2, "ge1", "rxd0", V_MV78230_PLUS),
141 MPP_VAR_FUNCTION(0x3, "ptp", "trig", V_MV78230_PLUS),
142 MPP_VAR_FUNCTION(0x4, "lcd", "d18", V_MV78230_PLUS)),
143 MPP_MODE(19,
144 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
145 MPP_VAR_FUNCTION(0x1, "ge0", "crs", V_MV78230_PLUS),
146 MPP_VAR_FUNCTION(0x2, "ge1", "rxd1", V_MV78230_PLUS),
147 MPP_VAR_FUNCTION(0x3, "ptp", "evreq", V_MV78230_PLUS),
148 MPP_VAR_FUNCTION(0x4, "lcd", "d19", V_MV78230_PLUS)),
149 MPP_MODE(20,
150 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
151 MPP_VAR_FUNCTION(0x1, "ge0", "rxd4", V_MV78230_PLUS),
152 MPP_VAR_FUNCTION(0x2, "ge1", "rxd2", V_MV78230_PLUS),
153 MPP_VAR_FUNCTION(0x3, "ptp", "clk", V_MV78230_PLUS),
154 MPP_VAR_FUNCTION(0x4, "lcd", "d20", V_MV78230_PLUS)),
155 MPP_MODE(21,
156 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
157 MPP_VAR_FUNCTION(0x1, "ge0", "rxd5", V_MV78230_PLUS),
158 MPP_VAR_FUNCTION(0x2, "ge1", "rxd3", V_MV78230_PLUS),
Thomas Petazzoni100dc5d2015-06-09 18:47:03 +0200159 MPP_VAR_FUNCTION(0x3, "dram", "bat", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200160 MPP_VAR_FUNCTION(0x4, "lcd", "d21", V_MV78230_PLUS)),
161 MPP_MODE(22,
162 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
163 MPP_VAR_FUNCTION(0x1, "ge0", "rxd6", V_MV78230_PLUS),
164 MPP_VAR_FUNCTION(0x2, "ge1", "rxctl", V_MV78230_PLUS),
165 MPP_VAR_FUNCTION(0x3, "sata0", "prsnt", V_MV78230_PLUS),
166 MPP_VAR_FUNCTION(0x4, "lcd", "d22", V_MV78230_PLUS)),
167 MPP_MODE(23,
168 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
169 MPP_VAR_FUNCTION(0x1, "ge0", "rxd7", V_MV78230_PLUS),
170 MPP_VAR_FUNCTION(0x2, "ge1", "rxclk", V_MV78230_PLUS),
171 MPP_VAR_FUNCTION(0x3, "sata1", "prsnt", V_MV78230_PLUS),
172 MPP_VAR_FUNCTION(0x4, "lcd", "d23", V_MV78230_PLUS)),
173 MPP_MODE(24,
174 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
175 MPP_VAR_FUNCTION(0x1, "sata1", "prsnt", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200176 MPP_VAR_FUNCTION(0x3, "tdm", "rst", V_MV78230_PLUS),
177 MPP_VAR_FUNCTION(0x4, "lcd", "hsync", V_MV78230_PLUS)),
178 MPP_MODE(25,
179 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
180 MPP_VAR_FUNCTION(0x1, "sata0", "prsnt", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200181 MPP_VAR_FUNCTION(0x3, "tdm", "pclk", V_MV78230_PLUS),
182 MPP_VAR_FUNCTION(0x4, "lcd", "vsync", V_MV78230_PLUS)),
183 MPP_MODE(26,
184 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
185 MPP_VAR_FUNCTION(0x3, "tdm", "fsync", V_MV78230_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200186 MPP_VAR_FUNCTION(0x4, "lcd", "clk", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200187 MPP_MODE(27,
188 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
189 MPP_VAR_FUNCTION(0x1, "ptp", "trig", V_MV78230_PLUS),
190 MPP_VAR_FUNCTION(0x3, "tdm", "dtx", V_MV78230_PLUS),
191 MPP_VAR_FUNCTION(0x4, "lcd", "e", V_MV78230_PLUS)),
192 MPP_MODE(28,
193 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
194 MPP_VAR_FUNCTION(0x1, "ptp", "evreq", V_MV78230_PLUS),
195 MPP_VAR_FUNCTION(0x3, "tdm", "drx", V_MV78230_PLUS),
196 MPP_VAR_FUNCTION(0x4, "lcd", "pwm", V_MV78230_PLUS)),
197 MPP_MODE(29,
198 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
199 MPP_VAR_FUNCTION(0x1, "ptp", "clk", V_MV78230_PLUS),
200 MPP_VAR_FUNCTION(0x3, "tdm", "int0", V_MV78230_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200201 MPP_VAR_FUNCTION(0x4, "lcd", "ref-clk", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200202 MPP_MODE(30,
203 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
204 MPP_VAR_FUNCTION(0x1, "sd0", "clk", V_MV78230_PLUS),
205 MPP_VAR_FUNCTION(0x3, "tdm", "int1", V_MV78230_PLUS)),
206 MPP_MODE(31,
207 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
208 MPP_VAR_FUNCTION(0x1, "sd0", "cmd", V_MV78230_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200209 MPP_VAR_FUNCTION(0x3, "tdm", "int2", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200210 MPP_MODE(32,
211 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
212 MPP_VAR_FUNCTION(0x1, "sd0", "d0", V_MV78230_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200213 MPP_VAR_FUNCTION(0x3, "tdm", "int3", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200214 MPP_MODE(33,
215 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
216 MPP_VAR_FUNCTION(0x1, "sd0", "d1", V_MV78230_PLUS),
217 MPP_VAR_FUNCTION(0x3, "tdm", "int4", V_MV78230_PLUS),
Thomas Petazzoni100dc5d2015-06-09 18:47:03 +0200218 MPP_VAR_FUNCTION(0x4, "dram", "bat", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200219 MPP_MODE(34,
220 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
221 MPP_VAR_FUNCTION(0x1, "sd0", "d2", V_MV78230_PLUS),
222 MPP_VAR_FUNCTION(0x2, "sata0", "prsnt", V_MV78230_PLUS),
223 MPP_VAR_FUNCTION(0x3, "tdm", "int5", V_MV78230_PLUS)),
224 MPP_MODE(35,
225 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
226 MPP_VAR_FUNCTION(0x1, "sd0", "d3", V_MV78230_PLUS),
227 MPP_VAR_FUNCTION(0x2, "sata1", "prsnt", V_MV78230_PLUS),
228 MPP_VAR_FUNCTION(0x3, "tdm", "int6", V_MV78230_PLUS)),
229 MPP_MODE(36,
230 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200231 MPP_VAR_FUNCTION(0x1, "spi0", "mosi", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200232 MPP_MODE(37,
233 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200234 MPP_VAR_FUNCTION(0x1, "spi0", "miso", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200235 MPP_MODE(38,
236 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200237 MPP_VAR_FUNCTION(0x1, "spi0", "sck", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200238 MPP_MODE(39,
239 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200240 MPP_VAR_FUNCTION(0x1, "spi0", "cs0", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200241 MPP_MODE(40,
242 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200243 MPP_VAR_FUNCTION(0x1, "spi0", "cs1", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200244 MPP_VAR_FUNCTION(0x2, "uart2", "cts", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200245 MPP_VAR_FUNCTION(0x4, "lcd", "vga-hsync", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200246 MPP_VAR_FUNCTION(0x5, "pcie", "clkreq0", V_MV78230_PLUS),
247 MPP_VAR_FUNCTION(0x6, "spi1", "cs1", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200248 MPP_MODE(41,
249 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200250 MPP_VAR_FUNCTION(0x1, "spi0", "cs2", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200251 MPP_VAR_FUNCTION(0x2, "uart2", "rts", V_MV78230_PLUS),
252 MPP_VAR_FUNCTION(0x3, "sata1", "prsnt", V_MV78230_PLUS),
253 MPP_VAR_FUNCTION(0x4, "lcd", "vga-vsync", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200254 MPP_VAR_FUNCTION(0x5, "pcie", "clkreq1", V_MV78230_PLUS),
255 MPP_VAR_FUNCTION(0x6, "spi1", "cs2", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200256 MPP_MODE(42,
257 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
258 MPP_VAR_FUNCTION(0x1, "uart2", "rxd", V_MV78230_PLUS),
259 MPP_VAR_FUNCTION(0x2, "uart0", "cts", V_MV78230_PLUS),
260 MPP_VAR_FUNCTION(0x3, "tdm", "int7", V_MV78230_PLUS),
Thomas Petazzonidae55972015-06-09 18:47:08 +0200261 MPP_VAR_FUNCTION(0x4, "tdm", "timer", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200262 MPP_MODE(43,
263 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
264 MPP_VAR_FUNCTION(0x1, "uart2", "txd", V_MV78230_PLUS),
265 MPP_VAR_FUNCTION(0x2, "uart0", "rts", V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200266 MPP_VAR_FUNCTION(0x3, "spi0", "cs3", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200267 MPP_VAR_FUNCTION(0x4, "pcie", "rstout", V_MV78230_PLUS),
268 MPP_VAR_FUNCTION(0x6, "spi1", "cs3", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200269 MPP_MODE(44,
270 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
271 MPP_VAR_FUNCTION(0x1, "uart2", "cts", V_MV78230_PLUS),
272 MPP_VAR_FUNCTION(0x2, "uart3", "rxd", V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200273 MPP_VAR_FUNCTION(0x3, "spi0", "cs4", V_MV78230_PLUS),
Thomas Petazzoni100dc5d2015-06-09 18:47:03 +0200274 MPP_VAR_FUNCTION(0x4, "dram", "bat", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200275 MPP_VAR_FUNCTION(0x5, "pcie", "clkreq2", V_MV78230_PLUS),
276 MPP_VAR_FUNCTION(0x6, "spi1", "cs4", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200277 MPP_MODE(45,
278 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
279 MPP_VAR_FUNCTION(0x1, "uart2", "rts", V_MV78230_PLUS),
280 MPP_VAR_FUNCTION(0x2, "uart3", "txd", V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200281 MPP_VAR_FUNCTION(0x3, "spi0", "cs5", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200282 MPP_VAR_FUNCTION(0x4, "sata1", "prsnt", V_MV78230_PLUS),
283 MPP_VAR_FUNCTION(0x6, "spi1", "cs5", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200284 MPP_MODE(46,
285 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
286 MPP_VAR_FUNCTION(0x1, "uart3", "rts", V_MV78230_PLUS),
287 MPP_VAR_FUNCTION(0x2, "uart1", "rts", V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200288 MPP_VAR_FUNCTION(0x3, "spi0", "cs6", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200289 MPP_VAR_FUNCTION(0x4, "sata0", "prsnt", V_MV78230_PLUS),
290 MPP_VAR_FUNCTION(0x6, "spi1", "cs6", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200291 MPP_MODE(47,
292 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
293 MPP_VAR_FUNCTION(0x1, "uart3", "cts", V_MV78230_PLUS),
294 MPP_VAR_FUNCTION(0x2, "uart1", "cts", V_MV78230_PLUS),
Thomas Petazzoni50a7d132015-06-09 18:47:15 +0200295 MPP_VAR_FUNCTION(0x3, "spi0", "cs7", V_MV78230_PLUS),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200296 MPP_VAR_FUNCTION(0x4, "ref", "clkout", V_MV78230_PLUS),
Thomas Petazzoni88b355f2015-06-09 18:47:17 +0200297 MPP_VAR_FUNCTION(0x5, "pcie", "clkreq3", V_MV78230_PLUS),
298 MPP_VAR_FUNCTION(0x6, "spi1", "cs7", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200299 MPP_MODE(48,
300 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78230_PLUS),
Thomas Petazzoniea78b952015-06-09 18:46:58 +0200301 MPP_VAR_FUNCTION(0x1, "dev", "clkout", V_MV78230_PLUS),
Thomas Petazzonifb53b612015-06-09 18:47:18 +0200302 MPP_VAR_FUNCTION(0x2, "dev", "burst/last", V_MV78230_PLUS),
303 MPP_VAR_FUNCTION(0x3, "nand", "rb", V_MV78230_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200304 MPP_MODE(49,
305 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
306 MPP_VAR_FUNCTION(0x1, "dev", "we3", V_MV78260_PLUS)),
307 MPP_MODE(50,
308 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
309 MPP_VAR_FUNCTION(0x1, "dev", "we2", V_MV78260_PLUS)),
310 MPP_MODE(51,
311 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
312 MPP_VAR_FUNCTION(0x1, "dev", "ad16", V_MV78260_PLUS)),
313 MPP_MODE(52,
314 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
315 MPP_VAR_FUNCTION(0x1, "dev", "ad17", V_MV78260_PLUS)),
316 MPP_MODE(53,
317 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
318 MPP_VAR_FUNCTION(0x1, "dev", "ad18", V_MV78260_PLUS)),
319 MPP_MODE(54,
320 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
321 MPP_VAR_FUNCTION(0x1, "dev", "ad19", V_MV78260_PLUS)),
322 MPP_MODE(55,
323 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200324 MPP_VAR_FUNCTION(0x1, "dev", "ad20", V_MV78260_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200325 MPP_MODE(56,
326 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200327 MPP_VAR_FUNCTION(0x1, "dev", "ad21", V_MV78260_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200328 MPP_MODE(57,
329 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
Thomas Petazzoni80b3d042015-06-09 18:46:57 +0200330 MPP_VAR_FUNCTION(0x1, "dev", "ad22", V_MV78260_PLUS)),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200331 MPP_MODE(58,
332 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
333 MPP_VAR_FUNCTION(0x1, "dev", "ad23", V_MV78260_PLUS)),
334 MPP_MODE(59,
335 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
336 MPP_VAR_FUNCTION(0x1, "dev", "ad24", V_MV78260_PLUS)),
337 MPP_MODE(60,
338 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
339 MPP_VAR_FUNCTION(0x1, "dev", "ad25", V_MV78260_PLUS)),
340 MPP_MODE(61,
341 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
342 MPP_VAR_FUNCTION(0x1, "dev", "ad26", V_MV78260_PLUS)),
343 MPP_MODE(62,
344 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
345 MPP_VAR_FUNCTION(0x1, "dev", "ad27", V_MV78260_PLUS)),
346 MPP_MODE(63,
347 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
348 MPP_VAR_FUNCTION(0x1, "dev", "ad28", V_MV78260_PLUS)),
349 MPP_MODE(64,
350 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
351 MPP_VAR_FUNCTION(0x1, "dev", "ad29", V_MV78260_PLUS)),
352 MPP_MODE(65,
353 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
354 MPP_VAR_FUNCTION(0x1, "dev", "ad30", V_MV78260_PLUS)),
355 MPP_MODE(66,
356 MPP_VAR_FUNCTION(0x0, "gpio", NULL, V_MV78260_PLUS),
357 MPP_VAR_FUNCTION(0x1, "dev", "ad31", V_MV78260_PLUS)),
358};
359
360static struct mvebu_pinctrl_soc_info armada_xp_pinctrl_info;
361
Fabian Frederickbaa9946e2015-03-16 20:59:09 +0100362static const struct of_device_id armada_xp_pinctrl_of_match[] = {
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200363 {
364 .compatible = "marvell,mv78230-pinctrl",
365 .data = (void *) V_MV78230,
366 },
367 {
368 .compatible = "marvell,mv78260-pinctrl",
369 .data = (void *) V_MV78260,
370 },
371 {
372 .compatible = "marvell,mv78460-pinctrl",
373 .data = (void *) V_MV78460,
374 },
375 { },
376};
377
378static struct mvebu_mpp_ctrl mv78230_mpp_controls[] = {
Sebastian Hesselbarth1217b792014-01-31 01:48:48 +0100379 MPP_FUNC_CTRL(0, 48, NULL, armada_xp_mpp_ctrl),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200380};
381
382static struct pinctrl_gpio_range mv78230_mpp_gpio_ranges[] = {
383 MPP_GPIO_RANGE(0, 0, 0, 32),
384 MPP_GPIO_RANGE(1, 32, 32, 17),
385};
386
387static struct mvebu_mpp_ctrl mv78260_mpp_controls[] = {
Sebastian Hesselbarth1217b792014-01-31 01:48:48 +0100388 MPP_FUNC_CTRL(0, 66, NULL, armada_xp_mpp_ctrl),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200389};
390
391static struct pinctrl_gpio_range mv78260_mpp_gpio_ranges[] = {
392 MPP_GPIO_RANGE(0, 0, 0, 32),
393 MPP_GPIO_RANGE(1, 32, 32, 32),
394 MPP_GPIO_RANGE(2, 64, 64, 3),
395};
396
397static struct mvebu_mpp_ctrl mv78460_mpp_controls[] = {
Sebastian Hesselbarth1217b792014-01-31 01:48:48 +0100398 MPP_FUNC_CTRL(0, 66, NULL, armada_xp_mpp_ctrl),
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200399};
400
401static struct pinctrl_gpio_range mv78460_mpp_gpio_ranges[] = {
402 MPP_GPIO_RANGE(0, 0, 0, 32),
403 MPP_GPIO_RANGE(1, 32, 32, 32),
404 MPP_GPIO_RANGE(2, 64, 64, 3),
405};
406
Thomas Petazzoni12149a22015-03-19 11:30:47 +0100407static int armada_xp_pinctrl_suspend(struct platform_device *pdev,
408 pm_message_t state)
409{
410 struct mvebu_pinctrl_soc_info *soc =
411 platform_get_drvdata(pdev);
412 int i, nregs;
413
414 nregs = DIV_ROUND_UP(soc->nmodes, MVEBU_MPPS_PER_REG);
415
416 for (i = 0; i < nregs; i++)
417 mpp_saved_regs[i] = readl(mpp_base + i * 4);
418
419 return 0;
420}
421
422static int armada_xp_pinctrl_resume(struct platform_device *pdev)
423{
424 struct mvebu_pinctrl_soc_info *soc =
425 platform_get_drvdata(pdev);
426 int i, nregs;
427
428 nregs = DIV_ROUND_UP(soc->nmodes, MVEBU_MPPS_PER_REG);
429
430 for (i = 0; i < nregs; i++)
431 writel(mpp_saved_regs[i], mpp_base + i * 4);
432
433 return 0;
434}
435
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800436static int armada_xp_pinctrl_probe(struct platform_device *pdev)
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200437{
438 struct mvebu_pinctrl_soc_info *soc = &armada_xp_pinctrl_info;
439 const struct of_device_id *match =
440 of_match_device(armada_xp_pinctrl_of_match, &pdev->dev);
Sebastian Hesselbarth1217b792014-01-31 01:48:48 +0100441 struct resource *res;
Thomas Petazzoni12149a22015-03-19 11:30:47 +0100442 int nregs;
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200443
444 if (!match)
445 return -ENODEV;
446
Sebastian Hesselbarth1217b792014-01-31 01:48:48 +0100447 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
448 mpp_base = devm_ioremap_resource(&pdev->dev, res);
449 if (IS_ERR(mpp_base))
450 return PTR_ERR(mpp_base);
451
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200452 soc->variant = (unsigned) match->data & 0xff;
453
454 switch (soc->variant) {
455 case V_MV78230:
456 soc->controls = mv78230_mpp_controls;
457 soc->ncontrols = ARRAY_SIZE(mv78230_mpp_controls);
458 soc->modes = armada_xp_mpp_modes;
459 /* We don't necessarily want the full list of the
460 * armada_xp_mpp_modes, but only the first 'n' ones
461 * that are available on this SoC */
462 soc->nmodes = mv78230_mpp_controls[0].npins;
463 soc->gpioranges = mv78230_mpp_gpio_ranges;
464 soc->ngpioranges = ARRAY_SIZE(mv78230_mpp_gpio_ranges);
465 break;
466 case V_MV78260:
467 soc->controls = mv78260_mpp_controls;
468 soc->ncontrols = ARRAY_SIZE(mv78260_mpp_controls);
469 soc->modes = armada_xp_mpp_modes;
470 /* We don't necessarily want the full list of the
471 * armada_xp_mpp_modes, but only the first 'n' ones
472 * that are available on this SoC */
473 soc->nmodes = mv78260_mpp_controls[0].npins;
474 soc->gpioranges = mv78260_mpp_gpio_ranges;
475 soc->ngpioranges = ARRAY_SIZE(mv78260_mpp_gpio_ranges);
476 break;
477 case V_MV78460:
478 soc->controls = mv78460_mpp_controls;
479 soc->ncontrols = ARRAY_SIZE(mv78460_mpp_controls);
480 soc->modes = armada_xp_mpp_modes;
481 /* We don't necessarily want the full list of the
482 * armada_xp_mpp_modes, but only the first 'n' ones
483 * that are available on this SoC */
484 soc->nmodes = mv78460_mpp_controls[0].npins;
485 soc->gpioranges = mv78460_mpp_gpio_ranges;
486 soc->ngpioranges = ARRAY_SIZE(mv78460_mpp_gpio_ranges);
487 break;
488 }
489
Thomas Petazzoni12149a22015-03-19 11:30:47 +0100490 nregs = DIV_ROUND_UP(soc->nmodes, MVEBU_MPPS_PER_REG);
491
492 mpp_saved_regs = devm_kmalloc(&pdev->dev, nregs * sizeof(u32),
493 GFP_KERNEL);
494 if (!mpp_saved_regs)
495 return -ENOMEM;
496
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200497 pdev->dev.platform_data = soc;
498
499 return mvebu_pinctrl_probe(pdev);
500}
501
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800502static int armada_xp_pinctrl_remove(struct platform_device *pdev)
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200503{
504 return mvebu_pinctrl_remove(pdev);
505}
506
507static struct platform_driver armada_xp_pinctrl_driver = {
508 .driver = {
509 .name = "armada-xp-pinctrl",
Sachin Kamatf2e93942013-10-21 14:47:14 +0530510 .of_match_table = armada_xp_pinctrl_of_match,
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200511 },
512 .probe = armada_xp_pinctrl_probe,
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800513 .remove = armada_xp_pinctrl_remove,
Thomas Petazzoni12149a22015-03-19 11:30:47 +0100514 .suspend = armada_xp_pinctrl_suspend,
515 .resume = armada_xp_pinctrl_resume,
Thomas Petazzoni463e2702012-09-13 17:41:47 +0200516};
517
518module_platform_driver(armada_xp_pinctrl_driver);
519
520MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
521MODULE_DESCRIPTION("Marvell Armada XP pinctrl driver");
522MODULE_LICENSE("GPL v2");