pinctrl-rt2880.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/bitops.h>
  3. #include <linux/module.h>
  4. #include <linux/platform_device.h>
  5. #include <linux/of.h>
  6. #include "pinctrl-ralink.h"
  7. #define RT2880_GPIO_MODE_I2C BIT(0)
  8. #define RT2880_GPIO_MODE_UART0 BIT(1)
  9. #define RT2880_GPIO_MODE_SPI BIT(2)
  10. #define RT2880_GPIO_MODE_UART1 BIT(3)
  11. #define RT2880_GPIO_MODE_JTAG BIT(4)
  12. #define RT2880_GPIO_MODE_MDIO BIT(5)
  13. #define RT2880_GPIO_MODE_SDRAM BIT(6)
  14. #define RT2880_GPIO_MODE_PCI BIT(7)
  15. static struct ralink_pmx_func i2c_func[] = { FUNC("i2c", 0, 1, 2) };
  16. static struct ralink_pmx_func spi_func[] = { FUNC("spi", 0, 3, 4) };
  17. static struct ralink_pmx_func uartlite_func[] = { FUNC("uartlite", 0, 7, 8) };
  18. static struct ralink_pmx_func jtag_func[] = { FUNC("jtag", 0, 17, 5) };
  19. static struct ralink_pmx_func mdio_func[] = { FUNC("mdio", 0, 22, 2) };
  20. static struct ralink_pmx_func sdram_func[] = { FUNC("sdram", 0, 24, 16) };
  21. static struct ralink_pmx_func pci_func[] = { FUNC("pci", 0, 40, 32) };
  22. static struct ralink_pmx_group rt2880_pinmux_data_act[] = {
  23. GRP("i2c", i2c_func, 1, RT2880_GPIO_MODE_I2C),
  24. GRP("spi", spi_func, 1, RT2880_GPIO_MODE_SPI),
  25. GRP("uartlite", uartlite_func, 1, RT2880_GPIO_MODE_UART0),
  26. GRP("jtag", jtag_func, 1, RT2880_GPIO_MODE_JTAG),
  27. GRP("mdio", mdio_func, 1, RT2880_GPIO_MODE_MDIO),
  28. GRP("sdram", sdram_func, 1, RT2880_GPIO_MODE_SDRAM),
  29. GRP("pci", pci_func, 1, RT2880_GPIO_MODE_PCI),
  30. { 0 }
  31. };
  32. static int rt2880_pinctrl_probe(struct platform_device *pdev)
  33. {
  34. return ralink_pinctrl_init(pdev, rt2880_pinmux_data_act);
  35. }
  36. static const struct of_device_id rt2880_pinctrl_match[] = {
  37. { .compatible = "ralink,rt2880-pinctrl" },
  38. { .compatible = "ralink,rt2880-pinmux" },
  39. {}
  40. };
  41. MODULE_DEVICE_TABLE(of, rt2880_pinctrl_match);
  42. static struct platform_driver rt2880_pinctrl_driver = {
  43. .probe = rt2880_pinctrl_probe,
  44. .driver = {
  45. .name = "rt2880-pinctrl",
  46. .of_match_table = rt2880_pinctrl_match,
  47. },
  48. };
  49. static int __init rt2880_pinctrl_init(void)
  50. {
  51. return platform_driver_register(&rt2880_pinctrl_driver);
  52. }
  53. core_initcall_sync(rt2880_pinctrl_init);