twl-common.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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/regulator/machine.h>
  26. #include <linux/regulator/fixed.h>
  27. #include <plat/i2c.h>
  28. #include <plat/usb.h>
  29. #include "twl-common.h"
  30. #include "pm.h"
  31. #include "voltage.h"
  32. #include "mux.h"
  33. static struct i2c_board_info __initdata pmic_i2c_board_info = {
  34. .addr = 0x48,
  35. .flags = I2C_CLIENT_WAKE,
  36. };
  37. static struct i2c_board_info __initdata omap4_i2c1_board_info[] = {
  38. {
  39. .addr = 0x48,
  40. .flags = I2C_CLIENT_WAKE,
  41. },
  42. {
  43. I2C_BOARD_INFO("twl6040", 0x4b),
  44. },
  45. };
  46. #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
  47. static int twl_set_voltage(void *data, int target_uV)
  48. {
  49. struct voltagedomain *voltdm = (struct voltagedomain *)data;
  50. return voltdm_scale(voltdm, target_uV);
  51. }
  52. static int twl_get_voltage(void *data)
  53. {
  54. struct voltagedomain *voltdm = (struct voltagedomain *)data;
  55. return voltdm_get_voltage(voltdm);
  56. }
  57. #endif
  58. void __init omap_pmic_init(int bus, u32 clkrate,
  59. const char *pmic_type, int pmic_irq,
  60. struct twl4030_platform_data *pmic_data)
  61. {
  62. strncpy(pmic_i2c_board_info.type, pmic_type,
  63. sizeof(pmic_i2c_board_info.type));
  64. pmic_i2c_board_info.irq = pmic_irq;
  65. pmic_i2c_board_info.platform_data = pmic_data;
  66. omap_register_i2c_bus(bus, clkrate, &pmic_i2c_board_info, 1);
  67. }
  68. void __init omap4_pmic_init(const char *pmic_type,
  69. struct twl4030_platform_data *pmic_data,
  70. struct twl6040_platform_data *twl6040_data, int twl6040_irq)
  71. {
  72. /* PMIC part*/
  73. omap_mux_init_signal("sys_nirq1", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE);
  74. strncpy(omap4_i2c1_board_info[0].type, pmic_type,
  75. sizeof(omap4_i2c1_board_info[0].type));
  76. omap4_i2c1_board_info[0].irq = OMAP44XX_IRQ_SYS_1N;
  77. omap4_i2c1_board_info[0].platform_data = pmic_data;
  78. /* TWL6040 audio IC part */
  79. omap4_i2c1_board_info[1].irq = twl6040_irq;
  80. omap4_i2c1_board_info[1].platform_data = twl6040_data;
  81. omap_register_i2c_bus(1, 400, omap4_i2c1_board_info, 2);
  82. }
  83. void __init omap_pmic_late_init(void)
  84. {
  85. /* Init the OMAP TWL parameters (if PMIC has been registered) */
  86. if (pmic_i2c_board_info.irq)
  87. omap3_twl_init();
  88. if (omap4_i2c1_board_info[0].irq)
  89. omap4_twl_init();
  90. }
  91. #if defined(CONFIG_ARCH_OMAP3)
  92. static struct twl4030_usb_data omap3_usb_pdata = {
  93. .usb_mode = T2_USB_MODE_ULPI,
  94. };
  95. static int omap3_batt_table[] = {
  96. /* 0 C */
  97. 30800, 29500, 28300, 27100,
  98. 26000, 24900, 23900, 22900, 22000, 21100, 20300, 19400, 18700, 17900,
  99. 17200, 16500, 15900, 15300, 14700, 14100, 13600, 13100, 12600, 12100,
  100. 11600, 11200, 10800, 10400, 10000, 9630, 9280, 8950, 8620, 8310,
  101. 8020, 7730, 7460, 7200, 6950, 6710, 6470, 6250, 6040, 5830,
  102. 5640, 5450, 5260, 5090, 4920, 4760, 4600, 4450, 4310, 4170,
  103. 4040, 3910, 3790, 3670, 3550
  104. };
  105. static struct twl4030_bci_platform_data omap3_bci_pdata = {
  106. .battery_tmp_tbl = omap3_batt_table,
  107. .tblsize = ARRAY_SIZE(omap3_batt_table),
  108. };
  109. static struct twl4030_madc_platform_data omap3_madc_pdata = {
  110. .irq_line = 1,
  111. };
  112. static struct twl4030_codec_data omap3_codec;
  113. static struct twl4030_audio_data omap3_audio_pdata = {
  114. .audio_mclk = 26000000,
  115. .codec = &omap3_codec,
  116. };
  117. static struct regulator_consumer_supply omap3_vdda_dac_supplies[] = {
  118. REGULATOR_SUPPLY("vdda_dac", "omapdss_venc"),
  119. };
  120. static struct regulator_init_data omap3_vdac_idata = {
  121. .constraints = {
  122. .min_uV = 1800000,
  123. .max_uV = 1800000,
  124. .valid_modes_mask = REGULATOR_MODE_NORMAL
  125. | REGULATOR_MODE_STANDBY,
  126. .valid_ops_mask = REGULATOR_CHANGE_MODE
  127. | REGULATOR_CHANGE_STATUS,
  128. },
  129. .num_consumer_supplies = ARRAY_SIZE(omap3_vdda_dac_supplies),
  130. .consumer_supplies = omap3_vdda_dac_supplies,
  131. };
  132. static struct regulator_consumer_supply omap3_vpll2_supplies[] = {
  133. REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
  134. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
  135. };
  136. static struct regulator_init_data omap3_vpll2_idata = {
  137. .constraints = {
  138. .min_uV = 1800000,
  139. .max_uV = 1800000,
  140. .valid_modes_mask = REGULATOR_MODE_NORMAL
  141. | REGULATOR_MODE_STANDBY,
  142. .valid_ops_mask = REGULATOR_CHANGE_MODE
  143. | REGULATOR_CHANGE_STATUS,
  144. },
  145. .num_consumer_supplies = ARRAY_SIZE(omap3_vpll2_supplies),
  146. .consumer_supplies = omap3_vpll2_supplies,
  147. };
  148. static struct regulator_consumer_supply omap3_vdd1_supply[] = {
  149. REGULATOR_SUPPLY("vcc", "mpu.0"),
  150. };
  151. static struct regulator_consumer_supply omap3_vdd2_supply[] = {
  152. REGULATOR_SUPPLY("vcc", "l3_main.0"),
  153. };
  154. static struct regulator_init_data omap3_vdd1 = {
  155. .constraints = {
  156. .name = "vdd_mpu_iva",
  157. .min_uV = 600000,
  158. .max_uV = 1450000,
  159. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  160. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  161. },
  162. .num_consumer_supplies = ARRAY_SIZE(omap3_vdd1_supply),
  163. .consumer_supplies = omap3_vdd1_supply,
  164. };
  165. static struct regulator_init_data omap3_vdd2 = {
  166. .constraints = {
  167. .name = "vdd_core",
  168. .min_uV = 600000,
  169. .max_uV = 1450000,
  170. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  171. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  172. },
  173. .num_consumer_supplies = ARRAY_SIZE(omap3_vdd2_supply),
  174. .consumer_supplies = omap3_vdd2_supply,
  175. };
  176. static struct twl_regulator_driver_data omap3_vdd1_drvdata = {
  177. .get_voltage = twl_get_voltage,
  178. .set_voltage = twl_set_voltage,
  179. };
  180. static struct twl_regulator_driver_data omap3_vdd2_drvdata = {
  181. .get_voltage = twl_get_voltage,
  182. .set_voltage = twl_set_voltage,
  183. };
  184. void __init omap3_pmic_get_config(struct twl4030_platform_data *pmic_data,
  185. u32 pdata_flags, u32 regulators_flags)
  186. {
  187. if (!pmic_data->vdd1) {
  188. omap3_vdd1.driver_data = &omap3_vdd1_drvdata;
  189. omap3_vdd1_drvdata.data = voltdm_lookup("mpu_iva");
  190. pmic_data->vdd1 = &omap3_vdd1;
  191. }
  192. if (!pmic_data->vdd2) {
  193. omap3_vdd2.driver_data = &omap3_vdd2_drvdata;
  194. omap3_vdd2_drvdata.data = voltdm_lookup("core");
  195. pmic_data->vdd2 = &omap3_vdd2;
  196. }
  197. /* Common platform data configurations */
  198. if (pdata_flags & TWL_COMMON_PDATA_USB && !pmic_data->usb)
  199. pmic_data->usb = &omap3_usb_pdata;
  200. if (pdata_flags & TWL_COMMON_PDATA_BCI && !pmic_data->bci)
  201. pmic_data->bci = &omap3_bci_pdata;
  202. if (pdata_flags & TWL_COMMON_PDATA_MADC && !pmic_data->madc)
  203. pmic_data->madc = &omap3_madc_pdata;
  204. if (pdata_flags & TWL_COMMON_PDATA_AUDIO && !pmic_data->audio)
  205. pmic_data->audio = &omap3_audio_pdata;
  206. /* Common regulator configurations */
  207. if (regulators_flags & TWL_COMMON_REGULATOR_VDAC && !pmic_data->vdac)
  208. pmic_data->vdac = &omap3_vdac_idata;
  209. if (regulators_flags & TWL_COMMON_REGULATOR_VPLL2 && !pmic_data->vpll2)
  210. pmic_data->vpll2 = &omap3_vpll2_idata;
  211. }
  212. #endif /* CONFIG_ARCH_OMAP3 */
  213. #if defined(CONFIG_ARCH_OMAP4)
  214. static struct twl4030_usb_data omap4_usb_pdata = {
  215. };
  216. static struct regulator_init_data omap4_vdac_idata = {
  217. .constraints = {
  218. .min_uV = 1800000,
  219. .max_uV = 1800000,
  220. .valid_modes_mask = REGULATOR_MODE_NORMAL
  221. | REGULATOR_MODE_STANDBY,
  222. .valid_ops_mask = REGULATOR_CHANGE_MODE
  223. | REGULATOR_CHANGE_STATUS,
  224. },
  225. .supply_regulator = "V2V1",
  226. };
  227. static struct regulator_init_data omap4_vaux2_idata = {
  228. .constraints = {
  229. .min_uV = 1200000,
  230. .max_uV = 2800000,
  231. .apply_uV = true,
  232. .valid_modes_mask = REGULATOR_MODE_NORMAL
  233. | REGULATOR_MODE_STANDBY,
  234. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  235. | REGULATOR_CHANGE_MODE
  236. | REGULATOR_CHANGE_STATUS,
  237. },
  238. };
  239. static struct regulator_init_data omap4_vaux3_idata = {
  240. .constraints = {
  241. .min_uV = 1000000,
  242. .max_uV = 3000000,
  243. .apply_uV = true,
  244. .valid_modes_mask = REGULATOR_MODE_NORMAL
  245. | REGULATOR_MODE_STANDBY,
  246. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  247. | REGULATOR_CHANGE_MODE
  248. | REGULATOR_CHANGE_STATUS,
  249. },
  250. };
  251. static struct regulator_consumer_supply omap4_vmmc_supply[] = {
  252. REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
  253. };
  254. /* VMMC1 for MMC1 card */
  255. static struct regulator_init_data omap4_vmmc_idata = {
  256. .constraints = {
  257. .min_uV = 1200000,
  258. .max_uV = 3000000,
  259. .apply_uV = true,
  260. .valid_modes_mask = REGULATOR_MODE_NORMAL
  261. | REGULATOR_MODE_STANDBY,
  262. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  263. | REGULATOR_CHANGE_MODE
  264. | REGULATOR_CHANGE_STATUS,
  265. },
  266. .num_consumer_supplies = ARRAY_SIZE(omap4_vmmc_supply),
  267. .consumer_supplies = omap4_vmmc_supply,
  268. };
  269. static struct regulator_init_data omap4_vpp_idata = {
  270. .constraints = {
  271. .min_uV = 1800000,
  272. .max_uV = 2500000,
  273. .apply_uV = true,
  274. .valid_modes_mask = REGULATOR_MODE_NORMAL
  275. | REGULATOR_MODE_STANDBY,
  276. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
  277. | REGULATOR_CHANGE_MODE
  278. | REGULATOR_CHANGE_STATUS,
  279. },
  280. };
  281. static struct regulator_init_data omap4_vana_idata = {
  282. .constraints = {
  283. .min_uV = 2100000,
  284. .max_uV = 2100000,
  285. .valid_modes_mask = REGULATOR_MODE_NORMAL
  286. | REGULATOR_MODE_STANDBY,
  287. .valid_ops_mask = REGULATOR_CHANGE_MODE
  288. | REGULATOR_CHANGE_STATUS,
  289. },
  290. };
  291. static struct regulator_consumer_supply omap4_vcxio_supply[] = {
  292. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dss"),
  293. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
  294. REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.1"),
  295. };
  296. static struct regulator_init_data omap4_vcxio_idata = {
  297. .constraints = {
  298. .min_uV = 1800000,
  299. .max_uV = 1800000,
  300. .valid_modes_mask = REGULATOR_MODE_NORMAL
  301. | REGULATOR_MODE_STANDBY,
  302. .valid_ops_mask = REGULATOR_CHANGE_MODE
  303. | REGULATOR_CHANGE_STATUS,
  304. .always_on = true,
  305. },
  306. .num_consumer_supplies = ARRAY_SIZE(omap4_vcxio_supply),
  307. .consumer_supplies = omap4_vcxio_supply,
  308. .supply_regulator = "V2V1",
  309. };
  310. static struct regulator_init_data omap4_vusb_idata = {
  311. .constraints = {
  312. .min_uV = 3300000,
  313. .max_uV = 3300000,
  314. .valid_modes_mask = REGULATOR_MODE_NORMAL
  315. | REGULATOR_MODE_STANDBY,
  316. .valid_ops_mask = REGULATOR_CHANGE_MODE
  317. | REGULATOR_CHANGE_STATUS,
  318. },
  319. };
  320. static struct regulator_init_data omap4_clk32kg_idata = {
  321. .constraints = {
  322. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  323. },
  324. };
  325. static struct regulator_consumer_supply omap4_vdd1_supply[] = {
  326. REGULATOR_SUPPLY("vcc", "mpu.0"),
  327. };
  328. static struct regulator_consumer_supply omap4_vdd2_supply[] = {
  329. REGULATOR_SUPPLY("vcc", "iva.0"),
  330. };
  331. static struct regulator_consumer_supply omap4_vdd3_supply[] = {
  332. REGULATOR_SUPPLY("vcc", "l3_main.0"),
  333. };
  334. static struct regulator_init_data omap4_vdd1 = {
  335. .constraints = {
  336. .name = "vdd_mpu",
  337. .min_uV = 500000,
  338. .max_uV = 1500000,
  339. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  340. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  341. },
  342. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd1_supply),
  343. .consumer_supplies = omap4_vdd1_supply,
  344. };
  345. static struct regulator_init_data omap4_vdd2 = {
  346. .constraints = {
  347. .name = "vdd_iva",
  348. .min_uV = 500000,
  349. .max_uV = 1500000,
  350. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  351. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  352. },
  353. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd2_supply),
  354. .consumer_supplies = omap4_vdd2_supply,
  355. };
  356. static struct regulator_init_data omap4_vdd3 = {
  357. .constraints = {
  358. .name = "vdd_core",
  359. .min_uV = 500000,
  360. .max_uV = 1500000,
  361. .valid_modes_mask = REGULATOR_MODE_NORMAL,
  362. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE,
  363. },
  364. .num_consumer_supplies = ARRAY_SIZE(omap4_vdd3_supply),
  365. .consumer_supplies = omap4_vdd3_supply,
  366. };
  367. static struct twl_regulator_driver_data omap4_vdd1_drvdata = {
  368. .get_voltage = twl_get_voltage,
  369. .set_voltage = twl_set_voltage,
  370. };
  371. static struct twl_regulator_driver_data omap4_vdd2_drvdata = {
  372. .get_voltage = twl_get_voltage,
  373. .set_voltage = twl_set_voltage,
  374. };
  375. static struct twl_regulator_driver_data omap4_vdd3_drvdata = {
  376. .get_voltage = twl_get_voltage,
  377. .set_voltage = twl_set_voltage,
  378. };
  379. static struct regulator_consumer_supply omap4_v1v8_supply[] = {
  380. REGULATOR_SUPPLY("vio", "1-004b"),
  381. };
  382. static struct regulator_init_data omap4_v1v8_idata = {
  383. .constraints = {
  384. .min_uV = 1800000,
  385. .max_uV = 1800000,
  386. .valid_modes_mask = REGULATOR_MODE_NORMAL
  387. | REGULATOR_MODE_STANDBY,
  388. .valid_ops_mask = REGULATOR_CHANGE_MODE
  389. | REGULATOR_CHANGE_STATUS,
  390. .always_on = true,
  391. },
  392. .num_consumer_supplies = ARRAY_SIZE(omap4_v1v8_supply),
  393. .consumer_supplies = omap4_v1v8_supply,
  394. };
  395. static struct regulator_consumer_supply omap4_v2v1_supply[] = {
  396. REGULATOR_SUPPLY("v2v1", "1-004b"),
  397. };
  398. static struct regulator_init_data omap4_v2v1_idata = {
  399. .constraints = {
  400. .min_uV = 2100000,
  401. .max_uV = 2100000,
  402. .valid_modes_mask = REGULATOR_MODE_NORMAL
  403. | REGULATOR_MODE_STANDBY,
  404. .valid_ops_mask = REGULATOR_CHANGE_MODE
  405. | REGULATOR_CHANGE_STATUS,
  406. },
  407. .num_consumer_supplies = ARRAY_SIZE(omap4_v2v1_supply),
  408. .consumer_supplies = omap4_v2v1_supply,
  409. };
  410. void __init omap4_pmic_get_config(struct twl4030_platform_data *pmic_data,
  411. u32 pdata_flags, u32 regulators_flags)
  412. {
  413. if (!pmic_data->vdd1) {
  414. omap4_vdd1.driver_data = &omap4_vdd1_drvdata;
  415. omap4_vdd1_drvdata.data = voltdm_lookup("mpu");
  416. pmic_data->vdd1 = &omap4_vdd1;
  417. }
  418. if (!pmic_data->vdd2) {
  419. omap4_vdd2.driver_data = &omap4_vdd2_drvdata;
  420. omap4_vdd2_drvdata.data = voltdm_lookup("iva");
  421. pmic_data->vdd2 = &omap4_vdd2;
  422. }
  423. if (!pmic_data->vdd3) {
  424. omap4_vdd3.driver_data = &omap4_vdd3_drvdata;
  425. omap4_vdd3_drvdata.data = voltdm_lookup("core");
  426. pmic_data->vdd3 = &omap4_vdd3;
  427. }
  428. /* Common platform data configurations */
  429. if (pdata_flags & TWL_COMMON_PDATA_USB && !pmic_data->usb)
  430. pmic_data->usb = &omap4_usb_pdata;
  431. /* Common regulator configurations */
  432. if (regulators_flags & TWL_COMMON_REGULATOR_VDAC && !pmic_data->vdac)
  433. pmic_data->vdac = &omap4_vdac_idata;
  434. if (regulators_flags & TWL_COMMON_REGULATOR_VAUX2 && !pmic_data->vaux2)
  435. pmic_data->vaux2 = &omap4_vaux2_idata;
  436. if (regulators_flags & TWL_COMMON_REGULATOR_VAUX3 && !pmic_data->vaux3)
  437. pmic_data->vaux3 = &omap4_vaux3_idata;
  438. if (regulators_flags & TWL_COMMON_REGULATOR_VMMC && !pmic_data->vmmc)
  439. pmic_data->vmmc = &omap4_vmmc_idata;
  440. if (regulators_flags & TWL_COMMON_REGULATOR_VPP && !pmic_data->vpp)
  441. pmic_data->vpp = &omap4_vpp_idata;
  442. if (regulators_flags & TWL_COMMON_REGULATOR_VANA && !pmic_data->vana)
  443. pmic_data->vana = &omap4_vana_idata;
  444. if (regulators_flags & TWL_COMMON_REGULATOR_VCXIO && !pmic_data->vcxio)
  445. pmic_data->vcxio = &omap4_vcxio_idata;
  446. if (regulators_flags & TWL_COMMON_REGULATOR_VUSB && !pmic_data->vusb)
  447. pmic_data->vusb = &omap4_vusb_idata;
  448. if (regulators_flags & TWL_COMMON_REGULATOR_CLK32KG &&
  449. !pmic_data->clk32kg)
  450. pmic_data->clk32kg = &omap4_clk32kg_idata;
  451. if (regulators_flags & TWL_COMMON_REGULATOR_V1V8 && !pmic_data->v1v8)
  452. pmic_data->v1v8 = &omap4_v1v8_idata;
  453. if (regulators_flags & TWL_COMMON_REGULATOR_V2V1 && !pmic_data->v2v1)
  454. pmic_data->v2v1 = &omap4_v2v1_idata;
  455. }
  456. #endif /* CONFIG_ARCH_OMAP4 */