blob: 778a9899483c8cbb905469af9fe84a62ec032866 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamadae637a8e2016-06-29 19:38:58 +09002/*
3 * Copyright (C) 2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadae637a8e2016-06-29 19:38:58 +09005 */
6
Simon Glass11c89f32017-05-17 17:18:03 -06007#include <dm.h>
Masahiro Yamadae637a8e2016-06-29 19:38:58 +09008#include <dm/pinctrl.h>
9
10#include "pinctrl-uniphier.h"
11
12static const unsigned emmc_pins[] = {18, 19, 20, 21, 22, 23, 24, 25};
Masahiro Yamada9447e132016-06-29 19:38:59 +090013static const int emmc_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090014static const unsigned emmc_dat8_pins[] = {26, 27, 28, 29};
Masahiro Yamada9447e132016-06-29 19:38:59 +090015static const int emmc_dat8_muxvals[] = {0, 0, 0, 0};
Masahiro Yamadacc94a982016-06-29 19:39:01 +090016static const unsigned ether_rmii_pins[] = {6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
17 16, 17};
18static const int ether_rmii_muxvals[] = {4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090019static const unsigned i2c0_pins[] = {63, 64};
Masahiro Yamada9447e132016-06-29 19:38:59 +090020static const int i2c0_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090021static const unsigned i2c1_pins[] = {65, 66};
Masahiro Yamada9447e132016-06-29 19:38:59 +090022static const int i2c1_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090023static const unsigned i2c3_pins[] = {67, 68};
Masahiro Yamada9447e132016-06-29 19:38:59 +090024static const int i2c3_muxvals[] = {1, 1};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090025static const unsigned i2c4_pins[] = {61, 62};
Masahiro Yamada9447e132016-06-29 19:38:59 +090026static const int i2c4_muxvals[] = {1, 1};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090027static const unsigned nand_pins[] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
28 15, 16, 17};
Masahiro Yamada9447e132016-06-29 19:38:59 +090029static const int nand_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090030static const unsigned spi0_pins[] = {56, 57, 58, 59};
31static const int spi0_muxvals[] = {0, 0, 0, 0};
32static const unsigned spi1_pins[] = {169, 170, 171, 172};
33static const int spi1_muxvals[] = {1, 1, 1, 1};
Masahiro Yamada82a51782016-09-14 01:06:04 +090034static const unsigned system_bus_pins[] = {1, 2, 6, 7, 8, 9, 10, 11, 12, 13,
35 14, 15, 16, 17};
36static const int system_bus_muxvals[] = {0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
37 2};
38static const unsigned system_bus_cs1_pins[] = {0};
39static const int system_bus_cs1_muxvals[] = {0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090040static const unsigned uart0_pins[] = {54, 55};
Masahiro Yamada9447e132016-06-29 19:38:59 +090041static const int uart0_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090042static const unsigned uart1_pins[] = {58, 59};
Masahiro Yamada9447e132016-06-29 19:38:59 +090043static const int uart1_muxvals[] = {1, 1};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090044static const unsigned uart2_pins[] = {90, 91};
Masahiro Yamada9447e132016-06-29 19:38:59 +090045static const int uart2_muxvals[] = {1, 1};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090046static const unsigned uart3_pins[] = {94, 95};
Masahiro Yamada9447e132016-06-29 19:38:59 +090047static const int uart3_muxvals[] = {1, 1};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090048static const unsigned usb0_pins[] = {46, 47};
Masahiro Yamada9447e132016-06-29 19:38:59 +090049static const int usb0_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090050static const unsigned usb1_pins[] = {48, 49};
Masahiro Yamada9447e132016-06-29 19:38:59 +090051static const int usb1_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090052static const unsigned usb2_pins[] = {50, 51};
Masahiro Yamada9447e132016-06-29 19:38:59 +090053static const int usb2_muxvals[] = {0, 0};
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090054
55static const struct uniphier_pinctrl_group uniphier_ld11_groups[] = {
56 UNIPHIER_PINCTRL_GROUP(emmc),
57 UNIPHIER_PINCTRL_GROUP(emmc_dat8),
Masahiro Yamadacc94a982016-06-29 19:39:01 +090058 UNIPHIER_PINCTRL_GROUP(ether_rmii),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090059 UNIPHIER_PINCTRL_GROUP(i2c0),
60 UNIPHIER_PINCTRL_GROUP(i2c1),
61 UNIPHIER_PINCTRL_GROUP(i2c3),
62 UNIPHIER_PINCTRL_GROUP(i2c4),
63 UNIPHIER_PINCTRL_GROUP(nand),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090064 UNIPHIER_PINCTRL_GROUP(spi0),
65 UNIPHIER_PINCTRL_GROUP(spi1),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +090066 UNIPHIER_PINCTRL_GROUP(system_bus),
67 UNIPHIER_PINCTRL_GROUP(system_bus_cs1),
68 UNIPHIER_PINCTRL_GROUP(uart0),
69 UNIPHIER_PINCTRL_GROUP(uart1),
70 UNIPHIER_PINCTRL_GROUP(uart2),
71 UNIPHIER_PINCTRL_GROUP(uart3),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090072 UNIPHIER_PINCTRL_GROUP(usb0),
73 UNIPHIER_PINCTRL_GROUP(usb1),
74 UNIPHIER_PINCTRL_GROUP(usb2),
75};
76
77static const char * const uniphier_ld11_functions[] = {
Masahiro Yamada65ef4f72016-06-29 19:39:00 +090078 UNIPHIER_PINMUX_FUNCTION(emmc),
Masahiro Yamadacc94a982016-06-29 19:39:01 +090079 UNIPHIER_PINMUX_FUNCTION(ether_rmii),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +090080 UNIPHIER_PINMUX_FUNCTION(i2c0),
81 UNIPHIER_PINMUX_FUNCTION(i2c1),
82 UNIPHIER_PINMUX_FUNCTION(i2c3),
83 UNIPHIER_PINMUX_FUNCTION(i2c4),
84 UNIPHIER_PINMUX_FUNCTION(nand),
Kunihiko Hayashi9cc3bf62019-06-11 10:06:13 +090085 UNIPHIER_PINMUX_FUNCTION(spi0),
86 UNIPHIER_PINMUX_FUNCTION(spi1),
Masahiro Yamada3f8e1662017-07-13 20:32:15 +090087 UNIPHIER_PINMUX_FUNCTION(system_bus),
88 UNIPHIER_PINMUX_FUNCTION(uart0),
89 UNIPHIER_PINMUX_FUNCTION(uart1),
90 UNIPHIER_PINMUX_FUNCTION(uart2),
91 UNIPHIER_PINMUX_FUNCTION(uart3),
Masahiro Yamada65ef4f72016-06-29 19:39:00 +090092 UNIPHIER_PINMUX_FUNCTION(usb0),
93 UNIPHIER_PINMUX_FUNCTION(usb1),
94 UNIPHIER_PINMUX_FUNCTION(usb2),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +090095};
96
97static struct uniphier_pinctrl_socdata uniphier_ld11_pinctrl_socdata = {
98 .groups = uniphier_ld11_groups,
99 .groups_count = ARRAY_SIZE(uniphier_ld11_groups),
100 .functions = uniphier_ld11_functions,
101 .functions_count = ARRAY_SIZE(uniphier_ld11_functions),
Masahiro Yamada140e9f12017-02-12 18:21:15 +0900102 .caps = UNIPHIER_PINCTRL_CAPS_PUPD_SIMPLE |
103 UNIPHIER_PINCTRL_CAPS_PERPIN_IECTRL,
Masahiro Yamadae637a8e2016-06-29 19:38:58 +0900104};
105
106static int uniphier_ld11_pinctrl_probe(struct udevice *dev)
107{
108 return uniphier_pinctrl_probe(dev, &uniphier_ld11_pinctrl_socdata);
109}
110
111static const struct udevice_id uniphier_ld11_pinctrl_match[] = {
112 { .compatible = "socionext,uniphier-ld11-pinctrl" },
113 { /* sentinel */ }
114};
115
116U_BOOT_DRIVER(uniphier_ld11_pinctrl) = {
117 .name = "uniphier-ld11-pinctrl",
118 .id = UCLASS_PINCTRL,
119 .of_match = of_match_ptr(uniphier_ld11_pinctrl_match),
120 .probe = uniphier_ld11_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700121 .priv_auto = sizeof(struct uniphier_pinctrl_priv),
Masahiro Yamadae637a8e2016-06-29 19:38:58 +0900122 .ops = &uniphier_pinctrl_ops,
123};