2 * Driver for the ST Microelectronics SPEAr310 pinmux
4 * Copyright (C) 2012 ST Microelectronics
5 * Viresh Kumar <vireshk@kernel.org>
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
12 #include <linux/err.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/of_device.h>
16 #include <linux/platform_device.h>
17 #include "pinctrl-spear3xx.h"
19 #define DRIVER_NAME "spear310-pinmux"
22 #define PMX_CONFIG_REG 0x08
24 /* emi_cs_0_to_5_pins */
25 static const unsigned emi_cs_0_to_5_pins[] = { 45, 46, 47, 48, 49, 50 };
26 static struct spear_muxreg emi_cs_0_to_5_muxreg[] = {
28 .reg = PMX_CONFIG_REG,
29 .mask = PMX_TIMER_0_1_MASK | PMX_TIMER_2_3_MASK,
34 static struct spear_modemux emi_cs_0_to_5_modemux[] = {
36 .muxregs = emi_cs_0_to_5_muxreg,
37 .nmuxregs = ARRAY_SIZE(emi_cs_0_to_5_muxreg),
41 static struct spear_pingroup emi_cs_0_to_5_pingroup = {
42 .name = "emi_cs_0_to_5_grp",
43 .pins = emi_cs_0_to_5_pins,
44 .npins = ARRAY_SIZE(emi_cs_0_to_5_pins),
45 .modemuxs = emi_cs_0_to_5_modemux,
46 .nmodemuxs = ARRAY_SIZE(emi_cs_0_to_5_modemux),
49 static const char *const emi_cs_0_to_5_grps[] = { "emi_cs_0_to_5_grp" };
50 static struct spear_function emi_cs_0_to_5_function = {
52 .groups = emi_cs_0_to_5_grps,
53 .ngroups = ARRAY_SIZE(emi_cs_0_to_5_grps),
57 static const unsigned uart1_pins[] = { 0, 1 };
58 static struct spear_muxreg uart1_muxreg[] = {
60 .reg = PMX_CONFIG_REG,
61 .mask = PMX_FIRDA_MASK,
66 static struct spear_modemux uart1_modemux[] = {
68 .muxregs = uart1_muxreg,
69 .nmuxregs = ARRAY_SIZE(uart1_muxreg),
73 static struct spear_pingroup uart1_pingroup = {
76 .npins = ARRAY_SIZE(uart1_pins),
77 .modemuxs = uart1_modemux,
78 .nmodemuxs = ARRAY_SIZE(uart1_modemux),
81 static const char *const uart1_grps[] = { "uart1_grp" };
82 static struct spear_function uart1_function = {
85 .ngroups = ARRAY_SIZE(uart1_grps),
89 static const unsigned uart2_pins[] = { 43, 44 };
90 static struct spear_muxreg uart2_muxreg[] = {
92 .reg = PMX_CONFIG_REG,
93 .mask = PMX_TIMER_0_1_MASK,
98 static struct spear_modemux uart2_modemux[] = {
100 .muxregs = uart2_muxreg,
101 .nmuxregs = ARRAY_SIZE(uart2_muxreg),
105 static struct spear_pingroup uart2_pingroup = {
108 .npins = ARRAY_SIZE(uart2_pins),
109 .modemuxs = uart2_modemux,
110 .nmodemuxs = ARRAY_SIZE(uart2_modemux),
113 static const char *const uart2_grps[] = { "uart2_grp" };
114 static struct spear_function uart2_function = {
116 .groups = uart2_grps,
117 .ngroups = ARRAY_SIZE(uart2_grps),
121 static const unsigned uart3_pins[] = { 37, 38 };
122 static struct spear_muxreg uart3_muxreg[] = {
124 .reg = PMX_CONFIG_REG,
125 .mask = PMX_UART0_MODEM_MASK,
130 static struct spear_modemux uart3_modemux[] = {
132 .muxregs = uart3_muxreg,
133 .nmuxregs = ARRAY_SIZE(uart3_muxreg),
137 static struct spear_pingroup uart3_pingroup = {
140 .npins = ARRAY_SIZE(uart3_pins),
141 .modemuxs = uart3_modemux,
142 .nmodemuxs = ARRAY_SIZE(uart3_modemux),
145 static const char *const uart3_grps[] = { "uart3_grp" };
146 static struct spear_function uart3_function = {
148 .groups = uart3_grps,
149 .ngroups = ARRAY_SIZE(uart3_grps),
153 static const unsigned uart4_pins[] = { 39, 40 };
154 static struct spear_muxreg uart4_muxreg[] = {
156 .reg = PMX_CONFIG_REG,
157 .mask = PMX_UART0_MODEM_MASK,
162 static struct spear_modemux uart4_modemux[] = {
164 .muxregs = uart4_muxreg,
165 .nmuxregs = ARRAY_SIZE(uart4_muxreg),
169 static struct spear_pingroup uart4_pingroup = {
172 .npins = ARRAY_SIZE(uart4_pins),
173 .modemuxs = uart4_modemux,
174 .nmodemuxs = ARRAY_SIZE(uart4_modemux),
177 static const char *const uart4_grps[] = { "uart4_grp" };
178 static struct spear_function uart4_function = {
180 .groups = uart4_grps,
181 .ngroups = ARRAY_SIZE(uart4_grps),
185 static const unsigned uart5_pins[] = { 41, 42 };
186 static struct spear_muxreg uart5_muxreg[] = {
188 .reg = PMX_CONFIG_REG,
189 .mask = PMX_UART0_MODEM_MASK,
194 static struct spear_modemux uart5_modemux[] = {
196 .muxregs = uart5_muxreg,
197 .nmuxregs = ARRAY_SIZE(uart5_muxreg),
201 static struct spear_pingroup uart5_pingroup = {
204 .npins = ARRAY_SIZE(uart5_pins),
205 .modemuxs = uart5_modemux,
206 .nmodemuxs = ARRAY_SIZE(uart5_modemux),
209 static const char *const uart5_grps[] = { "uart5_grp" };
210 static struct spear_function uart5_function = {
212 .groups = uart5_grps,
213 .ngroups = ARRAY_SIZE(uart5_grps),
217 static const unsigned fsmc_pins[] = { 34, 35, 36 };
218 static struct spear_muxreg fsmc_muxreg[] = {
220 .reg = PMX_CONFIG_REG,
221 .mask = PMX_SSP_CS_MASK,
226 static struct spear_modemux fsmc_modemux[] = {
228 .muxregs = fsmc_muxreg,
229 .nmuxregs = ARRAY_SIZE(fsmc_muxreg),
233 static struct spear_pingroup fsmc_pingroup = {
236 .npins = ARRAY_SIZE(fsmc_pins),
237 .modemuxs = fsmc_modemux,
238 .nmodemuxs = ARRAY_SIZE(fsmc_modemux),
241 static const char *const fsmc_grps[] = { "fsmc_grp" };
242 static struct spear_function fsmc_function = {
245 .ngroups = ARRAY_SIZE(fsmc_grps),
249 static const unsigned rs485_0_pins[] = { 19, 20, 21, 22, 23 };
250 static struct spear_muxreg rs485_0_muxreg[] = {
252 .reg = PMX_CONFIG_REG,
253 .mask = PMX_MII_MASK,
258 static struct spear_modemux rs485_0_modemux[] = {
260 .muxregs = rs485_0_muxreg,
261 .nmuxregs = ARRAY_SIZE(rs485_0_muxreg),
265 static struct spear_pingroup rs485_0_pingroup = {
266 .name = "rs485_0_grp",
267 .pins = rs485_0_pins,
268 .npins = ARRAY_SIZE(rs485_0_pins),
269 .modemuxs = rs485_0_modemux,
270 .nmodemuxs = ARRAY_SIZE(rs485_0_modemux),
273 static const char *const rs485_0_grps[] = { "rs485_0" };
274 static struct spear_function rs485_0_function = {
276 .groups = rs485_0_grps,
277 .ngroups = ARRAY_SIZE(rs485_0_grps),
281 static const unsigned rs485_1_pins[] = { 14, 15, 16, 17, 18 };
282 static struct spear_muxreg rs485_1_muxreg[] = {
284 .reg = PMX_CONFIG_REG,
285 .mask = PMX_MII_MASK,
290 static struct spear_modemux rs485_1_modemux[] = {
292 .muxregs = rs485_1_muxreg,
293 .nmuxregs = ARRAY_SIZE(rs485_1_muxreg),
297 static struct spear_pingroup rs485_1_pingroup = {
298 .name = "rs485_1_grp",
299 .pins = rs485_1_pins,
300 .npins = ARRAY_SIZE(rs485_1_pins),
301 .modemuxs = rs485_1_modemux,
302 .nmodemuxs = ARRAY_SIZE(rs485_1_modemux),
305 static const char *const rs485_1_grps[] = { "rs485_1" };
306 static struct spear_function rs485_1_function = {
308 .groups = rs485_1_grps,
309 .ngroups = ARRAY_SIZE(rs485_1_grps),
313 static const unsigned tdm_pins[] = { 10, 11, 12, 13 };
314 static struct spear_muxreg tdm_muxreg[] = {
316 .reg = PMX_CONFIG_REG,
317 .mask = PMX_MII_MASK,
322 static struct spear_modemux tdm_modemux[] = {
324 .muxregs = tdm_muxreg,
325 .nmuxregs = ARRAY_SIZE(tdm_muxreg),
329 static struct spear_pingroup tdm_pingroup = {
332 .npins = ARRAY_SIZE(tdm_pins),
333 .modemuxs = tdm_modemux,
334 .nmodemuxs = ARRAY_SIZE(tdm_modemux),
337 static const char *const tdm_grps[] = { "tdm_grp" };
338 static struct spear_function tdm_function = {
341 .ngroups = ARRAY_SIZE(tdm_grps),
345 static struct spear_pingroup *spear310_pingroups[] = {
346 SPEAR3XX_COMMON_PINGROUPS,
347 &emi_cs_0_to_5_pingroup,
360 static struct spear_function *spear310_functions[] = {
361 SPEAR3XX_COMMON_FUNCTIONS,
362 &emi_cs_0_to_5_function,
374 static const struct of_device_id spear310_pinctrl_of_match[] = {
376 .compatible = "st,spear310-pinmux",
381 static int spear310_pinctrl_probe(struct platform_device *pdev)
385 spear3xx_machdata.groups = spear310_pingroups;
386 spear3xx_machdata.ngroups = ARRAY_SIZE(spear310_pingroups);
387 spear3xx_machdata.functions = spear310_functions;
388 spear3xx_machdata.nfunctions = ARRAY_SIZE(spear310_functions);
390 pmx_init_addr(&spear3xx_machdata, PMX_CONFIG_REG);
391 pmx_init_gpio_pingroup_addr(spear3xx_machdata.gpio_pingroups,
392 spear3xx_machdata.ngpio_pingroups, PMX_CONFIG_REG);
394 spear3xx_machdata.modes_supported = false;
396 ret = spear_pinctrl_probe(pdev, &spear3xx_machdata);
403 static int spear310_pinctrl_remove(struct platform_device *pdev)
405 return spear_pinctrl_remove(pdev);
408 static struct platform_driver spear310_pinctrl_driver = {
411 .of_match_table = spear310_pinctrl_of_match,
413 .probe = spear310_pinctrl_probe,
414 .remove = spear310_pinctrl_remove,
417 static int __init spear310_pinctrl_init(void)
419 return platform_driver_register(&spear310_pinctrl_driver);
421 arch_initcall(spear310_pinctrl_init);
423 static void __exit spear310_pinctrl_exit(void)
425 platform_driver_unregister(&spear310_pinctrl_driver);
427 module_exit(spear310_pinctrl_exit);
429 MODULE_AUTHOR("Viresh Kumar <vireshk@kernel.org>");
430 MODULE_DESCRIPTION("ST Microelectronics SPEAr310 pinctrl driver");
431 MODULE_LICENSE("GPL v2");
432 MODULE_DEVICE_TABLE(of, spear310_pinctrl_of_match);