tps65219-regulator.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. // SPDX-License-Identifier: GPL-2.0
  2. //
  3. // TPS65214/TPS65215/TPS65219 PMIC Regulator Driver
  4. //
  5. // Copyright (C) 2022 BayLibre Incorporated - https://www.baylibre.com/
  6. // Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
  7. //
  8. // This implementation derived from tps65218 authored by
  9. // "J Keerthy <j-keerthy@ti.com>"
  10. //
  11. #include <linux/kernel.h>
  12. #include <linux/module.h>
  13. #include <linux/device.h>
  14. #include <linux/init.h>
  15. #include <linux/err.h>
  16. #include <linux/of.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/regmap.h>
  19. #include <linux/regulator/of_regulator.h>
  20. #include <linux/regulator/driver.h>
  21. #include <linux/regulator/machine.h>
  22. #include <linux/mfd/tps65219.h>
  23. struct tps65219_regulator_irq_type {
  24. const char *irq_name;
  25. const char *regulator_name;
  26. const char *event_name;
  27. unsigned long event;
  28. };
  29. static struct tps65219_regulator_irq_type tps65215_regulator_irq_types[] = {
  30. { "SENSOR_3_WARM", "SENSOR3", "warm temperature", REGULATOR_EVENT_OVER_TEMP_WARN},
  31. { "SENSOR_3_HOT", "SENSOR3", "hot temperature", REGULATOR_EVENT_OVER_TEMP},
  32. };
  33. static struct tps65219_regulator_irq_type tps65219_regulator_irq_types[] = {
  34. { "LDO3_SCG", "LDO3", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  35. { "LDO3_OC", "LDO3", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  36. { "LDO3_UV", "LDO3", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  37. { "LDO4_SCG", "LDO4", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  38. { "LDO4_OC", "LDO4", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  39. { "LDO4_UV", "LDO4", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  40. { "LDO3_RV", "LDO3", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  41. { "LDO4_RV", "LDO4", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  42. { "LDO3_RV_SD", "LDO3", "residual voltage on shutdown", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  43. { "LDO4_RV_SD", "LDO4", "residual voltage on shutdown", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  44. { "SENSOR_3_WARM", "SENSOR3", "warm temperature", REGULATOR_EVENT_OVER_TEMP_WARN},
  45. { "SENSOR_3_HOT", "SENSOR3", "hot temperature", REGULATOR_EVENT_OVER_TEMP},
  46. };
  47. /* All of TPS65214's irq types are the same as common_regulator_irq_types */
  48. static struct tps65219_regulator_irq_type common_regulator_irq_types[] = {
  49. { "LDO1_SCG", "LDO1", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  50. { "LDO1_OC", "LDO1", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  51. { "LDO1_UV", "LDO1", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  52. { "LDO2_SCG", "LDO2", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  53. { "LDO2_OC", "LDO2", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  54. { "LDO2_UV", "LDO2", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  55. { "BUCK3_SCG", "BUCK3", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  56. { "BUCK3_OC", "BUCK3", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  57. { "BUCK3_NEG_OC", "BUCK3", "negative overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  58. { "BUCK3_UV", "BUCK3", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  59. { "BUCK1_SCG", "BUCK1", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  60. { "BUCK1_OC", "BUCK1", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  61. { "BUCK1_NEG_OC", "BUCK1", "negative overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  62. { "BUCK1_UV", "BUCK1", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  63. { "BUCK2_SCG", "BUCK2", "short circuit to ground", REGULATOR_EVENT_REGULATION_OUT },
  64. { "BUCK2_OC", "BUCK2", "overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  65. { "BUCK2_NEG_OC", "BUCK2", "negative overcurrent", REGULATOR_EVENT_OVER_CURRENT },
  66. { "BUCK2_UV", "BUCK2", "undervoltage", REGULATOR_EVENT_UNDER_VOLTAGE },
  67. { "BUCK1_RV", "BUCK1", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  68. { "BUCK2_RV", "BUCK2", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  69. { "BUCK3_RV", "BUCK3", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  70. { "LDO1_RV", "LDO1", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  71. { "LDO2_RV", "LDO2", "residual voltage", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  72. { "BUCK1_RV_SD", "BUCK1", "residual voltage on shutdown",
  73. REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  74. { "BUCK2_RV_SD", "BUCK2", "residual voltage on shutdown",
  75. REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  76. { "BUCK3_RV_SD", "BUCK3", "residual voltage on shutdown",
  77. REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  78. { "LDO1_RV_SD", "LDO1", "residual voltage on shutdown", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  79. { "LDO2_RV_SD", "LDO2", "residual voltage on shutdown", REGULATOR_EVENT_OVER_VOLTAGE_WARN },
  80. { "SENSOR_2_WARM", "SENSOR2", "warm temperature", REGULATOR_EVENT_OVER_TEMP_WARN },
  81. { "SENSOR_1_WARM", "SENSOR1", "warm temperature", REGULATOR_EVENT_OVER_TEMP_WARN },
  82. { "SENSOR_0_WARM", "SENSOR0", "warm temperature", REGULATOR_EVENT_OVER_TEMP_WARN },
  83. { "SENSOR_2_HOT", "SENSOR2", "hot temperature", REGULATOR_EVENT_OVER_TEMP },
  84. { "SENSOR_1_HOT", "SENSOR1", "hot temperature", REGULATOR_EVENT_OVER_TEMP },
  85. { "SENSOR_0_HOT", "SENSOR0", "hot temperature", REGULATOR_EVENT_OVER_TEMP },
  86. { "TIMEOUT", "", "", REGULATOR_EVENT_ABORT_VOLTAGE_CHANGE },
  87. };
  88. struct tps65219_regulator_irq_data {
  89. struct device *dev;
  90. struct tps65219_regulator_irq_type *type;
  91. struct regulator_dev *rdev;
  92. };
  93. #define TPS65219_REGULATOR(_name, _of, _id, _type, _ops, _n, _vr, _vm, _er, \
  94. _em, _cr, _cm, _lr, _nlr, _delay, _fuv, \
  95. _ct, _ncl, _bpm) \
  96. { \
  97. .name = _name, \
  98. .of_match = _of, \
  99. .regulators_node = of_match_ptr("regulators"), \
  100. .supply_name = _of, \
  101. .id = _id, \
  102. .ops = &(_ops), \
  103. .n_voltages = _n, \
  104. .type = _type, \
  105. .owner = THIS_MODULE, \
  106. .vsel_reg = _vr, \
  107. .vsel_mask = _vm, \
  108. .csel_reg = _cr, \
  109. .csel_mask = _cm, \
  110. .curr_table = _ct, \
  111. .n_current_limits = _ncl, \
  112. .enable_reg = _er, \
  113. .enable_mask = _em, \
  114. .volt_table = NULL, \
  115. .linear_ranges = _lr, \
  116. .n_linear_ranges = _nlr, \
  117. .ramp_delay = _delay, \
  118. .fixed_uV = _fuv, \
  119. .bypass_reg = _vr, \
  120. .bypass_mask = _bpm, \
  121. } \
  122. static const struct linear_range bucks_ranges[] = {
  123. REGULATOR_LINEAR_RANGE(600000, 0x0, 0x1f, 25000),
  124. REGULATOR_LINEAR_RANGE(1400000, 0x20, 0x33, 100000),
  125. REGULATOR_LINEAR_RANGE(3400000, 0x34, 0x3f, 0),
  126. };
  127. static const struct linear_range ldo_1_range[] = {
  128. REGULATOR_LINEAR_RANGE(600000, 0x0, 0x37, 50000),
  129. REGULATOR_LINEAR_RANGE(3400000, 0x38, 0x3f, 0),
  130. };
  131. static const struct linear_range tps65214_ldo_1_2_range[] = {
  132. REGULATOR_LINEAR_RANGE(600000, 0x0, 0x2, 0),
  133. REGULATOR_LINEAR_RANGE(650000, 0x3, 0x37, 50000),
  134. REGULATOR_LINEAR_RANGE(3300000, 0x38, 0x3F, 0),
  135. };
  136. static const struct linear_range tps65215_ldo_2_range[] = {
  137. REGULATOR_LINEAR_RANGE(1200000, 0x0, 0xC, 50000),
  138. REGULATOR_LINEAR_RANGE(3300000, 0x36, 0x3F, 0),
  139. };
  140. static const struct linear_range tps65219_ldo_2_range[] = {
  141. REGULATOR_LINEAR_RANGE(600000, 0x0, 0x37, 50000),
  142. REGULATOR_LINEAR_RANGE(3400000, 0x38, 0x3f, 0),
  143. };
  144. static const struct linear_range tps65219_ldos_3_4_range[] = {
  145. REGULATOR_LINEAR_RANGE(1200000, 0x0, 0xC, 0),
  146. REGULATOR_LINEAR_RANGE(1250000, 0xD, 0x35, 50000),
  147. REGULATOR_LINEAR_RANGE(3300000, 0x36, 0x3F, 0),
  148. };
  149. static int tps65219_set_mode(struct regulator_dev *dev, unsigned int mode)
  150. {
  151. struct tps65219 *tps = rdev_get_drvdata(dev);
  152. switch (mode) {
  153. case REGULATOR_MODE_NORMAL:
  154. return regmap_set_bits(tps->regmap, TPS65219_REG_STBY_1_CONFIG,
  155. dev->desc->enable_mask);
  156. case REGULATOR_MODE_STANDBY:
  157. return regmap_clear_bits(tps->regmap,
  158. TPS65219_REG_STBY_1_CONFIG,
  159. dev->desc->enable_mask);
  160. default:
  161. return -EINVAL;
  162. }
  163. }
  164. static unsigned int tps65219_get_mode(struct regulator_dev *dev)
  165. {
  166. struct tps65219 *tps = rdev_get_drvdata(dev);
  167. unsigned int rid = rdev_get_id(dev);
  168. int ret, value = 0;
  169. ret = regmap_read(tps->regmap, TPS65219_REG_STBY_1_CONFIG, &value);
  170. if (ret) {
  171. dev_dbg(tps->dev, "%s failed for regulator %s: %d ",
  172. __func__, dev->desc->name, ret);
  173. return ret;
  174. }
  175. value = (value & BIT(rid)) >> rid;
  176. if (value)
  177. return REGULATOR_MODE_STANDBY;
  178. else
  179. return REGULATOR_MODE_NORMAL;
  180. }
  181. /* Operations permitted on BUCK1/2/3 */
  182. static const struct regulator_ops bucks_ops = {
  183. .is_enabled = regulator_is_enabled_regmap,
  184. .enable = regulator_enable_regmap,
  185. .disable = regulator_disable_regmap,
  186. .set_mode = tps65219_set_mode,
  187. .get_mode = tps65219_get_mode,
  188. .get_voltage_sel = regulator_get_voltage_sel_regmap,
  189. .set_voltage_sel = regulator_set_voltage_sel_regmap,
  190. .list_voltage = regulator_list_voltage_linear_range,
  191. .map_voltage = regulator_map_voltage_linear_range,
  192. .set_voltage_time_sel = regulator_set_voltage_time_sel,
  193. };
  194. /* Operations permitted on LDO1/2 */
  195. static const struct regulator_ops ldos_1_2_ops = {
  196. .is_enabled = regulator_is_enabled_regmap,
  197. .enable = regulator_enable_regmap,
  198. .disable = regulator_disable_regmap,
  199. .set_mode = tps65219_set_mode,
  200. .get_mode = tps65219_get_mode,
  201. .get_voltage_sel = regulator_get_voltage_sel_regmap,
  202. .set_voltage_sel = regulator_set_voltage_sel_regmap,
  203. .list_voltage = regulator_list_voltage_linear_range,
  204. .map_voltage = regulator_map_voltage_linear_range,
  205. .set_bypass = regulator_set_bypass_regmap,
  206. .get_bypass = regulator_get_bypass_regmap,
  207. };
  208. /* Operations permitted on LDO3/4 */
  209. static const struct regulator_ops ldos_3_4_ops = {
  210. .is_enabled = regulator_is_enabled_regmap,
  211. .enable = regulator_enable_regmap,
  212. .disable = regulator_disable_regmap,
  213. .set_mode = tps65219_set_mode,
  214. .get_mode = tps65219_get_mode,
  215. .get_voltage_sel = regulator_get_voltage_sel_regmap,
  216. .set_voltage_sel = regulator_set_voltage_sel_regmap,
  217. .list_voltage = regulator_list_voltage_linear_range,
  218. .map_voltage = regulator_map_voltage_linear_range,
  219. };
  220. static const struct regulator_desc common_regs[] = {
  221. TPS65219_REGULATOR("BUCK1", "buck1", TPS65219_BUCK_1,
  222. REGULATOR_VOLTAGE, bucks_ops, 64,
  223. TPS65219_REG_BUCK1_VOUT,
  224. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  225. TPS65219_REG_ENABLE_CTRL,
  226. TPS65219_ENABLE_BUCK1_EN_MASK, 0, 0, bucks_ranges,
  227. 3, 4000, 0, NULL, 0, 0),
  228. TPS65219_REGULATOR("BUCK2", "buck2", TPS65219_BUCK_2,
  229. REGULATOR_VOLTAGE, bucks_ops, 64,
  230. TPS65219_REG_BUCK2_VOUT,
  231. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  232. TPS65219_REG_ENABLE_CTRL,
  233. TPS65219_ENABLE_BUCK2_EN_MASK, 0, 0, bucks_ranges,
  234. 3, 4000, 0, NULL, 0, 0),
  235. TPS65219_REGULATOR("BUCK3", "buck3", TPS65219_BUCK_3,
  236. REGULATOR_VOLTAGE, bucks_ops, 64,
  237. TPS65219_REG_BUCK3_VOUT,
  238. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  239. TPS65219_REG_ENABLE_CTRL,
  240. TPS65219_ENABLE_BUCK3_EN_MASK, 0, 0, bucks_ranges,
  241. 3, 0, 0, NULL, 0, 0),
  242. };
  243. static const struct regulator_desc tps65214_regs[] = {
  244. // TPS65214's LDO3 pin maps to TPS65219's LDO3 pin
  245. TPS65219_REGULATOR("LDO1", "ldo1", TPS65214_LDO_1,
  246. REGULATOR_VOLTAGE, ldos_3_4_ops, 64,
  247. TPS65214_REG_LDO1_VOUT,
  248. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  249. TPS65219_REG_ENABLE_CTRL,
  250. TPS65219_ENABLE_LDO3_EN_MASK, 0, 0, tps65214_ldo_1_2_range,
  251. 3, 0, 0, NULL, 0, 0),
  252. TPS65219_REGULATOR("LDO2", "ldo2", TPS65214_LDO_2,
  253. REGULATOR_VOLTAGE, ldos_3_4_ops, 64,
  254. TPS65214_REG_LDO2_VOUT,
  255. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  256. TPS65219_REG_ENABLE_CTRL,
  257. TPS65219_ENABLE_LDO2_EN_MASK, 0, 0, tps65214_ldo_1_2_range,
  258. 3, 0, 0, NULL, 0, 0),
  259. };
  260. static const struct regulator_desc tps65215_regs[] = {
  261. /*
  262. * TPS65215's LDO1 is the same as TPS65219's LDO1. LDO1 is
  263. * configurable as load switch and bypass-mode.
  264. * TPS65215's LDO2 is the same as TPS65219's LDO3
  265. */
  266. TPS65219_REGULATOR("LDO1", "ldo1", TPS65219_LDO_1,
  267. REGULATOR_VOLTAGE, ldos_1_2_ops, 64,
  268. TPS65219_REG_LDO1_VOUT,
  269. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  270. TPS65219_REG_ENABLE_CTRL,
  271. TPS65219_ENABLE_LDO1_EN_MASK, 0, 0, ldo_1_range,
  272. 2, 0, 0, NULL, 0, TPS65219_LDOS_BYP_CONFIG_MASK),
  273. TPS65219_REGULATOR("LDO2", "ldo2", TPS65215_LDO_2,
  274. REGULATOR_VOLTAGE, ldos_3_4_ops, 64,
  275. TPS65215_REG_LDO2_VOUT,
  276. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  277. TPS65219_REG_ENABLE_CTRL,
  278. TPS65215_ENABLE_LDO2_EN_MASK, 0, 0, tps65215_ldo_2_range,
  279. 2, 0, 0, NULL, 0, 0),
  280. };
  281. static const struct regulator_desc tps65219_regs[] = {
  282. TPS65219_REGULATOR("LDO1", "ldo1", TPS65219_LDO_1,
  283. REGULATOR_VOLTAGE, ldos_1_2_ops, 64,
  284. TPS65219_REG_LDO1_VOUT,
  285. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  286. TPS65219_REG_ENABLE_CTRL,
  287. TPS65219_ENABLE_LDO1_EN_MASK, 0, 0, ldo_1_range,
  288. 2, 0, 0, NULL, 0, TPS65219_LDOS_BYP_CONFIG_MASK),
  289. TPS65219_REGULATOR("LDO2", "ldo2", TPS65219_LDO_2,
  290. REGULATOR_VOLTAGE, ldos_1_2_ops, 64,
  291. TPS65219_REG_LDO2_VOUT,
  292. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  293. TPS65219_REG_ENABLE_CTRL,
  294. TPS65219_ENABLE_LDO2_EN_MASK, 0, 0, tps65219_ldo_2_range,
  295. 2, 0, 0, NULL, 0, TPS65219_LDOS_BYP_CONFIG_MASK),
  296. TPS65219_REGULATOR("LDO3", "ldo3", TPS65219_LDO_3,
  297. REGULATOR_VOLTAGE, ldos_3_4_ops, 64,
  298. TPS65219_REG_LDO3_VOUT,
  299. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  300. TPS65219_REG_ENABLE_CTRL,
  301. TPS65219_ENABLE_LDO3_EN_MASK, 0, 0, tps65219_ldos_3_4_range,
  302. 3, 0, 0, NULL, 0, 0),
  303. TPS65219_REGULATOR("LDO4", "ldo4", TPS65219_LDO_4,
  304. REGULATOR_VOLTAGE, ldos_3_4_ops, 64,
  305. TPS65219_REG_LDO4_VOUT,
  306. TPS65219_BUCKS_LDOS_VOUT_VSET_MASK,
  307. TPS65219_REG_ENABLE_CTRL,
  308. TPS65219_ENABLE_LDO4_EN_MASK, 0, 0, tps65219_ldos_3_4_range,
  309. 3, 0, 0, NULL, 0, 0),
  310. };
  311. static irqreturn_t tps65219_regulator_irq_handler(int irq, void *data)
  312. {
  313. struct tps65219_regulator_irq_data *irq_data = data;
  314. if (irq_data->type->event_name[0] == '\0') {
  315. /* This is the timeout interrupt no specific regulator */
  316. dev_err(irq_data->dev,
  317. "System was put in shutdown due to timeout during an active or standby transition.\n");
  318. return IRQ_HANDLED;
  319. }
  320. regulator_notifier_call_chain(irq_data->rdev,
  321. irq_data->type->event, NULL);
  322. dev_err(irq_data->dev, "Error IRQ trap %s for %s\n",
  323. irq_data->type->event_name, irq_data->type->regulator_name);
  324. return IRQ_HANDLED;
  325. }
  326. struct tps65219_chip_data {
  327. size_t rdesc_size;
  328. size_t common_rdesc_size;
  329. size_t dev_irq_size;
  330. size_t common_irq_size;
  331. const struct regulator_desc *rdesc;
  332. const struct regulator_desc *common_rdesc;
  333. struct tps65219_regulator_irq_type *irq_types;
  334. struct tps65219_regulator_irq_type *common_irq_types;
  335. };
  336. static struct tps65219_chip_data chip_info_table[] = {
  337. [TPS65214] = {
  338. .rdesc = tps65214_regs,
  339. .rdesc_size = ARRAY_SIZE(tps65214_regs),
  340. .common_rdesc = common_regs,
  341. .common_rdesc_size = ARRAY_SIZE(common_regs),
  342. .irq_types = NULL,
  343. .dev_irq_size = 0,
  344. .common_irq_types = common_regulator_irq_types,
  345. .common_irq_size = ARRAY_SIZE(common_regulator_irq_types),
  346. },
  347. [TPS65215] = {
  348. .rdesc = tps65215_regs,
  349. .rdesc_size = ARRAY_SIZE(tps65215_regs),
  350. .common_rdesc = common_regs,
  351. .common_rdesc_size = ARRAY_SIZE(common_regs),
  352. .irq_types = tps65215_regulator_irq_types,
  353. .dev_irq_size = ARRAY_SIZE(tps65215_regulator_irq_types),
  354. .common_irq_types = common_regulator_irq_types,
  355. .common_irq_size = ARRAY_SIZE(common_regulator_irq_types),
  356. },
  357. [TPS65219] = {
  358. .rdesc = tps65219_regs,
  359. .rdesc_size = ARRAY_SIZE(tps65219_regs),
  360. .common_rdesc = common_regs,
  361. .common_rdesc_size = ARRAY_SIZE(common_regs),
  362. .irq_types = tps65219_regulator_irq_types,
  363. .dev_irq_size = ARRAY_SIZE(tps65219_regulator_irq_types),
  364. .common_irq_types = common_regulator_irq_types,
  365. .common_irq_size = ARRAY_SIZE(common_regulator_irq_types),
  366. },
  367. };
  368. static int tps65219_regulator_probe(struct platform_device *pdev)
  369. {
  370. struct tps65219_regulator_irq_data *irq_data;
  371. struct tps65219_regulator_irq_type *irq_type;
  372. struct tps65219_chip_data *pmic;
  373. struct regulator_dev *rdev;
  374. int error;
  375. int irq;
  376. int i;
  377. struct tps65219 *tps = dev_get_drvdata(pdev->dev.parent);
  378. struct regulator_config config = { };
  379. enum pmic_id chip = platform_get_device_id(pdev)->driver_data;
  380. pmic = &chip_info_table[chip];
  381. config.dev = tps->dev;
  382. config.driver_data = tps;
  383. config.regmap = tps->regmap;
  384. for (i = 0; i < pmic->common_rdesc_size; i++) {
  385. rdev = devm_regulator_register(&pdev->dev, &pmic->common_rdesc[i],
  386. &config);
  387. if (IS_ERR(rdev))
  388. return dev_err_probe(tps->dev, PTR_ERR(rdev),
  389. "Failed to register %s regulator\n",
  390. pmic->common_rdesc[i].name);
  391. }
  392. for (i = 0; i < pmic->rdesc_size; i++) {
  393. rdev = devm_regulator_register(&pdev->dev, &pmic->rdesc[i],
  394. &config);
  395. if (IS_ERR(rdev))
  396. return dev_err_probe(tps->dev, PTR_ERR(rdev),
  397. "Failed to register %s regulator\n",
  398. pmic->rdesc[i].name);
  399. }
  400. for (i = 0; i < pmic->common_irq_size; ++i) {
  401. irq_type = &pmic->common_irq_types[i];
  402. irq = platform_get_irq_byname(pdev, irq_type->irq_name);
  403. if (irq < 0)
  404. return -EINVAL;
  405. irq_data = devm_kmalloc(tps->dev, sizeof(*irq_data), GFP_KERNEL);
  406. if (!irq_data)
  407. return -ENOMEM;
  408. irq_data->dev = tps->dev;
  409. irq_data->type = irq_type;
  410. error = devm_request_threaded_irq(tps->dev, irq, NULL,
  411. tps65219_regulator_irq_handler,
  412. IRQF_ONESHOT,
  413. irq_type->irq_name,
  414. irq_data);
  415. if (error)
  416. return dev_err_probe(tps->dev, error,
  417. "Failed to request %s IRQ %d\n",
  418. irq_type->irq_name, irq);
  419. }
  420. for (i = 0; i < pmic->dev_irq_size; ++i) {
  421. irq_type = &pmic->irq_types[i];
  422. irq = platform_get_irq_byname(pdev, irq_type->irq_name);
  423. if (irq < 0)
  424. return -EINVAL;
  425. irq_data = devm_kmalloc(tps->dev, sizeof(*irq_data), GFP_KERNEL);
  426. if (!irq_data)
  427. return -ENOMEM;
  428. irq_data->dev = tps->dev;
  429. irq_data->type = irq_type;
  430. error = devm_request_threaded_irq(tps->dev, irq, NULL,
  431. tps65219_regulator_irq_handler,
  432. IRQF_ONESHOT,
  433. irq_type->irq_name,
  434. irq_data);
  435. if (error)
  436. return dev_err_probe(tps->dev, error,
  437. "Failed to request %s IRQ %d\n",
  438. irq_type->irq_name, irq);
  439. }
  440. return 0;
  441. }
  442. static const struct platform_device_id tps65219_regulator_id_table[] = {
  443. { "tps65214-regulator", TPS65214 },
  444. { "tps65215-regulator", TPS65215 },
  445. { "tps65219-regulator", TPS65219 },
  446. { /* sentinel */ }
  447. };
  448. MODULE_DEVICE_TABLE(platform, tps65219_regulator_id_table);
  449. static struct platform_driver tps65219_regulator_driver = {
  450. .driver = {
  451. .name = "tps65219-regulator",
  452. .probe_type = PROBE_PREFER_ASYNCHRONOUS,
  453. },
  454. .probe = tps65219_regulator_probe,
  455. .id_table = tps65219_regulator_id_table,
  456. };
  457. module_platform_driver(tps65219_regulator_driver);
  458. MODULE_AUTHOR("Jerome Neanne <j-neanne@baylibre.com>");
  459. MODULE_DESCRIPTION("TPS65214/TPS65215/TPS65219 Regulator driver");
  460. MODULE_LICENSE("GPL");