162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only 262306a36Sopenharmony_ci 362306a36Sopenharmony_ci#include <linux/module.h> 462306a36Sopenharmony_ci#include <linux/platform_device.h> 562306a36Sopenharmony_ci#include <linux/of.h> 662306a36Sopenharmony_ci#include "pinctrl-mtmips.h" 762306a36Sopenharmony_ci 862306a36Sopenharmony_ci#define RT3883_GPIO_MODE_UART0_SHIFT 2 962306a36Sopenharmony_ci#define RT3883_GPIO_MODE_UART0_MASK 0x7 1062306a36Sopenharmony_ci#define RT3883_GPIO_MODE_UART0(x) ((x) << RT3883_GPIO_MODE_UART0_SHIFT) 1162306a36Sopenharmony_ci#define RT3883_GPIO_MODE_UARTF 0x0 1262306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCM_UARTF 0x1 1362306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCM_I2S 0x2 1462306a36Sopenharmony_ci#define RT3883_GPIO_MODE_I2S_UARTF 0x3 1562306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCM_GPIO 0x4 1662306a36Sopenharmony_ci#define RT3883_GPIO_MODE_GPIO_UARTF 0x5 1762306a36Sopenharmony_ci#define RT3883_GPIO_MODE_GPIO_I2S 0x6 1862306a36Sopenharmony_ci#define RT3883_GPIO_MODE_GPIO 0x7 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ci#define RT3883_GPIO_MODE_I2C 0 2162306a36Sopenharmony_ci#define RT3883_GPIO_MODE_SPI 1 2262306a36Sopenharmony_ci#define RT3883_GPIO_MODE_UART1 5 2362306a36Sopenharmony_ci#define RT3883_GPIO_MODE_JTAG 6 2462306a36Sopenharmony_ci#define RT3883_GPIO_MODE_MDIO 7 2562306a36Sopenharmony_ci#define RT3883_GPIO_MODE_GE1 9 2662306a36Sopenharmony_ci#define RT3883_GPIO_MODE_GE2 10 2762306a36Sopenharmony_ci 2862306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCI_SHIFT 11 2962306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCI_MASK 0x7 3062306a36Sopenharmony_ci#define RT3883_GPIO_MODE_PCI (RT3883_GPIO_MODE_PCI_MASK << RT3883_GPIO_MODE_PCI_SHIFT) 3162306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_A_SHIFT 16 3262306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_A_MASK 0x3 3362306a36Sopenharmony_ci#define _RT3883_GPIO_MODE_LNA_A(_x) ((_x) << RT3883_GPIO_MODE_LNA_A_SHIFT) 3462306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_A_GPIO 0x3 3562306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_A _RT3883_GPIO_MODE_LNA_A(RT3883_GPIO_MODE_LNA_A_MASK) 3662306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_G_SHIFT 18 3762306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_G_MASK 0x3 3862306a36Sopenharmony_ci#define _RT3883_GPIO_MODE_LNA_G(_x) ((_x) << RT3883_GPIO_MODE_LNA_G_SHIFT) 3962306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_G_GPIO 0x3 4062306a36Sopenharmony_ci#define RT3883_GPIO_MODE_LNA_G _RT3883_GPIO_MODE_LNA_G(RT3883_GPIO_MODE_LNA_G_MASK) 4162306a36Sopenharmony_ci 4262306a36Sopenharmony_cistatic struct mtmips_pmx_func i2c_grp[] = { FUNC("i2c", 0, 1, 2) }; 4362306a36Sopenharmony_cistatic struct mtmips_pmx_func spi_grp[] = { FUNC("spi", 0, 3, 4) }; 4462306a36Sopenharmony_cistatic struct mtmips_pmx_func uartf_grp[] = { 4562306a36Sopenharmony_ci FUNC("uartf", RT3883_GPIO_MODE_UARTF, 7, 8), 4662306a36Sopenharmony_ci FUNC("pcm uartf", RT3883_GPIO_MODE_PCM_UARTF, 7, 8), 4762306a36Sopenharmony_ci FUNC("pcm i2s", RT3883_GPIO_MODE_PCM_I2S, 7, 8), 4862306a36Sopenharmony_ci FUNC("i2s uartf", RT3883_GPIO_MODE_I2S_UARTF, 7, 8), 4962306a36Sopenharmony_ci FUNC("pcm gpio", RT3883_GPIO_MODE_PCM_GPIO, 11, 4), 5062306a36Sopenharmony_ci FUNC("gpio uartf", RT3883_GPIO_MODE_GPIO_UARTF, 7, 4), 5162306a36Sopenharmony_ci FUNC("gpio i2s", RT3883_GPIO_MODE_GPIO_I2S, 7, 4), 5262306a36Sopenharmony_ci}; 5362306a36Sopenharmony_cistatic struct mtmips_pmx_func uartlite_grp[] = { FUNC("uartlite", 0, 15, 2) }; 5462306a36Sopenharmony_cistatic struct mtmips_pmx_func jtag_grp[] = { FUNC("jtag", 0, 17, 5) }; 5562306a36Sopenharmony_cistatic struct mtmips_pmx_func mdio_grp[] = { FUNC("mdio", 0, 22, 2) }; 5662306a36Sopenharmony_cistatic struct mtmips_pmx_func lna_a_grp[] = { FUNC("lna a", 0, 32, 3) }; 5762306a36Sopenharmony_cistatic struct mtmips_pmx_func lna_g_grp[] = { FUNC("lna g", 0, 35, 3) }; 5862306a36Sopenharmony_cistatic struct mtmips_pmx_func pci_grp[] = { 5962306a36Sopenharmony_ci FUNC("pci-dev", 0, 40, 32), 6062306a36Sopenharmony_ci FUNC("pci-host2", 1, 40, 32), 6162306a36Sopenharmony_ci FUNC("pci-host1", 2, 40, 32), 6262306a36Sopenharmony_ci FUNC("pci-fnc", 3, 40, 32) 6362306a36Sopenharmony_ci}; 6462306a36Sopenharmony_cistatic struct mtmips_pmx_func ge1_grp[] = { FUNC("ge1", 0, 72, 12) }; 6562306a36Sopenharmony_cistatic struct mtmips_pmx_func ge2_grp[] = { FUNC("ge2", 0, 84, 12) }; 6662306a36Sopenharmony_ci 6762306a36Sopenharmony_cistatic struct mtmips_pmx_group rt3883_pinmux_data[] = { 6862306a36Sopenharmony_ci GRP("i2c", i2c_grp, 1, RT3883_GPIO_MODE_I2C), 6962306a36Sopenharmony_ci GRP("spi", spi_grp, 1, RT3883_GPIO_MODE_SPI), 7062306a36Sopenharmony_ci GRP("uartf", uartf_grp, RT3883_GPIO_MODE_UART0_MASK, 7162306a36Sopenharmony_ci RT3883_GPIO_MODE_UART0_SHIFT), 7262306a36Sopenharmony_ci GRP("uartlite", uartlite_grp, 1, RT3883_GPIO_MODE_UART1), 7362306a36Sopenharmony_ci GRP("jtag", jtag_grp, 1, RT3883_GPIO_MODE_JTAG), 7462306a36Sopenharmony_ci GRP("mdio", mdio_grp, 1, RT3883_GPIO_MODE_MDIO), 7562306a36Sopenharmony_ci GRP("lna a", lna_a_grp, 1, RT3883_GPIO_MODE_LNA_A), 7662306a36Sopenharmony_ci GRP("lna g", lna_g_grp, 1, RT3883_GPIO_MODE_LNA_G), 7762306a36Sopenharmony_ci GRP("pci", pci_grp, RT3883_GPIO_MODE_PCI_MASK, 7862306a36Sopenharmony_ci RT3883_GPIO_MODE_PCI_SHIFT), 7962306a36Sopenharmony_ci GRP("ge1", ge1_grp, 1, RT3883_GPIO_MODE_GE1), 8062306a36Sopenharmony_ci GRP("ge2", ge2_grp, 1, RT3883_GPIO_MODE_GE2), 8162306a36Sopenharmony_ci { 0 } 8262306a36Sopenharmony_ci}; 8362306a36Sopenharmony_ci 8462306a36Sopenharmony_cistatic int rt3883_pinctrl_probe(struct platform_device *pdev) 8562306a36Sopenharmony_ci{ 8662306a36Sopenharmony_ci return mtmips_pinctrl_init(pdev, rt3883_pinmux_data); 8762306a36Sopenharmony_ci} 8862306a36Sopenharmony_ci 8962306a36Sopenharmony_cistatic const struct of_device_id rt3883_pinctrl_match[] = { 9062306a36Sopenharmony_ci { .compatible = "ralink,rt3883-pinctrl" }, 9162306a36Sopenharmony_ci { .compatible = "ralink,rt2880-pinmux" }, 9262306a36Sopenharmony_ci {} 9362306a36Sopenharmony_ci}; 9462306a36Sopenharmony_ciMODULE_DEVICE_TABLE(of, rt3883_pinctrl_match); 9562306a36Sopenharmony_ci 9662306a36Sopenharmony_cistatic struct platform_driver rt3883_pinctrl_driver = { 9762306a36Sopenharmony_ci .probe = rt3883_pinctrl_probe, 9862306a36Sopenharmony_ci .driver = { 9962306a36Sopenharmony_ci .name = "rt3883-pinctrl", 10062306a36Sopenharmony_ci .of_match_table = rt3883_pinctrl_match, 10162306a36Sopenharmony_ci }, 10262306a36Sopenharmony_ci}; 10362306a36Sopenharmony_ci 10462306a36Sopenharmony_cistatic int __init rt3883_pinctrl_init(void) 10562306a36Sopenharmony_ci{ 10662306a36Sopenharmony_ci return platform_driver_register(&rt3883_pinctrl_driver); 10762306a36Sopenharmony_ci} 10862306a36Sopenharmony_cicore_initcall_sync(rt3883_pinctrl_init); 109