palmas.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * (C) Copyright 2012-2013
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <config.h>
  8. #include <palmas.h>
  9. void palmas_init_settings(void)
  10. {
  11. #ifdef CONFIG_PALMAS_SMPS7_FPWM
  12. int err;
  13. /*
  14. * Set SMPS7 (1.8 V I/O supply on platforms with TWL6035/37) to
  15. * forced PWM mode. This reduces noise (but affects efficiency).
  16. */
  17. u8 val = SMPS_MODE_SLP_FPWM | SMPS_MODE_ACT_FPWM;
  18. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS7_CTRL, val);
  19. if (err)
  20. printf("palmas: could not force PWM for SMPS7: err = %d\n",
  21. err);
  22. #endif
  23. }
  24. #if defined(CONFIG_OMAP54XX)
  25. int lp873x_mmc1_poweron_ldo(uint voltage)
  26. {
  27. if (palmas_i2c_write_u8(LP873X_LDO1_ADDR, LP873X_LDO1_VOLTAGE,
  28. voltage)) {
  29. printf("lp873x: could not set LDO1 voltage.\n");
  30. return 1;
  31. }
  32. /* TURN ON LDO1 */
  33. if (palmas_i2c_write_u8(LP873X_LDO1_ADDR, LP873X_LDO1_CTRL,
  34. LP873X_LDO_CTRL_EN | LP873X_LDO_CTRL_RDIS_EN)) {
  35. printf("lp873x: could not turn on LDO1.\n");
  36. return 1;
  37. }
  38. return 0;
  39. }
  40. #endif
  41. int palmas_mmc1_poweron_ldo(uint ldo_volt, uint ldo_ctrl, uint voltage)
  42. {
  43. u8 val = 0;
  44. #if defined(CONFIG_DRA7XX)
  45. /*
  46. * Currently valid for the dra7xx_evm board:
  47. * Set TPS659038 LDO1 to 3.0 V or 1.8V
  48. */
  49. if (palmas_i2c_write_u8(TPS65903X_CHIP_P1, ldo_volt, voltage)) {
  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, ldo_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. #ifdef CONFIG_PALMAS_USB_SS_PWR
  139. /**
  140. * @brief palmas_enable_ss_ldo - Configure EVM board specific configurations
  141. * for the USB Super speed SMPS10 regulator.
  142. *
  143. * @return 0
  144. */
  145. int palmas_enable_ss_ldo(void)
  146. {
  147. /* Enable smps10 regulator */
  148. return palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS10_CTRL,
  149. SMPS10_MODE_ACTIVE_D);
  150. }
  151. #endif
  152. /*
  153. * Enable/disable back-up battery (or super cap) charging on TWL6035/37.
  154. * Please use defined BB_xxx values.
  155. */
  156. int twl603x_enable_bb_charge(u8 bb_fields)
  157. {
  158. u8 val = bb_fields & 0x0f;
  159. int err;
  160. val |= (VRTC_EN_SLP | VRTC_EN_OFF | VRTC_PWEN);
  161. err = palmas_i2c_write_u8(TWL603X_CHIP_P1, BB_VRTC_CTRL, val);
  162. if (err)
  163. printf("twl603x: could not set BB_VRTC_CTRL to 0x%02x: err = %d\n",
  164. val, err);
  165. return err;
  166. }