blob: 7a92a46c17f5888b8d701e8683559c20484974e5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamadaec743112016-03-24 22:32:46 +09002/*
Masahiro Yamadae637a8e2016-06-29 19:38:58 +09003 * Copyright (C) 2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadaec743112016-03-24 22:32:46 +09005 */
6
Simon Glass51a3ec32017-05-17 17:18:07 -06007#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -06008#include <dm.h>
Masahiro Yamadaec743112016-03-24 22:32:46 +09009#include <dm/pinctrl.h>
10
11#include "pinctrl-uniphier.h"
12
Masahiro Yamada6549c432018-05-05 19:53:56 +090013static const struct uniphier_pinctrl_pin uniphier_ld20_pins[] = {
14 UNIPHIER_PINCTRL_PIN(40, "RGMII_TXCLK", 28, UNIPHIER_PIN_DRV_3BIT),
15 UNIPHIER_PINCTRL_PIN(41, "RGMII_TXD0", 29, UNIPHIER_PIN_DRV_3BIT),
16 UNIPHIER_PINCTRL_PIN(42, "RGMII_TXD1", 30, UNIPHIER_PIN_DRV_3BIT),
17 UNIPHIER_PINCTRL_PIN(43, "RGMII_TXD2", 31, UNIPHIER_PIN_DRV_3BIT),
18 UNIPHIER_PINCTRL_PIN(44, "RGMII_TXD3", 32, UNIPHIER_PIN_DRV_3BIT),
19 UNIPHIER_PINCTRL_PIN(45, "RGMII_TXCTL", 33, UNIPHIER_PIN_DRV_3BIT),
20};
21
Masahiro Yamadaec743112016-03-24 22:32:46 +090022static const unsigned emmc_pins[] = {18, 19, 20, 21, 22, 23, 24, 25};
Masahiro Yamada9447e132016-06-29 19:38:59 +090023static const int emmc_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090024static const unsigned emmc_dat8_pins[] = {26, 27, 28, 29};
Masahiro Yamada9447e132016-06-29 19:38:59 +090025static const int emmc_dat8_muxvals[] = {0, 0, 0, 0};
Masahiro Yamadacc94a982016-06-29 19:39:01 +090026static const unsigned ether_rgmii_pins[] = {30, 31, 32, 33, 34, 35, 36, 37, 38,
27 39, 40, 41, 42, 43, 44, 45};
28static const int ether_rgmii_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
29 0, 0, 0, 0};
30static const unsigned ether_rmii_pins[] = {30, 31, 32, 33, 34, 35, 36, 37, 39,
31 41, 42, 45};
Masahiro Yamada521c3de2017-01-17 21:07:35 +090032static const int ether_rmii_muxvals[] = {0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090033static const unsigned i2c0_pins[] = {63, 64};
Masahiro Yamada9447e132016-06-29 19:38:59 +090034static const int i2c0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090035static const unsigned i2c1_pins[] = {65, 66};
Masahiro Yamada9447e132016-06-29 19:38:59 +090036static const int i2c1_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090037static const unsigned i2c3_pins[] = {67, 68};
Masahiro Yamada9447e132016-06-29 19:38:59 +090038static const int i2c3_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090039static const unsigned i2c4_pins[] = {61, 62};
Masahiro Yamada9447e132016-06-29 19:38:59 +090040static const int i2c4_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090041static const unsigned nand_pins[] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
Masahiro Yamada3eb13a82016-04-21 14:43:11 +090042 15, 16, 17};
Masahiro Yamada9447e132016-06-29 19:38:59 +090043static const int nand_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090044static const unsigned sd_pins[] = {10, 11, 12, 13, 14, 15, 16, 17};
Masahiro Yamada9447e132016-06-29 19:38:59 +090045static const int sd_muxvals[] = {3, 3, 3, 3, 3, 3, 3, 3}; /* No SDVOLC */
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090046static const unsigned spi0_pins[] = {56, 57, 58, 59};
47static const int spi0_muxvals[] = {0, 0, 0, 0};
48static const unsigned spi1_pins[] = {169, 170, 171, 172};
49static const int spi1_muxvals[] = {1, 1, 1, 1};
50static const unsigned spi2_pins[] = {86, 87, 88, 89};
51static const int spi2_muxvals[] = {1, 1, 1, 1};
52static const unsigned spi3_pins[] = {74, 75, 76, 77};
53static const int spi3_muxvals[] = {1, 1, 1, 1};
Masahiro Yamada82a51782016-09-14 01:06:04 +090054static const unsigned system_bus_pins[] = {1, 2, 6, 7, 8, 9, 10, 11, 12, 13,
55 14, 15, 16, 17};
56static const int system_bus_muxvals[] = {0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
57 2};
58static const unsigned system_bus_cs1_pins[] = {0};
59static const int system_bus_cs1_muxvals[] = {0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090060static const unsigned uart0_pins[] = {54, 55};
Masahiro Yamada9447e132016-06-29 19:38:59 +090061static const int uart0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090062static const unsigned uart1_pins[] = {58, 59};
Masahiro Yamada9447e132016-06-29 19:38:59 +090063static const int uart1_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090064static const unsigned uart2_pins[] = {90, 91};
Masahiro Yamada9447e132016-06-29 19:38:59 +090065static const int uart2_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090066static const unsigned uart3_pins[] = {94, 95};
Masahiro Yamada9447e132016-06-29 19:38:59 +090067static const int uart3_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090068static const unsigned usb0_pins[] = {46, 47};
Masahiro Yamada9447e132016-06-29 19:38:59 +090069static const int usb0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090070static const unsigned usb1_pins[] = {48, 49};
Masahiro Yamada9447e132016-06-29 19:38:59 +090071static const int usb1_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090072static const unsigned usb2_pins[] = {50, 51};
Masahiro Yamada9447e132016-06-29 19:38:59 +090073static const int usb2_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090074static const unsigned usb3_pins[] = {52, 53};
Masahiro Yamada9447e132016-06-29 19:38:59 +090075static const int usb3_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090076
77static const struct uniphier_pinctrl_group uniphier_ld20_groups[] = {
78 UNIPHIER_PINCTRL_GROUP(emmc),
79 UNIPHIER_PINCTRL_GROUP(emmc_dat8),
Masahiro Yamadacc94a982016-06-29 19:39:01 +090080 UNIPHIER_PINCTRL_GROUP(ether_rgmii),
81 UNIPHIER_PINCTRL_GROUP(ether_rmii),
Masahiro Yamadaec743112016-03-24 22:32:46 +090082 UNIPHIER_PINCTRL_GROUP(i2c0),
83 UNIPHIER_PINCTRL_GROUP(i2c1),
84 UNIPHIER_PINCTRL_GROUP(i2c3),
85 UNIPHIER_PINCTRL_GROUP(i2c4),
86 UNIPHIER_PINCTRL_GROUP(nand),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090087 UNIPHIER_PINCTRL_GROUP(sd),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090088 UNIPHIER_PINCTRL_GROUP(spi0),
89 UNIPHIER_PINCTRL_GROUP(spi1),
90 UNIPHIER_PINCTRL_GROUP(spi2),
91 UNIPHIER_PINCTRL_GROUP(spi3),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +090092 UNIPHIER_PINCTRL_GROUP(system_bus),
93 UNIPHIER_PINCTRL_GROUP(system_bus_cs1),
94 UNIPHIER_PINCTRL_GROUP(uart0),
95 UNIPHIER_PINCTRL_GROUP(uart1),
96 UNIPHIER_PINCTRL_GROUP(uart2),
97 UNIPHIER_PINCTRL_GROUP(uart3),
Masahiro Yamadaec743112016-03-24 22:32:46 +090098 UNIPHIER_PINCTRL_GROUP(usb0),
99 UNIPHIER_PINCTRL_GROUP(usb1),
100 UNIPHIER_PINCTRL_GROUP(usb2),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +0900101 UNIPHIER_PINCTRL_GROUP(usb3),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900102};
103
104static const char * const uniphier_ld20_functions[] = {
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900105 UNIPHIER_PINMUX_FUNCTION(emmc),
Masahiro Yamadacc94a982016-06-29 19:39:01 +0900106 UNIPHIER_PINMUX_FUNCTION(ether_rgmii),
107 UNIPHIER_PINMUX_FUNCTION(ether_rmii),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900108 UNIPHIER_PINMUX_FUNCTION(i2c0),
109 UNIPHIER_PINMUX_FUNCTION(i2c1),
110 UNIPHIER_PINMUX_FUNCTION(i2c3),
111 UNIPHIER_PINMUX_FUNCTION(i2c4),
112 UNIPHIER_PINMUX_FUNCTION(nand),
113 UNIPHIER_PINMUX_FUNCTION(sd),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +0900114 UNIPHIER_PINMUX_FUNCTION(spi0),
115 UNIPHIER_PINMUX_FUNCTION(spi1),
116 UNIPHIER_PINMUX_FUNCTION(spi2),
117 UNIPHIER_PINMUX_FUNCTION(spi3),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +0900118 UNIPHIER_PINMUX_FUNCTION(system_bus),
119 UNIPHIER_PINMUX_FUNCTION(uart0),
120 UNIPHIER_PINMUX_FUNCTION(uart1),
121 UNIPHIER_PINMUX_FUNCTION(uart2),
122 UNIPHIER_PINMUX_FUNCTION(uart3),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900123 UNIPHIER_PINMUX_FUNCTION(usb0),
124 UNIPHIER_PINMUX_FUNCTION(usb1),
125 UNIPHIER_PINMUX_FUNCTION(usb2),
126 UNIPHIER_PINMUX_FUNCTION(usb3),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900127};
128
129static struct uniphier_pinctrl_socdata uniphier_ld20_pinctrl_socdata = {
Masahiro Yamada6549c432018-05-05 19:53:56 +0900130 .pins = uniphier_ld20_pins,
131 .pins_count = ARRAY_SIZE(uniphier_ld20_pins),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900132 .groups = uniphier_ld20_groups,
133 .groups_count = ARRAY_SIZE(uniphier_ld20_groups),
134 .functions = uniphier_ld20_functions,
135 .functions_count = ARRAY_SIZE(uniphier_ld20_functions),
Masahiro Yamada140e9f12017-02-12 18:21:15 +0900136 .caps = UNIPHIER_PINCTRL_CAPS_PUPD_SIMPLE |
137 UNIPHIER_PINCTRL_CAPS_PERPIN_IECTRL,
Masahiro Yamadaec743112016-03-24 22:32:46 +0900138};
139
140static int uniphier_ld20_pinctrl_probe(struct udevice *dev)
141{
142 return uniphier_pinctrl_probe(dev, &uniphier_ld20_pinctrl_socdata);
143}
144
145static const struct udevice_id uniphier_ld20_pinctrl_match[] = {
Masahiro Yamada13d8ac32016-06-29 19:38:57 +0900146 { .compatible = "socionext,uniphier-ld20-pinctrl" },
Masahiro Yamadaec743112016-03-24 22:32:46 +0900147 { /* sentinel */ }
148};
149
150U_BOOT_DRIVER(uniphier_ld20_pinctrl) = {
151 .name = "uniphier-ld20-pinctrl",
152 .id = UCLASS_PINCTRL,
153 .of_match = of_match_ptr(uniphier_ld20_pinctrl_match),
154 .probe = uniphier_ld20_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700155 .priv_auto = sizeof(struct uniphier_pinctrl_priv),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900156 .ops = &uniphier_pinctrl_ops,
157};