blob: d4bc4f0e8be02814473b67bdcc724fa7676fe430 [file] [log] [blame]
Maxime Ripard16c675f2014-04-18 20:12:50 +02001/*
2 * Allwinner A31 SoCs special pins pinctrl driver.
3 *
4 * Copyright (C) 2014 Boris Brezillon
5 * Boris Brezillon <boris.brezillon@free-electrons.com>
6 *
7 * Copyright (C) 2014 Maxime Ripard
8 * Maxime Ripard <maxime.ripard@free-electrons.com>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 */
14
15#include <linux/module.h>
16#include <linux/platform_device.h>
17#include <linux/of.h>
18#include <linux/of_device.h>
19#include <linux/pinctrl/pinctrl.h>
Maxime Riparddc969102014-04-26 22:28:54 +020020#include <linux/reset.h>
Maxime Ripard16c675f2014-04-18 20:12:50 +020021
22#include "pinctrl-sunxi.h"
23
24static const struct sunxi_desc_pin sun6i_a31_r_pins[] = {
25 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 0),
26 SUNXI_FUNCTION(0x0, "gpio_in"),
27 SUNXI_FUNCTION(0x1, "gpio_out"),
28 SUNXI_FUNCTION(0x2, "s_twi"), /* SCK */
29 SUNXI_FUNCTION(0x3, "s_p2wi")), /* SCK */
30 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 1),
31 SUNXI_FUNCTION(0x0, "gpio_in"),
32 SUNXI_FUNCTION(0x1, "gpio_out"),
33 SUNXI_FUNCTION(0x2, "s_twi"), /* SDA */
34 SUNXI_FUNCTION(0x3, "s_p2wi")), /* SDA */
35 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 2),
36 SUNXI_FUNCTION(0x0, "gpio_in"),
37 SUNXI_FUNCTION(0x1, "gpio_out"),
38 SUNXI_FUNCTION(0x2, "s_uart")), /* TX */
39 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 3),
40 SUNXI_FUNCTION(0x0, "gpio_in"),
41 SUNXI_FUNCTION(0x1, "gpio_out"),
42 SUNXI_FUNCTION(0x2, "s_uart")), /* RX */
43 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 4),
44 SUNXI_FUNCTION(0x0, "gpio_in"),
45 SUNXI_FUNCTION(0x1, "gpio_out"),
46 SUNXI_FUNCTION(0x2, "s_ir")), /* RX */
47 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 5),
48 SUNXI_FUNCTION(0x0, "gpio_in"),
49 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020050 SUNXI_FUNCTION_IRQ_BANK(0x2, 0, 0), /* PL_EINT0 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020051 SUNXI_FUNCTION(0x3, "s_jtag")), /* MS */
52 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 6),
53 SUNXI_FUNCTION(0x0, "gpio_in"),
54 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020055 SUNXI_FUNCTION_IRQ_BANK(0x2, 0, 1), /* PL_EINT1 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020056 SUNXI_FUNCTION(0x3, "s_jtag")), /* CK */
57 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 7),
58 SUNXI_FUNCTION(0x0, "gpio_in"),
59 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020060 SUNXI_FUNCTION_IRQ_BANK(0x2, 0, 2), /* PL_EINT2 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020061 SUNXI_FUNCTION(0x3, "s_jtag")), /* DO */
62 SUNXI_PIN(SUNXI_PINCTRL_PIN(L, 8),
63 SUNXI_FUNCTION(0x0, "gpio_in"),
64 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020065 SUNXI_FUNCTION_IRQ_BANK(0x2, 0, 3), /* PL_EINT3 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020066 SUNXI_FUNCTION(0x3, "s_jtag")), /* DI */
67 /* Hole */
68 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 0),
69 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020070 SUNXI_FUNCTION(0x1, "gpio_out"),
71 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 0)), /* PM_EINT0 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020072 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 1),
73 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020074 SUNXI_FUNCTION(0x1, "gpio_out"),
75 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 1)), /* PM_EINT1 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020076 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 2),
77 SUNXI_FUNCTION(0x0, "gpio_in"),
78 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020079 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 2), /* PM_EINT2 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020080 SUNXI_FUNCTION(0x3, "1wire")),
81 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 3),
82 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020083 SUNXI_FUNCTION(0x1, "gpio_out"),
84 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 3)), /* PM_EINT3 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020085 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 4),
86 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020087 SUNXI_FUNCTION(0x1, "gpio_out"),
88 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 4)), /* PM_EINT4 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020089 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 5),
90 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020091 SUNXI_FUNCTION(0x1, "gpio_out"),
92 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 5)), /* PM_EINT5 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020093 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 6),
94 SUNXI_FUNCTION(0x0, "gpio_in"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +020095 SUNXI_FUNCTION(0x1, "gpio_out"),
96 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 6)), /* PM_EINT6 */
Maxime Ripard16c675f2014-04-18 20:12:50 +020097 SUNXI_PIN(SUNXI_PINCTRL_PIN(M, 7),
98 SUNXI_FUNCTION(0x0, "gpio_in"),
99 SUNXI_FUNCTION(0x1, "gpio_out"),
Hans de Goede3f84ccf2015-10-16 09:46:12 +0200100 SUNXI_FUNCTION_IRQ_BANK(0x2, 1, 7), /* PM_EINT7 */
Maxime Ripard16c675f2014-04-18 20:12:50 +0200101 SUNXI_FUNCTION(0x3, "rtc")), /* CLKO */
102};
103
104static const struct sunxi_pinctrl_desc sun6i_a31_r_pinctrl_data = {
105 .pins = sun6i_a31_r_pins,
106 .npins = ARRAY_SIZE(sun6i_a31_r_pins),
107 .pin_base = PL_BASE,
Maxime Ripard8966ada2014-06-05 15:26:02 +0200108 .irq_banks = 2,
Maxime Ripard16c675f2014-04-18 20:12:50 +0200109};
110
111static int sun6i_a31_r_pinctrl_probe(struct platform_device *pdev)
112{
Maxime Riparddc969102014-04-26 22:28:54 +0200113 struct reset_control *rstc;
114 int ret;
115
116 rstc = devm_reset_control_get(&pdev->dev, NULL);
117 if (IS_ERR(rstc)) {
118 dev_err(&pdev->dev, "Reset controller missing\n");
119 return PTR_ERR(rstc);
120 }
121
122 ret = reset_control_deassert(rstc);
123 if (ret)
124 return ret;
125
126 ret = sunxi_pinctrl_init(pdev,
127 &sun6i_a31_r_pinctrl_data);
128
129 if (ret)
130 reset_control_assert(rstc);
131
132 return ret;
Maxime Ripard16c675f2014-04-18 20:12:50 +0200133}
134
Fabian Frederickbaa9946e2015-03-16 20:59:09 +0100135static const struct of_device_id sun6i_a31_r_pinctrl_match[] = {
Maxime Ripard16c675f2014-04-18 20:12:50 +0200136 { .compatible = "allwinner,sun6i-a31-r-pinctrl", },
137 {}
138};
139MODULE_DEVICE_TABLE(of, sun6i_a31_r_pinctrl_match);
140
141static struct platform_driver sun6i_a31_r_pinctrl_driver = {
142 .probe = sun6i_a31_r_pinctrl_probe,
143 .driver = {
144 .name = "sun6i-a31-r-pinctrl",
Maxime Ripard16c675f2014-04-18 20:12:50 +0200145 .of_match_table = sun6i_a31_r_pinctrl_match,
146 },
147};
148module_platform_driver(sun6i_a31_r_pinctrl_driver);
149
150MODULE_AUTHOR("Boris Brezillon <boris.brezillon@free-electrons.com");
151MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
152MODULE_DESCRIPTION("Allwinner A31 R_PIO pinctrl driver");
153MODULE_LICENSE("GPL");