hi655x-pmic.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Device driver for MFD hi655x PMIC
  3. *
  4. * Copyright (c) 2016 Hisilicon.
  5. *
  6. * Authors:
  7. * Chen Feng <[email protected]>
  8. * Fei Wang <[email protected]>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/gpio.h>
  15. #include <linux/io.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/init.h>
  18. #include <linux/mfd/core.h>
  19. #include <linux/mfd/hi655x-pmic.h>
  20. #include <linux/module.h>
  21. #include <linux/of_gpio.h>
  22. #include <linux/of_platform.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/regmap.h>
  25. static const struct regmap_irq hi655x_irqs[] = {
  26. { .reg_offset = 0, .mask = OTMP_D1R_INT_MASK },
  27. { .reg_offset = 0, .mask = VSYS_2P5_R_INT_MASK },
  28. { .reg_offset = 0, .mask = VSYS_UV_D3R_INT_MASK },
  29. { .reg_offset = 0, .mask = VSYS_6P0_D200UR_INT_MASK },
  30. { .reg_offset = 0, .mask = PWRON_D4SR_INT_MASK },
  31. { .reg_offset = 0, .mask = PWRON_D20F_INT_MASK },
  32. { .reg_offset = 0, .mask = PWRON_D20R_INT_MASK },
  33. { .reg_offset = 0, .mask = RESERVE_INT_MASK },
  34. };
  35. static const struct regmap_irq_chip hi655x_irq_chip = {
  36. .name = "hi655x-pmic",
  37. .irqs = hi655x_irqs,
  38. .num_regs = 1,
  39. .num_irqs = ARRAY_SIZE(hi655x_irqs),
  40. .status_base = HI655X_IRQ_STAT_BASE,
  41. .ack_base = HI655X_IRQ_STAT_BASE,
  42. .mask_base = HI655X_IRQ_MASK_BASE,
  43. };
  44. static struct regmap_config hi655x_regmap_config = {
  45. .reg_bits = 32,
  46. .reg_stride = HI655X_STRIDE,
  47. .val_bits = 8,
  48. .max_register = HI655X_BUS_ADDR(0x400) - HI655X_STRIDE,
  49. };
  50. static struct resource pwrkey_resources[] = {
  51. {
  52. .name = "down",
  53. .start = PWRON_D20R_INT,
  54. .end = PWRON_D20R_INT,
  55. .flags = IORESOURCE_IRQ,
  56. }, {
  57. .name = "up",
  58. .start = PWRON_D20F_INT,
  59. .end = PWRON_D20F_INT,
  60. .flags = IORESOURCE_IRQ,
  61. }, {
  62. .name = "hold 4s",
  63. .start = PWRON_D4SR_INT,
  64. .end = PWRON_D4SR_INT,
  65. .flags = IORESOURCE_IRQ,
  66. },
  67. };
  68. static const struct mfd_cell hi655x_pmic_devs[] = {
  69. {
  70. .name = "hi65xx-powerkey",
  71. .num_resources = ARRAY_SIZE(pwrkey_resources),
  72. .resources = &pwrkey_resources[0],
  73. },
  74. { .name = "hi655x-regulator", },
  75. };
  76. static void hi655x_local_irq_clear(struct regmap *map)
  77. {
  78. int i;
  79. regmap_write(map, HI655X_ANA_IRQM_BASE, HI655X_IRQ_CLR);
  80. for (i = 0; i < HI655X_IRQ_ARRAY; i++) {
  81. regmap_write(map, HI655X_IRQ_STAT_BASE + i * HI655X_STRIDE,
  82. HI655X_IRQ_CLR);
  83. }
  84. }
  85. static int hi655x_pmic_probe(struct platform_device *pdev)
  86. {
  87. int ret;
  88. struct hi655x_pmic *pmic;
  89. struct device *dev = &pdev->dev;
  90. struct device_node *np = dev->of_node;
  91. void __iomem *base;
  92. pmic = devm_kzalloc(dev, sizeof(*pmic), GFP_KERNEL);
  93. if (!pmic)
  94. return -ENOMEM;
  95. pmic->dev = dev;
  96. pmic->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  97. base = devm_ioremap_resource(dev, pmic->res);
  98. if (IS_ERR(base))
  99. return PTR_ERR(base);
  100. pmic->regmap = devm_regmap_init_mmio_clk(dev, NULL, base,
  101. &hi655x_regmap_config);
  102. if (IS_ERR(pmic->regmap))
  103. return PTR_ERR(pmic->regmap);
  104. regmap_read(pmic->regmap, HI655X_BUS_ADDR(HI655X_VER_REG), &pmic->ver);
  105. if ((pmic->ver < PMU_VER_START) || (pmic->ver > PMU_VER_END)) {
  106. dev_warn(dev, "PMU version %d unsupported\n", pmic->ver);
  107. return -EINVAL;
  108. }
  109. hi655x_local_irq_clear(pmic->regmap);
  110. pmic->gpio = of_get_named_gpio(np, "pmic-gpios", 0);
  111. if (!gpio_is_valid(pmic->gpio)) {
  112. dev_err(dev, "Failed to get the pmic-gpios\n");
  113. return -ENODEV;
  114. }
  115. ret = devm_gpio_request_one(dev, pmic->gpio, GPIOF_IN,
  116. "hi655x_pmic_irq");
  117. if (ret < 0) {
  118. dev_err(dev, "Failed to request gpio %d ret = %d\n",
  119. pmic->gpio, ret);
  120. return ret;
  121. }
  122. ret = regmap_add_irq_chip(pmic->regmap, gpio_to_irq(pmic->gpio),
  123. IRQF_TRIGGER_LOW | IRQF_NO_SUSPEND, 0,
  124. &hi655x_irq_chip, &pmic->irq_data);
  125. if (ret) {
  126. dev_err(dev, "Failed to obtain 'hi655x_pmic_irq' %d\n", ret);
  127. return ret;
  128. }
  129. platform_set_drvdata(pdev, pmic);
  130. ret = mfd_add_devices(dev, PLATFORM_DEVID_AUTO, hi655x_pmic_devs,
  131. ARRAY_SIZE(hi655x_pmic_devs), NULL, 0,
  132. regmap_irq_get_domain(pmic->irq_data));
  133. if (ret) {
  134. dev_err(dev, "Failed to register device %d\n", ret);
  135. regmap_del_irq_chip(gpio_to_irq(pmic->gpio), pmic->irq_data);
  136. return ret;
  137. }
  138. return 0;
  139. }
  140. static int hi655x_pmic_remove(struct platform_device *pdev)
  141. {
  142. struct hi655x_pmic *pmic = platform_get_drvdata(pdev);
  143. regmap_del_irq_chip(gpio_to_irq(pmic->gpio), pmic->irq_data);
  144. mfd_remove_devices(&pdev->dev);
  145. return 0;
  146. }
  147. static const struct of_device_id hi655x_pmic_match[] = {
  148. { .compatible = "hisilicon,hi655x-pmic", },
  149. {},
  150. };
  151. static struct platform_driver hi655x_pmic_driver = {
  152. .driver = {
  153. .name = "hi655x-pmic",
  154. .of_match_table = of_match_ptr(hi655x_pmic_match),
  155. },
  156. .probe = hi655x_pmic_probe,
  157. .remove = hi655x_pmic_remove,
  158. };
  159. module_platform_driver(hi655x_pmic_driver);
  160. MODULE_AUTHOR("Chen Feng <[email protected]>");
  161. MODULE_DESCRIPTION("Hisilicon hi655x PMIC driver");
  162. MODULE_LICENSE("GPL v2");