1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-02 16:01:30 +02:00
Files
u-boot-megous/drivers/pinctrl/aspeed/pinctrl_ast2600.c
Tom Rini d678a59d2d Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay
Ethernet"' I failed to notice that b4 noticed it was based on next and
so took that as the base commit and merged that part of next to master.

This reverts commit c8ffd1356d, reversing
changes made to 2ee6f3a5f7.

Reported-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-19 08:16:36 -06:00

610 lines
15 KiB
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) ASPEED Technology Inc.
*/
#include <common.h>
#include <errno.h>
#include <asm/arch/pinctrl.h>
#include <asm/arch/scu_ast2600.h>
#include <asm/io.h>
#include <dm.h>
#include <dm/pinctrl.h>
#include <linux/bitops.h>
#include <linux/err.h>
/*
* This driver works with very simple configuration that has the same name
* for group and function. This way it is compatible with the Linux Kernel
* driver.
*/
struct aspeed_sig_desc {
u32 offset;
u32 reg_set;
int clr;
};
struct aspeed_group_config {
char *group_name;
int ndescs;
struct aspeed_sig_desc *descs;
};
struct ast2600_pinctrl_priv {
struct ast2600_scu *scu;
};
static int ast2600_pinctrl_probe(struct udevice *dev)
{
struct ast2600_pinctrl_priv *priv = dev_get_priv(dev);
struct udevice *clk_dev;
int ret = 0;
/* find SCU base address from clock device */
uclass_get_device_by_driver(UCLASS_CLK, DM_DRIVER_GET(aspeed_ast2600_scu), &clk_dev);
if (ret)
return ret;
priv->scu = dev_read_addr_ptr(clk_dev);
if (IS_ERR(priv->scu))
return PTR_ERR(priv->scu);
return 0;
}
static struct aspeed_sig_desc i2c1_link[] = {
{ 0x418, GENMASK(9, 8), 1 },
{ 0x4B8, GENMASK(9, 8), 0 },
};
static struct aspeed_sig_desc i2c2_link[] = {
{ 0x418, GENMASK(11, 10), 1 },
{ 0x4B8, GENMASK(11, 10), 0 },
};
static struct aspeed_sig_desc i2c3_link[] = {
{ 0x418, GENMASK(13, 12), 1 },
{ 0x4B8, GENMASK(13, 12), 0 },
};
static struct aspeed_sig_desc i2c4_link[] = {
{ 0x418, GENMASK(15, 14), 1 },
{ 0x4B8, GENMASK(15, 14), 0 },
};
static struct aspeed_sig_desc i2c5_link[] = {
{ 0x418, GENMASK(17, 16), 0 },
};
static struct aspeed_sig_desc i2c6_link[] = {
{ 0x418, GENMASK(19, 18), 0 },
};
static struct aspeed_sig_desc i2c7_link[] = {
{ 0x418, GENMASK(21, 20), 0 },
};
static struct aspeed_sig_desc i2c8_link[] = {
{ 0x418, GENMASK(23, 22), 0 },
};
static struct aspeed_sig_desc i2c9_link[] = {
{ 0x418, GENMASK(25, 24), 0 },
};
static struct aspeed_sig_desc i2c10_link[] = {
{ 0x418, GENMASK(27, 26), 0 },
};
static struct aspeed_sig_desc i2c11_link[] = {
{ 0x410, GENMASK(1, 0), 1 },
{ 0x4B0, GENMASK(1, 0), 0 },
};
static struct aspeed_sig_desc i2c12_link[] = {
{ 0x410, GENMASK(3, 2), 1 },
{ 0x4B0, GENMASK(3, 2), 0 },
};
static struct aspeed_sig_desc i2c13_link[] = {
{ 0x410, GENMASK(5, 4), 1 },
{ 0x4B0, GENMASK(5, 4), 0 },
};
static struct aspeed_sig_desc i2c14_link[] = {
{ 0x410, GENMASK(7, 6), 1 },
{ 0x4B0, GENMASK(7, 6), 0 },
};
static struct aspeed_sig_desc i2c15_link[] = {
{ 0x414, GENMASK(29, 28), 1 },
{ 0x4B4, GENMASK(29, 28), 0 },
};
static struct aspeed_sig_desc i2c16_link[] = {
{ 0x414, GENMASK(31, 30), 1 },
{ 0x4B4, GENMASK(31, 30), 0 },
};
static struct aspeed_sig_desc mac1_link[] = {
{ 0x410, BIT(4), 0 },
{ 0x470, BIT(4), 1 },
};
static struct aspeed_sig_desc mac2_link[] = {
{ 0x410, BIT(5), 0 },
{ 0x470, BIT(5), 1 },
};
static struct aspeed_sig_desc mac3_link[] = {
{ 0x410, BIT(6), 0 },
{ 0x470, BIT(6), 1 },
};
static struct aspeed_sig_desc mac4_link[] = {
{ 0x410, BIT(7), 0 },
{ 0x470, BIT(7), 1 },
};
static struct aspeed_sig_desc rgmii1[] = {
{ 0x500, BIT(6), 0 },
{ 0x400, GENMASK(11, 0), 0 },
};
static struct aspeed_sig_desc rgmii2[] = {
{ 0x500, BIT(7), 0 },
{ 0x400, GENMASK(23, 12), 0 },
};
static struct aspeed_sig_desc rgmii3[] = {
{ 0x510, BIT(0), 0 },
{ 0x410, GENMASK(27, 16), 0 },
};
static struct aspeed_sig_desc rgmii4[] = {
{ 0x510, BIT(1), 0 },
{ 0x410, GENMASK(31, 28), 1 },
{ 0x4b0, GENMASK(31, 28), 0 },
{ 0x474, GENMASK(7, 0), 1 },
{ 0x414, GENMASK(7, 0), 1 },
{ 0x4b4, GENMASK(7, 0), 0 },
};
static struct aspeed_sig_desc rmii1[] = {
{ 0x504, BIT(6), 0 },
{ 0x400, GENMASK(3, 0), 0 },
{ 0x400, GENMASK(11, 6), 0 },
};
static struct aspeed_sig_desc rmii2[] = {
{ 0x504, BIT(7), 0 },
{ 0x400, GENMASK(15, 12), 0 },
{ 0x400, GENMASK(23, 18), 0 },
};
static struct aspeed_sig_desc rmii3[] = {
{ 0x514, BIT(0), 0 },
{ 0x410, GENMASK(27, 22), 0 },
{ 0x410, GENMASK(19, 16), 0 },
};
static struct aspeed_sig_desc rmii4[] = {
{ 0x514, BIT(1), 0 },
{ 0x410, GENMASK(7, 2), 1 },
{ 0x410, GENMASK(31, 28), 1 },
{ 0x414, GENMASK(7, 2), 1 },
{ 0x4B0, GENMASK(31, 28), 0 },
{ 0x4B4, GENMASK(7, 2), 0 },
};
static struct aspeed_sig_desc rmii1_rclk_oe[] = {
{ 0x340, BIT(29), 0 },
};
static struct aspeed_sig_desc rmii2_rclk_oe[] = {
{ 0x340, BIT(30), 0 },
};
static struct aspeed_sig_desc rmii3_rclk_oe[] = {
{ 0x350, BIT(29), 0 },
};
static struct aspeed_sig_desc rmii4_rclk_oe[] = {
{ 0x350, BIT(30), 0 },
};
static struct aspeed_sig_desc mdio1_link[] = {
{ 0x430, BIT(17) | BIT(16), 0 },
};
static struct aspeed_sig_desc mdio2_link[] = {
{ 0x470, BIT(13) | BIT(12), 1 },
{ 0x410, BIT(13) | BIT(12), 0 },
};
static struct aspeed_sig_desc mdio3_link[] = {
{ 0x470, BIT(1) | BIT(0), 1 },
{ 0x410, BIT(1) | BIT(0), 0 },
};
static struct aspeed_sig_desc mdio4_link[] = {
{ 0x470, BIT(3) | BIT(2), 1 },
{ 0x410, BIT(3) | BIT(2), 0 },
};
static struct aspeed_sig_desc sdio2_link[] = {
{ 0x414, GENMASK(23, 16), 1 },
{ 0x4B4, GENMASK(23, 16), 0 },
{ 0x450, BIT(1), 0 },
};
static struct aspeed_sig_desc sdio1_link[] = {
{ 0x414, GENMASK(15, 8), 0 },
};
/* when sdio1 8bits, sdio2 can't use */
static struct aspeed_sig_desc sdio1_8bit_link[] = {
{ 0x414, GENMASK(15, 8), 0 },
{ 0x4b4, GENMASK(21, 18), 0 },
{ 0x450, BIT(3), 0 },
{ 0x450, BIT(1), 1 },
};
static struct aspeed_sig_desc emmc_link[] = {
{ 0x400, GENMASK(31, 24), 0 },
};
static struct aspeed_sig_desc emmcg8_link[] = {
{ 0x400, GENMASK(31, 24), 0 },
{ 0x404, GENMASK(3, 0), 0 },
/* set SCU504 to clear the strap bits in SCU500 */
{ 0x504, BIT(3), 0 },
{ 0x504, BIT(5), 0 },
};
static struct aspeed_sig_desc fmcquad_link[] = {
{ 0x438, GENMASK(5, 4), 0 },
};
static struct aspeed_sig_desc siopbi_link[] = {
{ 0x418, BIT(6), 0 },
};
static struct aspeed_sig_desc siopbo_link[] = {
{ 0x418, BIT(5), 0 },
};
static struct aspeed_sig_desc spi1_link[] = {
{ 0x438, GENMASK(13, 11), 0 },
};
static struct aspeed_sig_desc spi1abr_link[] = {
{ 0x438, BIT(9), 0 },
};
static struct aspeed_sig_desc spi1cs1_link[] = {
{ 0x438, BIT(8), 0 },
};
static struct aspeed_sig_desc spi1wp_link[] = {
{ 0x438, BIT(10), 0 },
};
static struct aspeed_sig_desc spi1quad_link[] = {
{ 0x438, GENMASK(15, 14), 0 },
};
static struct aspeed_sig_desc spi2_link[] = {
{ 0x434, GENMASK(29, 27) | BIT(24), 0 },
};
static struct aspeed_sig_desc spi2cs1_link[] = {
{ 0x434, BIT(25), 0 },
};
static struct aspeed_sig_desc spi2cs2_link[] = {
{ 0x434, BIT(26), 0 },
};
static struct aspeed_sig_desc spi2quad_link[] = {
{ 0x434, GENMASK(31, 30), 0 },
};
static struct aspeed_sig_desc thru0_link[] = {
{ 0x4bc, GENMASK(25, 24), 0 },
};
static struct aspeed_sig_desc thru1_link[] = {
{ 0x4bc, GENMASK(27, 26), 0 },
};
static struct aspeed_sig_desc thru2_link[] = {
{ 0x4bc, GENMASK(29, 28), 0 },
};
static struct aspeed_sig_desc thru3_link[] = {
{ 0x4bc, GENMASK(31, 30), 0 },
};
static struct aspeed_sig_desc fsi1[] = {
{ 0xd48, GENMASK(21, 20), 0 },
};
static struct aspeed_sig_desc fsi2[] = {
{ 0xd48, GENMASK(23, 22), 0 },
};
static struct aspeed_sig_desc usb2ad_link[] = {
{ 0x440, BIT(24), 0 },
{ 0x440, BIT(25), 1 },
};
static struct aspeed_sig_desc usb2ah_link[] = {
{ 0x440, BIT(24), 1 },
{ 0x440, BIT(25), 0 },
};
static struct aspeed_sig_desc usb2bh_link[] = {
{ 0x440, BIT(28), 1 },
{ 0x440, BIT(29), 0 },
};
static struct aspeed_sig_desc pcie0rc_link[] = {
{ 0x40, BIT(21), 0 },
};
static struct aspeed_sig_desc pcie1rc_link[] = {
{ 0x40, BIT(19), 0 }, /* SSPRST# output enable */
{ 0x500, BIT(24), 0 }, /* dedicate rc reset */
};
static struct aspeed_sig_desc pwm0[] = {
{0x41c, BIT(16), 0},
};
static struct aspeed_sig_desc pwm1[] = {
{0x41c, BIT(17), 0},
};
static struct aspeed_sig_desc pwm2[] = {
{0x41c, BIT(18), 0},
};
static struct aspeed_sig_desc pwm3[] = {
{0x41c, BIT(19), 0},
};
static struct aspeed_sig_desc pwm4[] = {
{0x41c, BIT(20), 0},
};
static struct aspeed_sig_desc pwm5[] = {
{0x41c, BIT(21), 0},
};
static struct aspeed_sig_desc pwm6[] = {
{0x41c, BIT(22), 0},
};
static struct aspeed_sig_desc pwm7[] = {
{0x41c, BIT(23), 0},
};
static struct aspeed_sig_desc pwm8g0[] = {
{0x4B4, BIT(8), 0},
};
static struct aspeed_sig_desc pwm8g1[] = {
{0x41c, BIT(24), 0},
};
static struct aspeed_sig_desc pwm9g0[] = {
{0x4B4, BIT(9), 0},
};
static struct aspeed_sig_desc pwm9g1[] = {
{0x41c, BIT(25), 0},
};
static struct aspeed_sig_desc pwm10g0[] = {
{0x4B4, BIT(10), 0},
};
static struct aspeed_sig_desc pwm10g1[] = {
{0x41c, BIT(26), 0},
};
static struct aspeed_sig_desc pwm11g0[] = {
{0x4B4, BIT(11), 0},
};
static struct aspeed_sig_desc pwm11g1[] = {
{0x41c, BIT(27), 0},
};
static struct aspeed_sig_desc pwm12g0[] = {
{0x4B4, BIT(12), 0},
};
static struct aspeed_sig_desc pwm12g1[] = {
{0x41c, BIT(28), 0},
};
static struct aspeed_sig_desc pwm13g0[] = {
{0x4B4, BIT(13), 0},
};
static struct aspeed_sig_desc pwm13g1[] = {
{0x41c, BIT(29), 0},
};
static struct aspeed_sig_desc pwm14g0[] = {
{0x4B4, BIT(14), 0},
};
static struct aspeed_sig_desc pwm14g1[] = {
{0x41c, BIT(30), 0},
};
static struct aspeed_sig_desc pwm15g0[] = {
{0x4B4, BIT(15), 0},
};
static struct aspeed_sig_desc pwm15g1[] = {
{0x41c, BIT(31), 0},
};
static const struct aspeed_group_config ast2600_groups[] = {
{ "MAC1LINK", ARRAY_SIZE(mac1_link), mac1_link },
{ "MAC2LINK", ARRAY_SIZE(mac2_link), mac2_link },
{ "MAC3LINK", ARRAY_SIZE(mac3_link), mac3_link },
{ "MAC4LINK", ARRAY_SIZE(mac4_link), mac4_link },
{ "RGMII1", ARRAY_SIZE(rgmii1), rgmii1 },
{ "RGMII2", ARRAY_SIZE(rgmii2), rgmii2 },
{ "RGMII3", ARRAY_SIZE(rgmii3), rgmii3 },
{ "RGMII4", ARRAY_SIZE(rgmii4), rgmii4 },
{ "RMII1", ARRAY_SIZE(rmii1), rmii1 },
{ "RMII2", ARRAY_SIZE(rmii2), rmii2 },
{ "RMII3", ARRAY_SIZE(rmii3), rmii3 },
{ "RMII4", ARRAY_SIZE(rmii4), rmii4 },
{ "RMII1RCLK", ARRAY_SIZE(rmii1_rclk_oe), rmii1_rclk_oe },
{ "RMII2RCLK", ARRAY_SIZE(rmii2_rclk_oe), rmii2_rclk_oe },
{ "RMII3RCLK", ARRAY_SIZE(rmii3_rclk_oe), rmii3_rclk_oe },
{ "RMII4RCLK", ARRAY_SIZE(rmii4_rclk_oe), rmii4_rclk_oe },
{ "MDIO1", ARRAY_SIZE(mdio1_link), mdio1_link },
{ "MDIO2", ARRAY_SIZE(mdio2_link), mdio2_link },
{ "MDIO3", ARRAY_SIZE(mdio3_link), mdio3_link },
{ "MDIO4", ARRAY_SIZE(mdio4_link), mdio4_link },
{ "SD1", ARRAY_SIZE(sdio1_link), sdio1_link },
{ "SD1_8bits", ARRAY_SIZE(sdio1_8bit_link), sdio1_8bit_link },
{ "SD2", ARRAY_SIZE(sdio2_link), sdio2_link },
{ "EMMC", ARRAY_SIZE(emmc_link), emmc_link },
{ "EMMCG8", ARRAY_SIZE(emmcg8_link), emmcg8_link },
{ "FMCQUAD", ARRAY_SIZE(fmcquad_link), fmcquad_link },
{ "SIOPBI", ARRAY_SIZE(siopbi_link), siopbi_link },
{ "SIOPBO", ARRAY_SIZE(siopbo_link), siopbo_link },
{ "SPI1", ARRAY_SIZE(spi1_link), spi1_link },
{ "SPI1ABR", ARRAY_SIZE(spi1abr_link), spi1abr_link },
{ "SPI1CS1", ARRAY_SIZE(spi1cs1_link), spi1cs1_link },
{ "SPI1WP", ARRAY_SIZE(spi1wp_link), spi1wp_link },
{ "SPI1QUAD", ARRAY_SIZE(spi1quad_link), spi1quad_link },
{ "SPI2", ARRAY_SIZE(spi2_link), spi2_link },
{ "SPI2CS1", ARRAY_SIZE(spi2cs1_link), spi2cs1_link },
{ "SPI2CS2", ARRAY_SIZE(spi2cs2_link), spi2cs2_link },
{ "SPI2QUAD", ARRAY_SIZE(spi2quad_link), spi2quad_link },
{ "THRU0", ARRAY_SIZE(thru0_link), thru0_link },
{ "THRU1", ARRAY_SIZE(thru1_link), thru1_link },
{ "THRU2", ARRAY_SIZE(thru2_link), thru2_link },
{ "THRU3", ARRAY_SIZE(thru3_link), thru3_link },
{ "I2C1", ARRAY_SIZE(i2c1_link), i2c1_link },
{ "I2C2", ARRAY_SIZE(i2c2_link), i2c2_link },
{ "I2C3", ARRAY_SIZE(i2c3_link), i2c3_link },
{ "I2C4", ARRAY_SIZE(i2c4_link), i2c4_link },
{ "I2C5", ARRAY_SIZE(i2c5_link), i2c5_link },
{ "I2C6", ARRAY_SIZE(i2c6_link), i2c6_link },
{ "I2C7", ARRAY_SIZE(i2c7_link), i2c7_link },
{ "I2C8", ARRAY_SIZE(i2c8_link), i2c8_link },
{ "I2C9", ARRAY_SIZE(i2c9_link), i2c9_link },
{ "I2C10", ARRAY_SIZE(i2c10_link), i2c10_link },
{ "I2C11", ARRAY_SIZE(i2c11_link), i2c11_link },
{ "I2C12", ARRAY_SIZE(i2c12_link), i2c12_link },
{ "I2C13", ARRAY_SIZE(i2c13_link), i2c13_link },
{ "I2C14", ARRAY_SIZE(i2c14_link), i2c14_link },
{ "I2C15", ARRAY_SIZE(i2c15_link), i2c15_link },
{ "I2C16", ARRAY_SIZE(i2c16_link), i2c16_link },
{ "FSI1", ARRAY_SIZE(fsi1), fsi1 },
{ "FSI2", ARRAY_SIZE(fsi2), fsi2 },
{ "USB2AD", ARRAY_SIZE(usb2ad_link), usb2ad_link },
{ "USB2AH", ARRAY_SIZE(usb2ah_link), usb2ah_link },
{ "USB2BH", ARRAY_SIZE(usb2bh_link), usb2bh_link },
{ "PCIE0RC", ARRAY_SIZE(pcie0rc_link), pcie0rc_link },
{ "PCIE1RC", ARRAY_SIZE(pcie1rc_link), pcie1rc_link },
{ "PWM0", ARRAY_SIZE(pwm0), pwm0 },
{ "PWM1", ARRAY_SIZE(pwm1), pwm1 },
{ "PWM2", ARRAY_SIZE(pwm2), pwm2 },
{ "PWM3", ARRAY_SIZE(pwm3), pwm3 },
{ "PWM4", ARRAY_SIZE(pwm4), pwm4 },
{ "PWM5", ARRAY_SIZE(pwm5), pwm5 },
{ "PWM6", ARRAY_SIZE(pwm6), pwm6 },
{ "PWM7", ARRAY_SIZE(pwm7), pwm7 },
{ "PWM8G0", ARRAY_SIZE(pwm8g0), pwm8g0 },
{ "PWM8G1", ARRAY_SIZE(pwm8g1), pwm8g1 },
{ "PWM9G0", ARRAY_SIZE(pwm9g0), pwm9g0 },
{ "PWM9G1", ARRAY_SIZE(pwm9g1), pwm9g1 },
{ "PWM10G0", ARRAY_SIZE(pwm10g0), pwm10g0 },
{ "PWM10G1", ARRAY_SIZE(pwm10g1), pwm10g1 },
{ "PWM11G0", ARRAY_SIZE(pwm11g0), pwm11g0 },
{ "PWM11G1", ARRAY_SIZE(pwm11g1), pwm11g1 },
{ "PWM12G0", ARRAY_SIZE(pwm12g0), pwm12g0 },
{ "PWM12G1", ARRAY_SIZE(pwm12g1), pwm12g1 },
{ "PWM13G0", ARRAY_SIZE(pwm13g0), pwm13g0 },
{ "PWM13G1", ARRAY_SIZE(pwm13g1), pwm13g1 },
{ "PWM14G0", ARRAY_SIZE(pwm14g0), pwm14g0 },
{ "PWM14G1", ARRAY_SIZE(pwm14g1), pwm14g1 },
{ "PWM15G0", ARRAY_SIZE(pwm15g0), pwm15g0 },
{ "PWM15G1", ARRAY_SIZE(pwm15g1), pwm15g1 },
};
static int ast2600_pinctrl_get_groups_count(struct udevice *dev)
{
debug("PINCTRL: get_(functions/groups)_count\n");
return ARRAY_SIZE(ast2600_groups);
}
static const char *ast2600_pinctrl_get_group_name(struct udevice *dev,
unsigned selector)
{
debug("PINCTRL: get_(function/group)_name %u\n", selector);
return ast2600_groups[selector].group_name;
}
static int ast2600_pinctrl_group_set(struct udevice *dev, unsigned selector, unsigned func_selector)
{
struct ast2600_pinctrl_priv *priv = dev_get_priv(dev);
const struct aspeed_group_config *config;
const struct aspeed_sig_desc *descs;
u32 ctrl_reg = (u32)priv->scu;
u32 i;
debug("PINCTRL: group_set <%u, %u>\n", selector, func_selector);
if (selector >= ARRAY_SIZE(ast2600_groups))
return -EINVAL;
config = &ast2600_groups[selector];
for (i = 0; i < config->ndescs; i++) {
descs = &config->descs[i];
if (descs->clr)
clrbits_le32((u32)ctrl_reg + descs->offset, descs->reg_set);
else
setbits_le32((u32)ctrl_reg + descs->offset, descs->reg_set);
}
return 0;
}
static struct pinctrl_ops ast2600_pinctrl_ops = {
.set_state = pinctrl_generic_set_state,
.get_groups_count = ast2600_pinctrl_get_groups_count,
.get_group_name = ast2600_pinctrl_get_group_name,
.get_functions_count = ast2600_pinctrl_get_groups_count,
.get_function_name = ast2600_pinctrl_get_group_name,
.pinmux_group_set = ast2600_pinctrl_group_set,
};
static const struct udevice_id ast2600_pinctrl_ids[] = {
{ .compatible = "aspeed,g6-pinctrl" },
{ }
};
U_BOOT_DRIVER(pinctrl_aspeed) = {
.name = "aspeed_ast2600_pinctrl",
.id = UCLASS_PINCTRL,
.of_match = ast2600_pinctrl_ids,
.priv_auto = sizeof(struct ast2600_pinctrl_priv),
.ops = &ast2600_pinctrl_ops,
.probe = ast2600_pinctrl_probe,
};