blob: 3ef10151dabfbc226d8f00678ec562c48adfe41a [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 Glass11c89f32017-05-17 17:18:03 -06007#include <dm.h>
Masahiro Yamadaec743112016-03-24 22:32:46 +09008#include <dm/pinctrl.h>
9
10#include "pinctrl-uniphier.h"
11
Masahiro Yamada6549c432018-05-05 19:53:56 +090012static const struct uniphier_pinctrl_pin uniphier_ld20_pins[] = {
13 UNIPHIER_PINCTRL_PIN(40, "RGMII_TXCLK", 28, UNIPHIER_PIN_DRV_3BIT),
14 UNIPHIER_PINCTRL_PIN(41, "RGMII_TXD0", 29, UNIPHIER_PIN_DRV_3BIT),
15 UNIPHIER_PINCTRL_PIN(42, "RGMII_TXD1", 30, UNIPHIER_PIN_DRV_3BIT),
16 UNIPHIER_PINCTRL_PIN(43, "RGMII_TXD2", 31, UNIPHIER_PIN_DRV_3BIT),
17 UNIPHIER_PINCTRL_PIN(44, "RGMII_TXD3", 32, UNIPHIER_PIN_DRV_3BIT),
18 UNIPHIER_PINCTRL_PIN(45, "RGMII_TXCTL", 33, UNIPHIER_PIN_DRV_3BIT),
19};
20
Masahiro Yamadaec743112016-03-24 22:32:46 +090021static const unsigned emmc_pins[] = {18, 19, 20, 21, 22, 23, 24, 25};
Masahiro Yamada9447e132016-06-29 19:38:59 +090022static const int emmc_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090023static const unsigned emmc_dat8_pins[] = {26, 27, 28, 29};
Masahiro Yamada9447e132016-06-29 19:38:59 +090024static const int emmc_dat8_muxvals[] = {0, 0, 0, 0};
Masahiro Yamadacc94a982016-06-29 19:39:01 +090025static const unsigned ether_rgmii_pins[] = {30, 31, 32, 33, 34, 35, 36, 37, 38,
26 39, 40, 41, 42, 43, 44, 45};
27static const int ether_rgmii_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
28 0, 0, 0, 0};
29static const unsigned ether_rmii_pins[] = {30, 31, 32, 33, 34, 35, 36, 37, 39,
30 41, 42, 45};
Masahiro Yamada521c3de2017-01-17 21:07:35 +090031static const int ether_rmii_muxvals[] = {0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090032static const unsigned i2c0_pins[] = {63, 64};
Masahiro Yamada9447e132016-06-29 19:38:59 +090033static const int i2c0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090034static const unsigned i2c1_pins[] = {65, 66};
Masahiro Yamada9447e132016-06-29 19:38:59 +090035static const int i2c1_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090036static const unsigned i2c3_pins[] = {67, 68};
Masahiro Yamada9447e132016-06-29 19:38:59 +090037static const int i2c3_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090038static const unsigned i2c4_pins[] = {61, 62};
Masahiro Yamada9447e132016-06-29 19:38:59 +090039static const int i2c4_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090040static const unsigned nand_pins[] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
Masahiro Yamada3eb13a82016-04-21 14:43:11 +090041 15, 16, 17};
Masahiro Yamada9447e132016-06-29 19:38:59 +090042static 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 +090043static const unsigned sd_pins[] = {10, 11, 12, 13, 14, 15, 16, 17};
Masahiro Yamada9447e132016-06-29 19:38:59 +090044static const int sd_muxvals[] = {3, 3, 3, 3, 3, 3, 3, 3}; /* No SDVOLC */
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090045static const unsigned spi0_pins[] = {56, 57, 58, 59};
46static const int spi0_muxvals[] = {0, 0, 0, 0};
47static const unsigned spi1_pins[] = {169, 170, 171, 172};
48static const int spi1_muxvals[] = {1, 1, 1, 1};
49static const unsigned spi2_pins[] = {86, 87, 88, 89};
50static const int spi2_muxvals[] = {1, 1, 1, 1};
51static const unsigned spi3_pins[] = {74, 75, 76, 77};
52static const int spi3_muxvals[] = {1, 1, 1, 1};
Masahiro Yamada82a51782016-09-14 01:06:04 +090053static const unsigned system_bus_pins[] = {1, 2, 6, 7, 8, 9, 10, 11, 12, 13,
54 14, 15, 16, 17};
55static const int system_bus_muxvals[] = {0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
56 2};
57static const unsigned system_bus_cs1_pins[] = {0};
58static const int system_bus_cs1_muxvals[] = {0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090059static const unsigned uart0_pins[] = {54, 55};
Masahiro Yamada9447e132016-06-29 19:38:59 +090060static const int uart0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090061static const unsigned uart1_pins[] = {58, 59};
Masahiro Yamada9447e132016-06-29 19:38:59 +090062static const int uart1_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090063static const unsigned uart2_pins[] = {90, 91};
Masahiro Yamada9447e132016-06-29 19:38:59 +090064static const int uart2_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090065static const unsigned uart3_pins[] = {94, 95};
Masahiro Yamada9447e132016-06-29 19:38:59 +090066static const int uart3_muxvals[] = {1, 1};
Masahiro Yamadaec743112016-03-24 22:32:46 +090067static const unsigned usb0_pins[] = {46, 47};
Masahiro Yamada9447e132016-06-29 19:38:59 +090068static const int usb0_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090069static const unsigned usb1_pins[] = {48, 49};
Masahiro Yamada9447e132016-06-29 19:38:59 +090070static const int usb1_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090071static const unsigned usb2_pins[] = {50, 51};
Masahiro Yamada9447e132016-06-29 19:38:59 +090072static const int usb2_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090073static const unsigned usb3_pins[] = {52, 53};
Masahiro Yamada9447e132016-06-29 19:38:59 +090074static const int usb3_muxvals[] = {0, 0};
Masahiro Yamadaec743112016-03-24 22:32:46 +090075
76static const struct uniphier_pinctrl_group uniphier_ld20_groups[] = {
77 UNIPHIER_PINCTRL_GROUP(emmc),
78 UNIPHIER_PINCTRL_GROUP(emmc_dat8),
Masahiro Yamadacc94a982016-06-29 19:39:01 +090079 UNIPHIER_PINCTRL_GROUP(ether_rgmii),
80 UNIPHIER_PINCTRL_GROUP(ether_rmii),
Masahiro Yamadaec743112016-03-24 22:32:46 +090081 UNIPHIER_PINCTRL_GROUP(i2c0),
82 UNIPHIER_PINCTRL_GROUP(i2c1),
83 UNIPHIER_PINCTRL_GROUP(i2c3),
84 UNIPHIER_PINCTRL_GROUP(i2c4),
85 UNIPHIER_PINCTRL_GROUP(nand),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090086 UNIPHIER_PINCTRL_GROUP(sd),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090087 UNIPHIER_PINCTRL_GROUP(spi0),
88 UNIPHIER_PINCTRL_GROUP(spi1),
89 UNIPHIER_PINCTRL_GROUP(spi2),
90 UNIPHIER_PINCTRL_GROUP(spi3),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +090091 UNIPHIER_PINCTRL_GROUP(system_bus),
92 UNIPHIER_PINCTRL_GROUP(system_bus_cs1),
93 UNIPHIER_PINCTRL_GROUP(uart0),
94 UNIPHIER_PINCTRL_GROUP(uart1),
95 UNIPHIER_PINCTRL_GROUP(uart2),
96 UNIPHIER_PINCTRL_GROUP(uart3),
Masahiro Yamadaec743112016-03-24 22:32:46 +090097 UNIPHIER_PINCTRL_GROUP(usb0),
98 UNIPHIER_PINCTRL_GROUP(usb1),
99 UNIPHIER_PINCTRL_GROUP(usb2),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +0900100 UNIPHIER_PINCTRL_GROUP(usb3),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900101};
102
103static const char * const uniphier_ld20_functions[] = {
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900104 UNIPHIER_PINMUX_FUNCTION(emmc),
Masahiro Yamadacc94a982016-06-29 19:39:01 +0900105 UNIPHIER_PINMUX_FUNCTION(ether_rgmii),
106 UNIPHIER_PINMUX_FUNCTION(ether_rmii),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900107 UNIPHIER_PINMUX_FUNCTION(i2c0),
108 UNIPHIER_PINMUX_FUNCTION(i2c1),
109 UNIPHIER_PINMUX_FUNCTION(i2c3),
110 UNIPHIER_PINMUX_FUNCTION(i2c4),
111 UNIPHIER_PINMUX_FUNCTION(nand),
112 UNIPHIER_PINMUX_FUNCTION(sd),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +0900113 UNIPHIER_PINMUX_FUNCTION(spi0),
114 UNIPHIER_PINMUX_FUNCTION(spi1),
115 UNIPHIER_PINMUX_FUNCTION(spi2),
116 UNIPHIER_PINMUX_FUNCTION(spi3),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +0900117 UNIPHIER_PINMUX_FUNCTION(system_bus),
118 UNIPHIER_PINMUX_FUNCTION(uart0),
119 UNIPHIER_PINMUX_FUNCTION(uart1),
120 UNIPHIER_PINMUX_FUNCTION(uart2),
121 UNIPHIER_PINMUX_FUNCTION(uart3),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +0900122 UNIPHIER_PINMUX_FUNCTION(usb0),
123 UNIPHIER_PINMUX_FUNCTION(usb1),
124 UNIPHIER_PINMUX_FUNCTION(usb2),
125 UNIPHIER_PINMUX_FUNCTION(usb3),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900126};
127
128static struct uniphier_pinctrl_socdata uniphier_ld20_pinctrl_socdata = {
Masahiro Yamada6549c432018-05-05 19:53:56 +0900129 .pins = uniphier_ld20_pins,
130 .pins_count = ARRAY_SIZE(uniphier_ld20_pins),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900131 .groups = uniphier_ld20_groups,
132 .groups_count = ARRAY_SIZE(uniphier_ld20_groups),
133 .functions = uniphier_ld20_functions,
134 .functions_count = ARRAY_SIZE(uniphier_ld20_functions),
Masahiro Yamada140e9f12017-02-12 18:21:15 +0900135 .caps = UNIPHIER_PINCTRL_CAPS_PUPD_SIMPLE |
136 UNIPHIER_PINCTRL_CAPS_PERPIN_IECTRL,
Masahiro Yamadaec743112016-03-24 22:32:46 +0900137};
138
139static int uniphier_ld20_pinctrl_probe(struct udevice *dev)
140{
141 return uniphier_pinctrl_probe(dev, &uniphier_ld20_pinctrl_socdata);
142}
143
144static const struct udevice_id uniphier_ld20_pinctrl_match[] = {
Masahiro Yamada13d8ac32016-06-29 19:38:57 +0900145 { .compatible = "socionext,uniphier-ld20-pinctrl" },
Masahiro Yamadaec743112016-03-24 22:32:46 +0900146 { /* sentinel */ }
147};
148
149U_BOOT_DRIVER(uniphier_ld20_pinctrl) = {
150 .name = "uniphier-ld20-pinctrl",
151 .id = UCLASS_PINCTRL,
152 .of_match = of_match_ptr(uniphier_ld20_pinctrl_match),
153 .probe = uniphier_ld20_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700154 .priv_auto = sizeof(struct uniphier_pinctrl_priv),
Masahiro Yamadaec743112016-03-24 22:32:46 +0900155 .ops = &uniphier_pinctrl_ops,
156};