palmas.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * (C) Copyright 2012-2013
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <config.h>
  24. #include <palmas.h>
  25. void palmas_init_settings(void)
  26. {
  27. #ifdef CONFIG_PALMAS_SMPS7_FPWM
  28. int err;
  29. /*
  30. * Set SMPS7 (1.8 V I/O supply on platforms with TWL6035/37) to
  31. * forced PWM mode. This reduces noise (but affects efficiency).
  32. */
  33. u8 val = SMPS_MODE_SLP_FPWM | SMPS_MODE_ACT_FPWM;
  34. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS7_CTRL, val);
  35. if (err)
  36. printf("palmas: could not force PWM for SMPS7: err = %d\n",
  37. err);
  38. #endif
  39. }
  40. int palmas_mmc1_poweron_ldo(void)
  41. {
  42. u8 val = 0;
  43. #if defined(CONFIG_DRA7XX)
  44. /*
  45. * Currently valid for the dra7xx_evm board:
  46. * Set TPS659038 LDO1 to 3.0 V
  47. */
  48. val = LDO_VOLT_3V0;
  49. if (palmas_i2c_write_u8(TPS65903X_CHIP_P1, LDO1_VOLTAGE, val)) {
  50. printf("tps65903x: could not set LDO1 voltage.\n");
  51. return 1;
  52. }
  53. /* TURN ON LDO1 */
  54. val = RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
  55. if (palmas_i2c_write_u8(TPS65903X_CHIP_P1, LDO1_CTRL, val)) {
  56. printf("tps65903x: could not turn on LDO1.\n");
  57. return 1;
  58. }
  59. return 0;
  60. #else
  61. /*
  62. * We assume that this is a OMAP543X + TWL603X board:
  63. * Set TWL6035/37 LDO9 to 3.0 V
  64. */
  65. val = LDO_VOLT_3V0;
  66. return twl603x_mmc1_set_ldo9(val);
  67. #endif
  68. }
  69. /*
  70. * On some OMAP5 + TWL603X hardware the SD card socket and LDO9_IN are
  71. * powered by an external 3.3 V regulator, while the output of LDO9
  72. * supplies VDDS_SDCARD for the OMAP5 interface only. This implies that
  73. * LDO9 could be set to 'bypass' mode when required (e.g. for 3.3 V cards).
  74. */
  75. int twl603x_mmc1_set_ldo9(u8 vsel)
  76. {
  77. u8 cval = 0, vval = 0; /* Off by default */
  78. int err;
  79. if (vsel) {
  80. /* Turn on */
  81. if (vsel > LDO_VOLT_3V3) {
  82. /* Put LDO9 in bypass */
  83. cval = LDO9_BYP_EN | RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
  84. vval = LDO_VOLT_3V3;
  85. } else {
  86. cval = RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
  87. vval = vsel & 0x3f;
  88. }
  89. }
  90. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, LDO9_VOLTAGE, vval);
  91. if (err) {
  92. printf("twl603x: could not set LDO9 %s: err = %d\n",
  93. vsel > LDO_VOLT_3V3 ? "bypass" : "voltage", err);
  94. return err;
  95. }
  96. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, LDO9_CTRL, cval);
  97. if (err)
  98. printf("twl603x: could not turn %s LDO9: err = %d\n",
  99. cval ? "on" : "off", err);
  100. return err;
  101. }
  102. #ifdef CONFIG_PALMAS_AUDPWR
  103. /*
  104. * Turn audio codec power and 32 kHz clock on/off. Use for
  105. * testing OMAP543X + TWL603X + TWL604X boards only.
  106. */
  107. int twl603x_audio_power(u8 on)
  108. {
  109. u8 cval = 0, vval = 0, c32k = 0;
  110. int err;
  111. if (on) {
  112. vval = SMPS_VOLT_2V1;
  113. cval = SMPS_MODE_SLP_AUTO | SMPS_MODE_ACT_AUTO;
  114. c32k = RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
  115. }
  116. /* Set SMPS9 to 2.1 V (for TWL604x), or to 0 (off) */
  117. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS9_VOLTAGE, vval);
  118. if (err) {
  119. printf("twl603x: could not set SMPS9 voltage: err = %d\n",
  120. err);
  121. return err;
  122. }
  123. /* Turn on or off SMPS9 */
  124. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS9_CTRL, cval);
  125. if (err) {
  126. printf("twl603x: could not turn SMPS9 %s: err = %d\n",
  127. cval ? "on" : "off", err);
  128. return err;
  129. }
  130. /* Output 32 kHz clock on or off */
  131. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, CLK32KGAUDIO_CTRL, c32k);
  132. if (err)
  133. printf("twl603x: could not turn CLK32KGAUDIO %s: err = %d\n",
  134. c32k ? "on" : "off", err);
  135. return err;
  136. }
  137. #endif
  138. /*
  139. * Enable/disable back-up battery (or super cap) charging on TWL6035/37.
  140. * Please use defined BB_xxx values.
  141. */
  142. int twl603x_enable_bb_charge(u8 bb_fields)
  143. {
  144. u8 val = bb_fields & 0x0f;
  145. int err;
  146. val |= (VRTC_EN_SLP | VRTC_EN_OFF | VRTC_PWEN);
  147. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, BB_VRTC_CTRL, val);
  148. if (err)
  149. printf("twl603x: could not set BB_VRTC_CTRL to 0x%02x: err = %d\n",
  150. val, err);
  151. return err;
  152. }