Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 2 | /* |
Masahiro Yamada | 4e3d840 | 2016-07-19 21:56:13 +0900 | [diff] [blame] | 3 | * Copyright (C) 2015-2016 Socionext Inc. |
| 4 | * Author: Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
Simon Glass | 4af0d7e | 2017-05-17 17:18:07 -0600 | [diff] [blame] | 7 | #include <common.h> |
Simon Glass | 9d92245 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 8 | #include <dm.h> |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 9 | #include <dm/pinctrl.h> |
| 10 | |
| 11 | #include "pinctrl-uniphier.h" |
| 12 | |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 13 | static const unsigned emmc_pins[] = {40, 41, 42, 43, 51, 52, 53}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 14 | static const int emmc_muxvals[] = {1, 1, 1, 1, 1, 1, 1}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 15 | static const unsigned emmc_dat8_pins[] = {44, 45, 46, 47}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 16 | static const int emmc_dat8_muxvals[] = {1, 1, 1, 1}; |
Masahiro Yamada | fc9da85 | 2016-06-29 19:39:01 +0900 | [diff] [blame] | 17 | static const unsigned ether_mii_pins[] = {160, 161, 162, 163, 164, 165, 166, |
| 18 | 167, 168, 169, 170, 171, 172, 173, |
| 19 | 174, 175, 176, 177, 178, 179}; |
| 20 | static const int ether_mii_muxvals[] = {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 21 | 0, 0, 0, 0, 0, 0, 0}; |
| 22 | static const unsigned ether_rgmii_pins[] = {160, 161, 162, 163, 164, 165, 167, |
| 23 | 168, 169, 170, 171, 172, 176, 177, |
| 24 | 178, 179}; |
| 25 | static const int ether_rgmii_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 26 | 0, 0, 0, 0}; |
| 27 | static const unsigned ether_rmii_pins[] = {160, 161, 162, 165, 168, 169, 172, |
| 28 | 173, 176, 177, 178, 179}; |
| 29 | static const int ether_rmii_muxvals[] = {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; |
| 30 | static const unsigned ether_rmiib_pins[] = {161, 162, 165, 167, 168, 169, 172, |
| 31 | 173, 176, 177, 178, 179}; |
| 32 | static const int ether_rmiib_muxvals[] = {0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 33 | static const unsigned i2c0_pins[] = {142, 143}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 34 | static const int i2c0_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 35 | static const unsigned i2c1_pins[] = {144, 145}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 36 | static const int i2c1_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 37 | static const unsigned i2c2_pins[] = {146, 147}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 38 | static const int i2c2_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 39 | static const unsigned i2c3_pins[] = {148, 149}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 40 | static const int i2c3_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 41 | static const unsigned i2c6_pins[] = {308, 309}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 42 | static const int i2c6_muxvals[] = {6, 6}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 43 | static const unsigned nand_pins[] = {40, 41, 42, 43, 44, 45, 46, 47, 48, 49, |
| 44 | 50, 51, 52, 53, 54}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 45 | static const int nand_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 46 | static const unsigned nand_cs1_pins[] = {131, 132}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 47 | static const int nand_cs1_muxvals[] = {1, 1}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 48 | static const unsigned sd_pins[] = {150, 151, 152, 153, 154, 155, 156, 157, 158}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 49 | static const int sd_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 50 | static const unsigned sd1_pins[] = {319, 320, 321, 322, 323, 324, 325, 326, |
| 51 | 327}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 52 | static const int sd1_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0}; |
Kunihiko Hayashi | d538185 | 2019-06-11 10:06:13 +0900 | [diff] [blame] | 53 | static const unsigned spi0_pins[] = {199, 200, 201, 202}; |
| 54 | static const int spi0_muxvals[] = {11, 11, 11, 11}; |
| 55 | static const unsigned spi1_pins[] = {195, 196, 197, 198, 235, 238, 239}; |
| 56 | static const int spi1_muxvals[] = {11, 11, 11, 11, 11, 11, 11}; |
Masahiro Yamada | 865a39a | 2016-09-14 01:06:04 +0900 | [diff] [blame] | 57 | static const unsigned system_bus_pins[] = {25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 58 | 34, 35, 36, 37, 38}; |
| 59 | static const int system_bus_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 60 | 0}; |
| 61 | static const unsigned system_bus_cs0_pins[] = {318}; |
| 62 | static const int system_bus_cs0_muxvals[] = {5}; |
| 63 | static const unsigned system_bus_cs1_pins[] = {24}; |
| 64 | static const int system_bus_cs1_muxvals[] = {0}; |
| 65 | static const unsigned system_bus_cs2_pins[] = {315}; |
| 66 | static const int system_bus_cs2_muxvals[] = {5}; |
| 67 | static const unsigned system_bus_cs3_pins[] = {313}; |
| 68 | static const int system_bus_cs3_muxvals[] = {5}; |
| 69 | static const unsigned system_bus_cs4_pins[] = {305}; |
| 70 | static const int system_bus_cs4_muxvals[] = {5}; |
| 71 | static const unsigned system_bus_cs5_pins[] = {303}; |
| 72 | static const int system_bus_cs5_muxvals[] = {6}; |
| 73 | static const unsigned system_bus_cs6_pins[] = {307}; |
| 74 | static const int system_bus_cs6_muxvals[] = {6}; |
| 75 | static const unsigned system_bus_cs7_pins[] = {312}; |
| 76 | static const int system_bus_cs7_muxvals[] = {6}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 77 | static const unsigned uart0_pins[] = {127, 128}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 78 | static const int uart0_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 79 | static const unsigned uart1_pins[] = {129, 130}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 80 | static const int uart1_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 81 | static const unsigned uart2_pins[] = {131, 132}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 82 | static const int uart2_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 83 | static const unsigned uart3_pins[] = {88, 89}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 84 | static const int uart3_muxvals[] = {2, 2}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 85 | static const unsigned usb0_pins[] = {180, 181}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 86 | static const int usb0_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 87 | static const unsigned usb1_pins[] = {182, 183}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 88 | static const int usb1_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 89 | static const unsigned usb2_pins[] = {184, 185}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 90 | static const int usb2_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 91 | static const unsigned usb3_pins[] = {186, 187}; |
Masahiro Yamada | 5e25b9d | 2016-06-29 19:38:59 +0900 | [diff] [blame] | 92 | static const int usb3_muxvals[] = {0, 0}; |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 93 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 94 | static const struct uniphier_pinctrl_group uniphier_pro4_groups[] = { |
Masahiro Yamada | 64c1cc4 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 95 | UNIPHIER_PINCTRL_GROUP_SPL(emmc), |
| 96 | UNIPHIER_PINCTRL_GROUP_SPL(emmc_dat8), |
Masahiro Yamada | fc9da85 | 2016-06-29 19:39:01 +0900 | [diff] [blame] | 97 | UNIPHIER_PINCTRL_GROUP(ether_mii), |
| 98 | UNIPHIER_PINCTRL_GROUP(ether_rgmii), |
| 99 | UNIPHIER_PINCTRL_GROUP(ether_rmii), |
| 100 | UNIPHIER_PINCTRL_GROUP(ether_rmiib), |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 101 | UNIPHIER_PINCTRL_GROUP(i2c0), |
| 102 | UNIPHIER_PINCTRL_GROUP(i2c1), |
| 103 | UNIPHIER_PINCTRL_GROUP(i2c2), |
| 104 | UNIPHIER_PINCTRL_GROUP(i2c3), |
| 105 | UNIPHIER_PINCTRL_GROUP(i2c6), |
| 106 | UNIPHIER_PINCTRL_GROUP(nand), |
| 107 | UNIPHIER_PINCTRL_GROUP(nand_cs1), |
| 108 | UNIPHIER_PINCTRL_GROUP(sd), |
| 109 | UNIPHIER_PINCTRL_GROUP(sd1), |
Kunihiko Hayashi | d538185 | 2019-06-11 10:06:13 +0900 | [diff] [blame] | 110 | UNIPHIER_PINCTRL_GROUP(spi0), |
| 111 | UNIPHIER_PINCTRL_GROUP(spi1), |
Masahiro Yamada | 865a39a | 2016-09-14 01:06:04 +0900 | [diff] [blame] | 112 | UNIPHIER_PINCTRL_GROUP(system_bus), |
| 113 | UNIPHIER_PINCTRL_GROUP(system_bus_cs0), |
| 114 | UNIPHIER_PINCTRL_GROUP(system_bus_cs1), |
| 115 | UNIPHIER_PINCTRL_GROUP(system_bus_cs2), |
| 116 | UNIPHIER_PINCTRL_GROUP(system_bus_cs3), |
| 117 | UNIPHIER_PINCTRL_GROUP(system_bus_cs4), |
| 118 | UNIPHIER_PINCTRL_GROUP(system_bus_cs5), |
| 119 | UNIPHIER_PINCTRL_GROUP(system_bus_cs6), |
| 120 | UNIPHIER_PINCTRL_GROUP(system_bus_cs7), |
Masahiro Yamada | 64c1cc4 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 121 | UNIPHIER_PINCTRL_GROUP_SPL(uart0), |
| 122 | UNIPHIER_PINCTRL_GROUP_SPL(uart1), |
| 123 | UNIPHIER_PINCTRL_GROUP_SPL(uart2), |
| 124 | UNIPHIER_PINCTRL_GROUP_SPL(uart3), |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 125 | UNIPHIER_PINCTRL_GROUP(usb0), |
| 126 | UNIPHIER_PINCTRL_GROUP(usb1), |
| 127 | UNIPHIER_PINCTRL_GROUP(usb2), |
| 128 | UNIPHIER_PINCTRL_GROUP(usb3), |
| 129 | }; |
| 130 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 131 | static const char * const uniphier_pro4_functions[] = { |
Masahiro Yamada | 64c1cc4 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 132 | UNIPHIER_PINMUX_FUNCTION_SPL(emmc), |
Masahiro Yamada | fc9da85 | 2016-06-29 19:39:01 +0900 | [diff] [blame] | 133 | UNIPHIER_PINMUX_FUNCTION(ether_mii), |
| 134 | UNIPHIER_PINMUX_FUNCTION(ether_rgmii), |
| 135 | UNIPHIER_PINMUX_FUNCTION(ether_rmii), |
Masahiro Yamada | 64c1cc4 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 136 | UNIPHIER_PINMUX_FUNCTION(i2c0), |
| 137 | UNIPHIER_PINMUX_FUNCTION(i2c1), |
| 138 | UNIPHIER_PINMUX_FUNCTION(i2c2), |
| 139 | UNIPHIER_PINMUX_FUNCTION(i2c3), |
| 140 | UNIPHIER_PINMUX_FUNCTION(i2c6), |
| 141 | UNIPHIER_PINMUX_FUNCTION(nand), |
| 142 | UNIPHIER_PINMUX_FUNCTION(sd), |
| 143 | UNIPHIER_PINMUX_FUNCTION(sd1), |
Kunihiko Hayashi | d538185 | 2019-06-11 10:06:13 +0900 | [diff] [blame] | 144 | UNIPHIER_PINMUX_FUNCTION(spi0), |
| 145 | UNIPHIER_PINMUX_FUNCTION(spi1), |
Masahiro Yamada | 865a39a | 2016-09-14 01:06:04 +0900 | [diff] [blame] | 146 | UNIPHIER_PINMUX_FUNCTION(system_bus), |
Masahiro Yamada | 64c1cc4 | 2016-06-29 19:39:00 +0900 | [diff] [blame] | 147 | UNIPHIER_PINMUX_FUNCTION_SPL(uart0), |
| 148 | UNIPHIER_PINMUX_FUNCTION_SPL(uart1), |
| 149 | UNIPHIER_PINMUX_FUNCTION_SPL(uart2), |
| 150 | UNIPHIER_PINMUX_FUNCTION_SPL(uart3), |
| 151 | UNIPHIER_PINMUX_FUNCTION(usb0), |
| 152 | UNIPHIER_PINMUX_FUNCTION(usb1), |
| 153 | UNIPHIER_PINMUX_FUNCTION(usb2), |
| 154 | UNIPHIER_PINMUX_FUNCTION(usb3), |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 155 | }; |
| 156 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 157 | static struct uniphier_pinctrl_socdata uniphier_pro4_pinctrl_socdata = { |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 158 | .groups = uniphier_pro4_groups, |
| 159 | .groups_count = ARRAY_SIZE(uniphier_pro4_groups), |
| 160 | .functions = uniphier_pro4_functions, |
| 161 | .functions_count = ARRAY_SIZE(uniphier_pro4_functions), |
Masahiro Yamada | 8cc92b9 | 2016-03-24 22:32:44 +0900 | [diff] [blame] | 162 | .caps = UNIPHIER_PINCTRL_CAPS_DBGMUX_SEPARATE, |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 163 | }; |
| 164 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 165 | static int uniphier_pro4_pinctrl_probe(struct udevice *dev) |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 166 | { |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 167 | return uniphier_pinctrl_probe(dev, &uniphier_pro4_pinctrl_socdata); |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 168 | } |
| 169 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 170 | static const struct udevice_id uniphier_pro4_pinctrl_match[] = { |
Masahiro Yamada | 186c133 | 2016-06-29 19:38:57 +0900 | [diff] [blame] | 171 | { .compatible = "socionext,uniphier-pro4-pinctrl" }, |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 172 | { /* sentinel */ } |
| 173 | }; |
| 174 | |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 175 | U_BOOT_DRIVER(uniphier_pro4_pinctrl) = { |
| 176 | .name = "uniphier-pro4-pinctrl", |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 177 | .id = UCLASS_PINCTRL, |
Masahiro Yamada | ac13ce4 | 2016-04-21 14:43:10 +0900 | [diff] [blame] | 178 | .of_match = of_match_ptr(uniphier_pro4_pinctrl_match), |
| 179 | .probe = uniphier_pro4_pinctrl_probe, |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 180 | .priv_auto_alloc_size = sizeof(struct uniphier_pinctrl_priv), |
| 181 | .ops = &uniphier_pinctrl_ops, |
Bin Meng | ad0e804 | 2018-10-24 06:36:33 -0700 | [diff] [blame] | 182 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 183 | .flags = DM_FLAG_PRE_RELOC, |
Bin Meng | ad0e804 | 2018-10-24 06:36:33 -0700 | [diff] [blame] | 184 | #endif |
Masahiro Yamada | a343812 | 2015-09-11 20:17:34 +0900 | [diff] [blame] | 185 | }; |