opp3xxx_data.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * OMAP3 OPP table definitions.
  3. *
  4. * Copyright (C) 2009-2010 Texas Instruments Incorporated - http://www.ti.com/
  5. * Nishanth Menon
  6. * Kevin Hilman
  7. * Copyright (C) 2010 Nokia Corporation.
  8. * Eduardo Valentin
  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. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  15. * kind, whether express or implied; without even the implied warranty
  16. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #include <linux/module.h>
  20. #include <plat/cpu.h>
  21. #include "omap_opp_data.h"
  22. static struct omap_opp_def __initdata omap34xx_opp_def_list[] = {
  23. /* MPU OPP1 */
  24. OPP_INITIALIZER("mpu", true, 125000000, 975000),
  25. /* MPU OPP2 */
  26. OPP_INITIALIZER("mpu", true, 250000000, 1075000),
  27. /* MPU OPP3 */
  28. OPP_INITIALIZER("mpu", true, 500000000, 1200000),
  29. /* MPU OPP4 */
  30. OPP_INITIALIZER("mpu", true, 550000000, 1270000),
  31. /* MPU OPP5 */
  32. OPP_INITIALIZER("mpu", true, 600000000, 1350000),
  33. /*
  34. * L3 OPP1 - 41.5 MHz is disabled because: The voltage for that OPP is
  35. * almost the same than the one at 83MHz thus providing very little
  36. * gain for the power point of view. In term of energy it will even
  37. * increase the consumption due to the very negative performance
  38. * impact that frequency will do to the MPU and the whole system in
  39. * general.
  40. */
  41. OPP_INITIALIZER("l3_main", false, 41500000, 975000),
  42. /* L3 OPP2 */
  43. OPP_INITIALIZER("l3_main", true, 83000000, 1050000),
  44. /* L3 OPP3 */
  45. OPP_INITIALIZER("l3_main", true, 166000000, 1150000),
  46. /* DSP OPP1 */
  47. OPP_INITIALIZER("iva", true, 90000000, 975000),
  48. /* DSP OPP2 */
  49. OPP_INITIALIZER("iva", true, 180000000, 1075000),
  50. /* DSP OPP3 */
  51. OPP_INITIALIZER("iva", true, 360000000, 1200000),
  52. /* DSP OPP4 */
  53. OPP_INITIALIZER("iva", true, 400000000, 1270000),
  54. /* DSP OPP5 */
  55. OPP_INITIALIZER("iva", true, 430000000, 1350000),
  56. };
  57. static struct omap_opp_def __initdata omap36xx_opp_def_list[] = {
  58. /* MPU OPP1 - OPP50 */
  59. OPP_INITIALIZER("mpu", true, 300000000, 1012500),
  60. /* MPU OPP2 - OPP100 */
  61. OPP_INITIALIZER("mpu", true, 600000000, 1200000),
  62. /* MPU OPP3 - OPP-Turbo */
  63. OPP_INITIALIZER("mpu", false, 800000000, 1325000),
  64. /* MPU OPP4 - OPP-SB */
  65. OPP_INITIALIZER("mpu", false, 1000000000, 1375000),
  66. /* L3 OPP1 - OPP50 */
  67. OPP_INITIALIZER("l3_main", true, 100000000, 1000000),
  68. /* L3 OPP2 - OPP100, OPP-Turbo, OPP-SB */
  69. OPP_INITIALIZER("l3_main", true, 200000000, 1200000),
  70. /* DSP OPP1 - OPP50 */
  71. OPP_INITIALIZER("iva", true, 260000000, 1012500),
  72. /* DSP OPP2 - OPP100 */
  73. OPP_INITIALIZER("iva", true, 520000000, 1200000),
  74. /* DSP OPP3 - OPP-Turbo */
  75. OPP_INITIALIZER("iva", false, 660000000, 1325000),
  76. /* DSP OPP4 - OPP-SB */
  77. OPP_INITIALIZER("iva", false, 800000000, 1375000),
  78. };
  79. /**
  80. * omap3_opp_init() - initialize omap3 opp table
  81. */
  82. static int __init omap3_opp_init(void)
  83. {
  84. int r = -ENODEV;
  85. if (!cpu_is_omap34xx())
  86. return r;
  87. if (cpu_is_omap3630())
  88. r = omap_init_opp_table(omap36xx_opp_def_list,
  89. ARRAY_SIZE(omap36xx_opp_def_list));
  90. else
  91. r = omap_init_opp_table(omap34xx_opp_def_list,
  92. ARRAY_SIZE(omap34xx_opp_def_list));
  93. return r;
  94. }
  95. device_initcall(omap3_opp_init);