1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright 2017 Google, Inc 4 */ 5 6 #include <common.h> 7 #include <dm.h> 8 #include <errno.h> 9 #include <asm/io.h> 10 #include <asm/arch/pinctrl.h> 11 #include <asm/arch/scu_ast2500.h> 12 #include <dm/pinctrl.h> 13 #include "pinctrl-aspeed.h" 14 /* 15 * This driver works with very simple configuration that has the same name 16 * for group and function. This way it is compatible with the Linux Kernel 17 * driver. 18 */ 19 20 struct ast2500_pinctrl_priv { 21 struct ast2500_scu *scu; 22 }; 23 24 static int ast2500_pinctrl_probe(struct udevice *dev) 25 { 26 struct ast2500_pinctrl_priv *priv = dev_get_priv(dev); 27 struct udevice *clk_dev; 28 int ret = 0; 29 30 /* find SCU base address from clock device */ 31 ret = uclass_get_device_by_driver(UCLASS_CLK, DM_GET_DRIVER(aspeed_scu), 32 &clk_dev); 33 if (ret) { 34 debug("clock device not found\n"); 35 return ret; 36 } 37 38 priv->scu = devfdt_get_addr_ptr(clk_dev); 39 if (IS_ERR(priv->scu)) { 40 debug("%s(): can't get SCU\n", __func__); 41 return PTR_ERR(priv->scu); 42 } 43 44 return 0; 45 } 46 47 static struct aspeed_sig_desc mac1_link[] = { 48 { 0x80, BIT(0), 0 }, 49 }; 50 51 static struct aspeed_sig_desc mac2_link[] = { 52 { 0x80, BIT(1), 0 }, 53 }; 54 55 static struct aspeed_sig_desc mdio1_link[] = { 56 { 0x88, BIT(31) | BIT(30), 0 }, 57 }; 58 59 static struct aspeed_sig_desc mdio2_link[] = { 60 { 0x90, BIT(2), 0 }, 61 }; 62 63 static struct aspeed_sig_desc i2c3_link[] = { 64 { 0x90, BIT(16), 0 }, 65 }; 66 67 static struct aspeed_sig_desc i2c4_link[] = { 68 { 0x90, BIT(17), 0 }, 69 }; 70 71 static struct aspeed_sig_desc i2c5_link[] = { 72 { 0x90, BIT(18), 0 }, 73 }; 74 75 static struct aspeed_sig_desc i2c6_link[] = { 76 { 0x90, BIT(19), 0 }, 77 }; 78 79 static struct aspeed_sig_desc i2c7_link[] = { 80 { 0x90, BIT(20), 0 }, 81 }; 82 83 static struct aspeed_sig_desc i2c8_link[] = { 84 { 0x90, BIT(21), 0 }, 85 }; 86 87 static struct aspeed_sig_desc i2c9_link[] = { 88 { 0x90, BIT(22), 0 }, 89 { 0x90, BIT(6), 1 }, 90 }; 91 92 static struct aspeed_sig_desc i2c10_link[] = { 93 { 0x90, BIT(23), 0 }, 94 { 0x90, BIT(0), 1 }, 95 }; 96 97 static struct aspeed_sig_desc i2c11_link[] = { 98 { 0x90, BIT(24), 0 }, 99 { 0x90, BIT(0), 1 }, 100 }; 101 102 static struct aspeed_sig_desc i2c12_link[] = { 103 { 0x90, BIT(25), 0 }, 104 { 0x90, BIT(0), 1 }, 105 }; 106 107 static struct aspeed_sig_desc i2c13_link[] = { 108 { 0x90, BIT(26), 0 }, 109 { 0x90, BIT(0), 1 }, 110 }; 111 112 static struct aspeed_sig_desc i2c14_link[] = { 113 { 0x90, BIT(27), 0 }, 114 }; 115 116 static struct aspeed_sig_desc sdio1_link[] = { 117 { 0x90, BIT(0), 0 }, 118 }; 119 120 static struct aspeed_sig_desc sdio2_link[] = { 121 { 0x90, BIT(1), 0 }, 122 }; 123 124 static const struct aspeed_group_config ast2500_groups[] = { 125 { "MAC1LINK", 1, mac1_link }, 126 { "MAC2LINK", 1, mac2_link }, 127 { "MDIO1", 1, mdio1_link }, 128 { "MDIO2", 1, mdio2_link }, 129 { "I2C3", 1, i2c3_link }, 130 { "I2C4", 1, i2c4_link }, 131 { "I2C5", 1, i2c5_link }, 132 { "I2C6", 1, i2c6_link }, 133 { "I2C7", 1, i2c7_link }, 134 { "I2C8", 1, i2c8_link }, 135 { "I2C9", 2, i2c9_link }, 136 { "I2C10", 2, i2c10_link }, 137 { "I2C11", 2, i2c11_link }, 138 { "I2C12", 2, i2c12_link }, 139 { "I2C13", 2, i2c13_link }, 140 { "I2C14", 1, i2c14_link }, 141 { "SD2", 1, sdio2_link }, 142 { "SD1", 1, sdio1_link }, 143 }; 144 145 static int ast2500_pinctrl_get_groups_count(struct udevice *dev) 146 { 147 debug("PINCTRL: get_(functions/groups)_count\n"); 148 149 return ARRAY_SIZE(ast2500_groups); 150 } 151 152 static const char *ast2500_pinctrl_get_group_name(struct udevice *dev, 153 unsigned selector) 154 { 155 debug("PINCTRL: get_(function/group)_name %u\n", selector); 156 157 return ast2500_groups[selector].group_name; 158 } 159 160 static int ast2500_pinctrl_group_set(struct udevice *dev, unsigned selector, 161 unsigned func_selector) 162 { 163 struct ast2500_pinctrl_priv *priv = dev_get_priv(dev); 164 const struct aspeed_group_config *config; 165 const struct aspeed_sig_desc *descs; 166 u32 *ctrl_reg = (u32*)priv->scu; 167 int i; 168 169 debug("PINCTRL: group_set <%u, %u> \n", selector, func_selector); 170 if (selector >= ARRAY_SIZE(ast2500_groups)) 171 return -EINVAL; 172 173 config = &ast2500_groups[selector]; 174 175 for( i = 0; i < config->ndescs; i++) { 176 descs = &config->descs[i]; 177 if(descs->clr) { 178 clrbits_le32((u32)ctrl_reg + descs->offset, descs->reg_set); 179 } else { 180 setbits_le32((u32)ctrl_reg + descs->offset, descs->reg_set); 181 } 182 } 183 184 return 0; 185 } 186 187 static struct pinctrl_ops ast2500_pinctrl_ops = { 188 .set_state = pinctrl_generic_set_state, 189 .get_groups_count = ast2500_pinctrl_get_groups_count, 190 .get_group_name = ast2500_pinctrl_get_group_name, 191 .get_functions_count = ast2500_pinctrl_get_groups_count, 192 .get_function_name = ast2500_pinctrl_get_group_name, 193 .pinmux_group_set = ast2500_pinctrl_group_set, 194 }; 195 196 static const struct udevice_id ast2500_pinctrl_ids[] = { 197 { .compatible = "aspeed,g5-pinctrl" }, 198 { } 199 }; 200 201 U_BOOT_DRIVER(pinctrl_aspeed) = { 202 .name = "aspeed_ast2500_pinctrl", 203 .id = UCLASS_PINCTRL, 204 .of_match = ast2500_pinctrl_ids, 205 .priv_auto_alloc_size = sizeof(struct ast2500_pinctrl_priv), 206 .ops = &ast2500_pinctrl_ops, 207 .probe = ast2500_pinctrl_probe, 208 }; 209