2021-06-04 19:51:59 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/of.h>
|
2023-03-18 05:29:54 +08:00
|
|
|
#include "pinctrl-mtmips.h"
|
2021-06-04 19:51:59 +08:00
|
|
|
|
|
|
|
#define RT2880_GPIO_MODE_I2C BIT(0)
|
|
|
|
#define RT2880_GPIO_MODE_UART0 BIT(1)
|
|
|
|
#define RT2880_GPIO_MODE_SPI BIT(2)
|
|
|
|
#define RT2880_GPIO_MODE_UART1 BIT(3)
|
|
|
|
#define RT2880_GPIO_MODE_JTAG BIT(4)
|
|
|
|
#define RT2880_GPIO_MODE_MDIO BIT(5)
|
|
|
|
#define RT2880_GPIO_MODE_SDRAM BIT(6)
|
|
|
|
#define RT2880_GPIO_MODE_PCI BIT(7)
|
|
|
|
|
2023-03-18 05:29:54 +08:00
|
|
|
static struct mtmips_pmx_func i2c_grp[] = { FUNC("i2c", 0, 1, 2) };
|
|
|
|
static struct mtmips_pmx_func spi_grp[] = { FUNC("spi", 0, 3, 4) };
|
|
|
|
static struct mtmips_pmx_func uartlite_grp[] = { FUNC("uartlite", 0, 7, 8) };
|
|
|
|
static struct mtmips_pmx_func jtag_grp[] = { FUNC("jtag", 0, 17, 5) };
|
|
|
|
static struct mtmips_pmx_func mdio_grp[] = { FUNC("mdio", 0, 22, 2) };
|
|
|
|
static struct mtmips_pmx_func sdram_grp[] = { FUNC("sdram", 0, 24, 16) };
|
|
|
|
static struct mtmips_pmx_func pci_grp[] = { FUNC("pci", 0, 40, 32) };
|
2021-06-04 19:51:59 +08:00
|
|
|
|
2023-03-18 05:29:54 +08:00
|
|
|
static struct mtmips_pmx_group rt2880_pinmux_data_act[] = {
|
2023-01-01 00:08:44 +08:00
|
|
|
GRP("i2c", i2c_grp, 1, RT2880_GPIO_MODE_I2C),
|
|
|
|
GRP("spi", spi_grp, 1, RT2880_GPIO_MODE_SPI),
|
|
|
|
GRP("uartlite", uartlite_grp, 1, RT2880_GPIO_MODE_UART0),
|
|
|
|
GRP("jtag", jtag_grp, 1, RT2880_GPIO_MODE_JTAG),
|
|
|
|
GRP("mdio", mdio_grp, 1, RT2880_GPIO_MODE_MDIO),
|
|
|
|
GRP("sdram", sdram_grp, 1, RT2880_GPIO_MODE_SDRAM),
|
|
|
|
GRP("pci", pci_grp, 1, RT2880_GPIO_MODE_PCI),
|
2021-06-04 19:51:59 +08:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
2022-04-15 01:39:06 +08:00
|
|
|
static int rt2880_pinctrl_probe(struct platform_device *pdev)
|
2021-06-04 19:51:59 +08:00
|
|
|
{
|
2023-03-18 05:29:54 +08:00
|
|
|
return mtmips_pinctrl_init(pdev, rt2880_pinmux_data_act);
|
2021-06-04 19:51:59 +08:00
|
|
|
}
|
|
|
|
|
2022-04-15 01:39:06 +08:00
|
|
|
static const struct of_device_id rt2880_pinctrl_match[] = {
|
2022-04-15 01:39:09 +08:00
|
|
|
{ .compatible = "ralink,rt2880-pinctrl" },
|
2023-03-18 05:29:51 +08:00
|
|
|
{ .compatible = "ralink,rt2880-pinmux" },
|
2021-06-04 19:51:59 +08:00
|
|
|
{}
|
|
|
|
};
|
2022-04-15 01:39:06 +08:00
|
|
|
MODULE_DEVICE_TABLE(of, rt2880_pinctrl_match);
|
2021-06-04 19:51:59 +08:00
|
|
|
|
2022-04-15 01:39:06 +08:00
|
|
|
static struct platform_driver rt2880_pinctrl_driver = {
|
|
|
|
.probe = rt2880_pinctrl_probe,
|
2021-06-04 19:51:59 +08:00
|
|
|
.driver = {
|
2022-04-15 01:39:09 +08:00
|
|
|
.name = "rt2880-pinctrl",
|
2022-04-15 01:39:06 +08:00
|
|
|
.of_match_table = rt2880_pinctrl_match,
|
2021-06-04 19:51:59 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-04-15 01:39:06 +08:00
|
|
|
static int __init rt2880_pinctrl_init(void)
|
2021-06-04 19:51:59 +08:00
|
|
|
{
|
2022-04-15 01:39:06 +08:00
|
|
|
return platform_driver_register(&rt2880_pinctrl_driver);
|
2021-06-04 19:51:59 +08:00
|
|
|
}
|
2022-04-15 01:39:06 +08:00
|
|
|
core_initcall_sync(rt2880_pinctrl_init);
|