gpio-xgene-sb.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * AppliedMicro X-Gene SoC GPIO-Standby Driver
  3. *
  4. * Copyright (c) 2014, Applied Micro Circuits Corporation
  5. * Author: Tin Huynh <tnhuynh@apm.com>.
  6. * Y Vo <yvo@apm.com>.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #include <linux/module.h>
  22. #include <linux/io.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/of_gpio.h>
  25. #include <linux/gpio/driver.h>
  26. #include <linux/acpi.h>
  27. #include "gpiolib.h"
  28. #define XGENE_MAX_GPIO_DS 22
  29. #define XGENE_MAX_GPIO_DS_IRQ 6
  30. #define GPIO_MASK(x) (1U << ((x) % 32))
  31. #define MPA_GPIO_INT_LVL 0x0290
  32. #define MPA_GPIO_OE_ADDR 0x029c
  33. #define MPA_GPIO_OUT_ADDR 0x02a0
  34. #define MPA_GPIO_IN_ADDR 0x02a4
  35. #define MPA_GPIO_SEL_LO 0x0294
  36. /**
  37. * struct xgene_gpio_sb - GPIO-Standby private data structure.
  38. * @gc: memory-mapped GPIO controllers.
  39. * @irq: Mapping GPIO pins and interrupt number
  40. * nirq: Number of GPIO pins that supports interrupt
  41. */
  42. struct xgene_gpio_sb {
  43. struct gpio_chip gc;
  44. u32 *irq;
  45. u32 nirq;
  46. };
  47. static void xgene_gpio_set_bit(struct gpio_chip *gc, void __iomem *reg, u32 gpio, int val)
  48. {
  49. u32 data;
  50. data = gc->read_reg(reg);
  51. if (val)
  52. data |= GPIO_MASK(gpio);
  53. else
  54. data &= ~GPIO_MASK(gpio);
  55. gc->write_reg(reg, data);
  56. }
  57. static int apm_gpio_sb_to_irq(struct gpio_chip *gc, u32 gpio)
  58. {
  59. struct xgene_gpio_sb *priv = gpiochip_get_data(gc);
  60. if (priv->irq[gpio])
  61. return priv->irq[gpio];
  62. return -ENXIO;
  63. }
  64. static int xgene_gpio_sb_probe(struct platform_device *pdev)
  65. {
  66. struct xgene_gpio_sb *priv;
  67. u32 ret, i;
  68. u32 default_lines[] = {0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D};
  69. struct resource *res;
  70. void __iomem *regs;
  71. priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
  72. if (!priv)
  73. return -ENOMEM;
  74. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  75. regs = devm_ioremap_resource(&pdev->dev, res);
  76. if (IS_ERR(regs))
  77. return PTR_ERR(regs);
  78. ret = bgpio_init(&priv->gc, &pdev->dev, 4,
  79. regs + MPA_GPIO_IN_ADDR,
  80. regs + MPA_GPIO_OUT_ADDR, NULL,
  81. regs + MPA_GPIO_OE_ADDR, NULL, 0);
  82. if (ret)
  83. return ret;
  84. priv->gc.to_irq = apm_gpio_sb_to_irq;
  85. priv->gc.ngpio = XGENE_MAX_GPIO_DS;
  86. priv->nirq = XGENE_MAX_GPIO_DS_IRQ;
  87. priv->irq = devm_kzalloc(&pdev->dev, sizeof(u32) * XGENE_MAX_GPIO_DS,
  88. GFP_KERNEL);
  89. if (!priv->irq)
  90. return -ENOMEM;
  91. for (i = 0; i < priv->nirq; i++) {
  92. priv->irq[default_lines[i]] = platform_get_irq(pdev, i);
  93. xgene_gpio_set_bit(&priv->gc, regs + MPA_GPIO_SEL_LO,
  94. default_lines[i] * 2, 1);
  95. xgene_gpio_set_bit(&priv->gc, regs + MPA_GPIO_INT_LVL, i, 1);
  96. }
  97. platform_set_drvdata(pdev, priv);
  98. ret = gpiochip_add_data(&priv->gc, priv);
  99. if (ret)
  100. dev_err(&pdev->dev, "failed to register X-Gene GPIO Standby driver\n");
  101. else
  102. dev_info(&pdev->dev, "X-Gene GPIO Standby driver registered\n");
  103. if (priv->nirq > 0) {
  104. /* Register interrupt handlers for gpio signaled acpi events */
  105. acpi_gpiochip_request_interrupts(&priv->gc);
  106. }
  107. return ret;
  108. }
  109. static int xgene_gpio_sb_remove(struct platform_device *pdev)
  110. {
  111. struct xgene_gpio_sb *priv = platform_get_drvdata(pdev);
  112. if (priv->nirq > 0) {
  113. acpi_gpiochip_free_interrupts(&priv->gc);
  114. }
  115. gpiochip_remove(&priv->gc);
  116. return 0;
  117. }
  118. static const struct of_device_id xgene_gpio_sb_of_match[] = {
  119. {.compatible = "apm,xgene-gpio-sb", },
  120. {},
  121. };
  122. MODULE_DEVICE_TABLE(of, xgene_gpio_sb_of_match);
  123. #ifdef CONFIG_ACPI
  124. static const struct acpi_device_id xgene_gpio_sb_acpi_match[] = {
  125. {"APMC0D15", 0},
  126. {},
  127. };
  128. MODULE_DEVICE_TABLE(acpi, xgene_gpio_sb_acpi_match);
  129. #endif
  130. static struct platform_driver xgene_gpio_sb_driver = {
  131. .driver = {
  132. .name = "xgene-gpio-sb",
  133. .of_match_table = xgene_gpio_sb_of_match,
  134. .acpi_match_table = ACPI_PTR(xgene_gpio_sb_acpi_match),
  135. },
  136. .probe = xgene_gpio_sb_probe,
  137. .remove = xgene_gpio_sb_remove,
  138. };
  139. module_platform_driver(xgene_gpio_sb_driver);
  140. MODULE_AUTHOR("AppliedMicro");
  141. MODULE_DESCRIPTION("APM X-Gene GPIO Standby driver");
  142. MODULE_LICENSE("GPL");