twl-common.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * twl-common.c
  3. *
  4. * Copyright (C) 2011 Texas Instruments, Inc..
  5. * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. *
  21. */
  22. #include <linux/i2c.h>
  23. #include <linux/i2c/twl.h>
  24. #include <linux/gpio.h>
  25. #include <linux/string.h>
  26. #include <linux/phy/phy.h>
  27. #include <linux/regulator/machine.h>
  28. #include <linux/regulator/fixed.h>
  29. #include "soc.h"
  30. #include "twl-common.h"
  31. #include "pm.h"
  32. #include "voltage.h"
  33. #include "mux.h"
  34. static struct i2c_board_info __initdata pmic_i2c_board_info = {
  35. .addr = 0x48,
  36. .flags = I2C_CLIENT_WAKE,
  37. };
  38. #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
  39. static int twl_set_voltage(void *data, int target_uV)
  40. {
  41. struct voltagedomain *voltdm = (struct voltagedomain *)data;
  42. return voltdm_scale(voltdm, target_uV);
  43. }
  44. static int twl_get_voltage(void *data)
  45. {
  46. struct voltagedomain *voltdm = (struct voltagedomain *)data;
  47. return voltdm_get_voltage(voltdm);
  48. }
  49. #endif
  50. void __init omap_pmic_init(int bus, u32 clkrate,
  51. const char *pmic_type, int pmic_irq,
  52. struct twl4030_platform_data *pmic_data)
  53. {
  54. omap_mux_init_signal("sys_nirq", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE);
  55. strlcpy(pmic_i2c_board_info.type, pmic_type,
  56. sizeof(pmic_i2c_board_info.type));
  57. pmic_i2c_board_info.irq = pmic_irq;
  58. pmic_i2c_board_info.platform_data = pmic_data;
  59. omap_register_i2c_bus(bus, clkrate, &pmic_i2c_board_info, 1);
  60. }
  61. void __init omap4_pmic_init(const char *pmic_type,
  62. struct twl4030_platform_data *pmic_data,
  63. struct i2c_board_info *devices, int nr_devices)
  64. {
  65. /* PMIC part*/
  66. omap_mux_init_signal("sys_nirq1", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE);
  67. omap_mux_init_signal("fref_clk0_out.sys_drm_msecure", OMAP_PIN_OUTPUT);
  68. omap_pmic_init(1, 400, pmic_type, 7 + OMAP44XX_IRQ_GIC_START, pmic_data);
  69. /* Register additional devices on i2c1 bus if needed */
  70. if (devices)
  71. i2c_register_board_info(1, devices, nr_devices);
  72. }
  73. void __init omap_pmic_late_init(void)
  74. {
  75. /* Init the OMAP TWL parameters (if PMIC has been registerd) */
  76. if (!pmic_i2c_board_info.irq)
  77. return;
  78. omap3_twl_init();
  79. omap4_twl_init();
  80. }
  81. #if defined(CONFIG_ARCH_OMAP3)
  82. struct phy_consumer consumers[] = {
  83. PHY_CONSUMER("musb-hdrc.0", "usb"),
  84. };
  85. struct phy_init_data init_data = {
  86. .consumers = consumers,
  87. .num_consumers = ARRAY_SIZE(consumers),
  88. };
  89. static struct twl4030_usb_data omap3_usb_pdata = {
  90. .usb_mode = T2_USB_MODE_ULPI,
  91. .init_data = &init_data,
  92. };
  93. static int omap3_batt_table[] = {
  94. /* 0 C */
  95. 30800, 29500, 28300, 27100,
  96. 26000, 24900, 23900, 22900, 22000, 21100, 20300, 19400, 18700, 17900,
  97. 17200, 16500, 15900, 15300, 14700, 14100, 13600, 13100, 12600, 12100,
  98. 11600, 11200, 10800, 10400, 10000, 9630, 9280, 8950, 8620, 8310,
  99. 8020, 7730, 7460, 7200, 6950, 6710, 6470, 6250, 6040, 5830,
  100. 5640, 5450, 5260, 5090, 4920, 4760, 4600, 4450, 4310, 4170,
  101. 4040, 3910, 3790, 3670, 3550
  102. };
  103. static struct twl4030_bci_platform_data omap3_bci_pdata = {
  104. .battery_tmp_tbl = omap3_batt_table,
  105. .tblsize = ARRAY_SIZE(omap3_batt_table),
  106. };
  107. static struct twl4030_madc_platform_data omap3_madc_pdata = {
  108. .irq_line = 1,
  109. };
  110. static struct twl4030_codec_data omap3_codec;
  111. static struct twl4030_audio_data omap3_audio_pdata = {
  112. .audio_mclk = 26000000,
  113. .codec = &omap3_codec,
  114. };
  115. static struct regulator_consumer_supply omap3_vdda_dac_supplies[] = {
  116. REGULATOR_SUPPLY("vdda_dac", "omapdss_venc"),
  117. };
  118. static struct regulator_init_data omap3_vdac_idata = {
  119. .constraints = {
  120. .min_uV = 1800000,
  121. .max_uV = 1800000,
  122. .valid_modes_mask = REGULATOR_MODE_NORMAL
  123. | REGULATOR_MODE_STANDBY,
  124. .valid_ops_mask = REGULATOR_CHANGE_MODE
  125. | REGULATOR_CHANGE_STATUS,
  126. },
  127. .num_consumer_supplies = ARRAY_SIZE(omap3_vdda_dac_supplies),
  128. .consumer_supplies = omap3_vdda_dac_supplies,
  129. };
  130. static struct regulator_consumer_supply omap3_vpll2_supplies[] = {
  131. REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
  132. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dpi.0"),
  133. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
  134. };
  135. static struct regulator_init_data omap3_vpll2_idata = {
  136. .constraints = {
  137. .min_uV = 1800000,
  138. .max_uV = 1800000,
  139. .valid_modes_mask = REGULATOR_MODE_NORMAL
  140. | REGULATOR_MODE_STANDBY,
  141. .valid_ops_mask = REGULATOR_CHANGE_MODE
  142. | REGULATOR_CHANGE_STATUS,
  143. },
  144. .num_consumer_supplies = ARRAY_SIZE(omap3_vpll2_supplies),
  145. .consumer_supplies = omap3_vpll2_supplies,
  146. };
  147. static struct regulator_consumer_supply omap3_vdd1_supply[] = {
  148. REGULATOR_SUPPLY("vcc", "cpu0"),
  149. };
  150. static struct regulator_consumer_supply omap3_vdd2_supply[] = {
  151. REGULATOR_SUPPLY("vcc", "l3_main.0"),
  152. };
  153. static struct regulator_init_data omap3_vdd1 = {
  154. .constraints = {
  155. .name = "vdd_mpu_iva",
  156. .min_uV = 600000,
  157. .max_uV = 1450000,
  158. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  159. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  160. },
  161. .num_consumer_supplies = ARRAY_SIZE(omap3_vdd1_supply),
  162. .consumer_supplies = omap3_vdd1_supply,
  163. };
  164. static struct regulator_init_data omap3_vdd2 = {
  165. .constraints = {
  166. .name = "vdd_core",
  167. .min_uV = 600000,
  168. .max_uV = 1450000,
  169. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  170. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  171. },
  172. .num_consumer_supplies = ARRAY_SIZE(omap3_vdd2_supply),
  173. .consumer_supplies = omap3_vdd2_supply,
  174. };
  175. static struct twl_regulator_driver_data omap3_vdd1_drvdata = {
  176. .get_voltage = twl_get_voltage,
  177. .set_voltage = twl_set_voltage,
  178. };
  179. static struct twl_regulator_driver_data omap3_vdd2_drvdata = {
  180. .get_voltage = twl_get_voltage,
  181. .set_voltage = twl_set_voltage,
  182. };
  183. void __init omap3_pmic_get_config(struct twl4030_platform_data *pmic_data,
  184. u32 pdata_flags, u32 regulators_flags)
  185. {
  186. if (!pmic_data->vdd1) {
  187. omap3_vdd1.driver_data = &omap3_vdd1_drvdata;
  188. omap3_vdd1_drvdata.data = voltdm_lookup("mpu_iva");
  189. pmic_data->vdd1 = &omap3_vdd1;
  190. }
  191. if (!pmic_data->vdd2) {
  192. omap3_vdd2.driver_data = &omap3_vdd2_drvdata;
  193. omap3_vdd2_drvdata.data = voltdm_lookup("core");
  194. pmic_data->vdd2 = &omap3_vdd2;
  195. }
  196. /* Common platform data configurations */
  197. if (pdata_flags & TWL_COMMON_PDATA_USB && !pmic_data->usb)
  198. pmic_data->usb = &omap3_usb_pdata;
  199. if (pdata_flags & TWL_COMMON_PDATA_BCI && !pmic_data->bci)
  200. pmic_data->bci = &omap3_bci_pdata;
  201. if (pdata_flags & TWL_COMMON_PDATA_MADC && !pmic_data->madc)
  202. pmic_data->madc = &omap3_madc_pdata;
  203. if (pdata_flags & TWL_COMMON_PDATA_AUDIO && !pmic_data->audio)
  204. pmic_data->audio = &omap3_audio_pdata;
  205. /* Common regulator configurations */
  206. if (regulators_flags & TWL_COMMON_REGULATOR_VDAC && !pmic_data->vdac)
  207. pmic_data->vdac = &omap3_vdac_idata;
  208. if (regulators_flags & TWL_COMMON_REGULATOR_VPLL2 && !pmic_data->vpll2)
  209. pmic_data->vpll2 = &omap3_vpll2_idata;
  210. }
  211. #endif /* CONFIG_ARCH_OMAP3 */
  212. #if defined(CONFIG_ARCH_OMAP4)
  213. static struct twl4030_usb_data omap4_usb_pdata = {
  214. };
  215. static struct regulator_consumer_supply omap4_vdda_hdmi_dac_supplies[] = {
  216. REGULATOR_SUPPLY("vdda_hdmi_dac", "omapdss_hdmi"),
  217. };
  218. static struct regulator_init_data omap4_vdac_idata = {
  219. .constraints = {
  220. .min_uV = 1800000,
  221. .max_uV = 1800000,
  222. .valid_modes_mask = REGULATOR_MODE_NORMAL
  223. | REGULATOR_MODE_STANDBY,
  224. .valid_ops_mask = REGULATOR_CHANGE_MODE
  225. | REGULATOR_CHANGE_STATUS,
  226. },
  227. .num_consumer_supplies = ARRAY_SIZE(omap4_vdda_hdmi_dac_supplies),
  228. .consumer_supplies = omap4_vdda_hdmi_dac_supplies,
  229. .supply_regulator = "V2V1",
  230. };
  231. static struct regulator_init_data omap4_vaux2_idata = {
  232. .constraints = {
  233. .min_uV = 1200000,
  234. .max_uV = 2800000,
  235. .apply_uV = true,
  236. .valid_modes_mask = REGULATOR_MODE_NORMAL
  237. | REGULATOR_MODE_STANDBY,
  238. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  239. | REGULATOR_CHANGE_MODE
  240. | REGULATOR_CHANGE_STATUS,
  241. },
  242. };
  243. static struct regulator_init_data omap4_vaux3_idata = {
  244. .constraints = {
  245. .min_uV = 1000000,
  246. .max_uV = 3000000,
  247. .apply_uV = true,
  248. .valid_modes_mask = REGULATOR_MODE_NORMAL
  249. | REGULATOR_MODE_STANDBY,
  250. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  251. | REGULATOR_CHANGE_MODE
  252. | REGULATOR_CHANGE_STATUS,
  253. },
  254. };
  255. static struct regulator_consumer_supply omap4_vmmc_supply[] = {
  256. REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
  257. };
  258. /* VMMC1 for MMC1 card */
  259. static struct regulator_init_data omap4_vmmc_idata = {
  260. .constraints = {
  261. .min_uV = 1200000,
  262. .max_uV = 3000000,
  263. .apply_uV = true,
  264. .valid_modes_mask = REGULATOR_MODE_NORMAL
  265. | REGULATOR_MODE_STANDBY,
  266. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  267. | REGULATOR_CHANGE_MODE
  268. | REGULATOR_CHANGE_STATUS,
  269. },
  270. .num_consumer_supplies = ARRAY_SIZE(omap4_vmmc_supply),
  271. .consumer_supplies = omap4_vmmc_supply,
  272. };
  273. static struct regulator_init_data omap4_vpp_idata = {
  274. .constraints = {
  275. .min_uV = 1800000,
  276. .max_uV = 2500000,
  277. .apply_uV = true,
  278. .valid_modes_mask = REGULATOR_MODE_NORMAL
  279. | REGULATOR_MODE_STANDBY,
  280. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  281. | REGULATOR_CHANGE_MODE
  282. | REGULATOR_CHANGE_STATUS,
  283. },
  284. };
  285. static struct regulator_init_data omap4_vana_idata = {
  286. .constraints = {
  287. .min_uV = 2100000,
  288. .max_uV = 2100000,
  289. .valid_modes_mask = REGULATOR_MODE_NORMAL
  290. | REGULATOR_MODE_STANDBY,
  291. .valid_ops_mask = REGULATOR_CHANGE_MODE
  292. | REGULATOR_CHANGE_STATUS,
  293. },
  294. };
  295. static struct regulator_consumer_supply omap4_vcxio_supply[] = {
  296. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dss"),
  297. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
  298. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.1"),
  299. };
  300. static struct regulator_init_data omap4_vcxio_idata = {
  301. .constraints = {
  302. .min_uV = 1800000,
  303. .max_uV = 1800000,
  304. .valid_modes_mask = REGULATOR_MODE_NORMAL
  305. | REGULATOR_MODE_STANDBY,
  306. .valid_ops_mask = REGULATOR_CHANGE_MODE
  307. | REGULATOR_CHANGE_STATUS,
  308. .always_on = true,
  309. },
  310. .num_consumer_supplies = ARRAY_SIZE(omap4_vcxio_supply),
  311. .consumer_supplies = omap4_vcxio_supply,
  312. .supply_regulator = "V2V1",
  313. };
  314. static struct regulator_init_data omap4_vusb_idata = {
  315. .constraints = {
  316. .min_uV = 3300000,
  317. .max_uV = 3300000,
  318. .valid_modes_mask = REGULATOR_MODE_NORMAL
  319. | REGULATOR_MODE_STANDBY,
  320. .valid_ops_mask = REGULATOR_CHANGE_MODE
  321. | REGULATOR_CHANGE_STATUS,
  322. },
  323. };
  324. static struct regulator_init_data omap4_clk32kg_idata = {
  325. .constraints = {
  326. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  327. },
  328. };
  329. static struct regulator_consumer_supply omap4_vdd1_supply[] = {
  330. REGULATOR_SUPPLY("vcc", "cpu0"),
  331. };
  332. static struct regulator_consumer_supply omap4_vdd2_supply[] = {
  333. REGULATOR_SUPPLY("vcc", "iva.0"),
  334. };
  335. static struct regulator_consumer_supply omap4_vdd3_supply[] = {
  336. REGULATOR_SUPPLY("vcc", "l3_main.0"),
  337. };
  338. static struct regulator_init_data omap4_vdd1 = {
  339. .constraints = {
  340. .name = "vdd_mpu",
  341. .min_uV = 500000,
  342. .max_uV = 1500000,
  343. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  344. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  345. },
  346. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd1_supply),
  347. .consumer_supplies = omap4_vdd1_supply,
  348. };
  349. static struct regulator_init_data omap4_vdd2 = {
  350. .constraints = {
  351. .name = "vdd_iva",
  352. .min_uV = 500000,
  353. .max_uV = 1500000,
  354. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  355. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  356. },
  357. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd2_supply),
  358. .consumer_supplies = omap4_vdd2_supply,
  359. };
  360. static struct regulator_init_data omap4_vdd3 = {
  361. .constraints = {
  362. .name = "vdd_core",
  363. .min_uV = 500000,
  364. .max_uV = 1500000,
  365. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  366. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  367. },
  368. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd3_supply),
  369. .consumer_supplies = omap4_vdd3_supply,
  370. };
  371. static struct twl_regulator_driver_data omap4_vdd1_drvdata = {
  372. .get_voltage = twl_get_voltage,
  373. .set_voltage = twl_set_voltage,
  374. };
  375. static struct twl_regulator_driver_data omap4_vdd2_drvdata = {
  376. .get_voltage = twl_get_voltage,
  377. .set_voltage = twl_set_voltage,
  378. };
  379. static struct twl_regulator_driver_data omap4_vdd3_drvdata = {
  380. .get_voltage = twl_get_voltage,
  381. .set_voltage = twl_set_voltage,
  382. };
  383. static struct regulator_consumer_supply omap4_v1v8_supply[] = {
  384. REGULATOR_SUPPLY("vio", "1-004b"),
  385. };
  386. static struct regulator_init_data omap4_v1v8_idata = {
  387. .constraints = {
  388. .min_uV = 1800000,
  389. .max_uV = 1800000,
  390. .valid_modes_mask = REGULATOR_MODE_NORMAL
  391. | REGULATOR_MODE_STANDBY,
  392. .valid_ops_mask = REGULATOR_CHANGE_MODE
  393. | REGULATOR_CHANGE_STATUS,
  394. .always_on = true,
  395. },
  396. .num_consumer_supplies = ARRAY_SIZE(omap4_v1v8_supply),
  397. .consumer_supplies = omap4_v1v8_supply,
  398. };
  399. static struct regulator_consumer_supply omap4_v2v1_supply[] = {
  400. REGULATOR_SUPPLY("v2v1", "1-004b"),
  401. };
  402. static struct regulator_init_data omap4_v2v1_idata = {
  403. .constraints = {
  404. .min_uV = 2100000,
  405. .max_uV = 2100000,
  406. .valid_modes_mask = REGULATOR_MODE_NORMAL
  407. | REGULATOR_MODE_STANDBY,
  408. .valid_ops_mask = REGULATOR_CHANGE_MODE
  409. | REGULATOR_CHANGE_STATUS,
  410. },
  411. .num_consumer_supplies = ARRAY_SIZE(omap4_v2v1_supply),
  412. .consumer_supplies = omap4_v2v1_supply,
  413. };
  414. void __init omap4_pmic_get_config(struct twl4030_platform_data *pmic_data,
  415. u32 pdata_flags, u32 regulators_flags)
  416. {
  417. if (!pmic_data->vdd1) {
  418. omap4_vdd1.driver_data = &omap4_vdd1_drvdata;
  419. omap4_vdd1_drvdata.data = voltdm_lookup("mpu");
  420. pmic_data->vdd1 = &omap4_vdd1;
  421. }
  422. if (!pmic_data->vdd2) {
  423. omap4_vdd2.driver_data = &omap4_vdd2_drvdata;
  424. omap4_vdd2_drvdata.data = voltdm_lookup("iva");
  425. pmic_data->vdd2 = &omap4_vdd2;
  426. }
  427. if (!pmic_data->vdd3) {
  428. omap4_vdd3.driver_data = &omap4_vdd3_drvdata;
  429. omap4_vdd3_drvdata.data = voltdm_lookup("core");
  430. pmic_data->vdd3 = &omap4_vdd3;
  431. }
  432. /* Common platform data configurations */
  433. if (pdata_flags & TWL_COMMON_PDATA_USB && !pmic_data->usb)
  434. pmic_data->usb = &omap4_usb_pdata;
  435. /* Common regulator configurations */
  436. if (regulators_flags & TWL_COMMON_REGULATOR_VDAC && !pmic_data->vdac)
  437. pmic_data->vdac = &omap4_vdac_idata;
  438. if (regulators_flags & TWL_COMMON_REGULATOR_VAUX2 && !pmic_data->vaux2)
  439. pmic_data->vaux2 = &omap4_vaux2_idata;
  440. if (regulators_flags & TWL_COMMON_REGULATOR_VAUX3 && !pmic_data->vaux3)
  441. pmic_data->vaux3 = &omap4_vaux3_idata;
  442. if (regulators_flags & TWL_COMMON_REGULATOR_VMMC && !pmic_data->vmmc)
  443. pmic_data->vmmc = &omap4_vmmc_idata;
  444. if (regulators_flags & TWL_COMMON_REGULATOR_VPP && !pmic_data->vpp)
  445. pmic_data->vpp = &omap4_vpp_idata;
  446. if (regulators_flags & TWL_COMMON_REGULATOR_VANA && !pmic_data->vana)
  447. pmic_data->vana = &omap4_vana_idata;
  448. if (regulators_flags & TWL_COMMON_REGULATOR_VCXIO && !pmic_data->vcxio)
  449. pmic_data->vcxio = &omap4_vcxio_idata;
  450. if (regulators_flags & TWL_COMMON_REGULATOR_VUSB && !pmic_data->vusb)
  451. pmic_data->vusb = &omap4_vusb_idata;
  452. if (regulators_flags & TWL_COMMON_REGULATOR_CLK32KG &&
  453. !pmic_data->clk32kg)
  454. pmic_data->clk32kg = &omap4_clk32kg_idata;
  455. if (regulators_flags & TWL_COMMON_REGULATOR_V1V8 && !pmic_data->v1v8)
  456. pmic_data->v1v8 = &omap4_v1v8_idata;
  457. if (regulators_flags & TWL_COMMON_REGULATOR_V2V1 && !pmic_data->v2v1)
  458. pmic_data->v2v1 = &omap4_v2v1_idata;
  459. }
  460. #endif /* CONFIG_ARCH_OMAP4 */
  461. #if defined(CONFIG_SND_OMAP_SOC_OMAP_TWL4030) || \
  462. defined(CONFIG_SND_OMAP_SOC_OMAP_TWL4030_MODULE)
  463. #include <linux/platform_data/omap-twl4030.h>
  464. /* Commonly used configuration */
  465. static struct omap_tw4030_pdata omap_twl4030_audio_data;
  466. static struct platform_device audio_device = {
  467. .name = "omap-twl4030",
  468. .id = -1,
  469. };
  470. void omap_twl4030_audio_init(char *card_name,
  471. struct omap_tw4030_pdata *pdata)
  472. {
  473. if (!pdata)
  474. pdata = &omap_twl4030_audio_data;
  475. pdata->card_name = card_name;
  476. audio_device.dev.platform_data = pdata;
  477. platform_device_register(&audio_device);
  478. }
  479. #else /* SOC_OMAP_TWL4030 */
  480. void omap_twl4030_audio_init(char *card_name,
  481. struct omap_tw4030_pdata *pdata)
  482. {
  483. return;
  484. }
  485. #endif /* SOC_OMAP_TWL4030 */