spm_md_mtcmos.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /* Copyright Statement:
  2. *
  3. * This software/firmware and related documentation ("MediaTek Software") are
  4. * protected under relevant copyright laws. The information contained herein
  5. * is confidential and proprietary to MediaTek Inc. and/or its licensors.
  6. * Without the prior written permission of MediaTek inc. and/or its licensors,
  7. * any reproduction, modification, use or disclosure of MediaTek Software,
  8. * and information contained herein, in whole or in part, shall be strictly prohibited.
  9. */
  10. /* MediaTek Inc. (C) 2015. All rights reserved.
  11. *
  12. * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  13. * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  14. * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
  15. * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  16. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  18. * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  19. * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  20. * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
  21. * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
  22. * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
  23. * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
  24. * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
  25. * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
  26. * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  27. * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  28. * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
  29. * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
  30. */
  31. #include <platform/spm.h>
  32. int spm_mtcmos_ctrl_md1(int state)
  33. {
  34. int err = 0;
  35. /* TINFO="enable SPM register control" */
  36. spm_write(POWERON_CONFIG_EN, (SPM_PROJECT_CODE << 16) | (0x1 << 0));
  37. if (state == STA_POWER_DOWN) {
  38. /* TINFO="Start to turn off MD1" */
  39. /* TINFO="Set bus protect" */
  40. spm_write(INFRA_TOPAXI_PROTECTEN_1, spm_read(INFRA_TOPAXI_PROTECTEN_1) | MD1_PROT_BIT_MASK);
  41. #ifndef IGNORE_MTCMOS_CHECK
  42. while ((spm_read(INFRA_TOPAXI_PROTECTSTA1_1) & MD1_PROT_BIT_ACK_MASK) != MD1_PROT_BIT_ACK_MASK) {
  43. }
  44. #endif
  45. /* TINFO="Set SRAM_PDN = 1" */
  46. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | MD1_SRAM_PDN);
  47. /* TINFO="Set PWR_ISO = 1" */
  48. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_ISO);
  49. /* TINFO="MD1_OUTPUT_PISO_S_EN_IZ[0]=1"*/
  50. spm_write(MD1_OUTPUT_PISO_S_EN_IZ, spm_read(MD1_OUTPUT_PISO_S_EN_IZ) | (0x1 << 0));
  51. /* TINFO="SPM_SW_RSV_7[0]=1"*/
  52. spm_write(SPM_SW_RSV_7, spm_read(SPM_SW_RSV_7) | (0x1 << 0));
  53. /* TINFO="Set PWR_CLK_DIS = 1" */
  54. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_CLK_DIS);
  55. /* TINFO="CLK_MODE[9]=1"*/
  56. spm_write(CLK_MODE, spm_read(CLK_MODE) | (0x1 << 9));
  57. /* TINFO="Set PWR_RST_B = 0" */
  58. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_RST_B);
  59. /* TINFO="Set PWR_ON = 0" */
  60. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_ON);
  61. /* TINFO="Set PWR_ON_2ND = 0" */
  62. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_ON_2ND);
  63. #ifndef IGNORE_MTCMOS_CHECK
  64. /* TINFO="Wait until PWR_STATUS = 0 and PWR_STATUS_2ND = 0" */
  65. while ((spm_read(PWR_STATUS) & MD1_PWR_STA_MASK)
  66. || (spm_read(PWR_STATUS_2ND) & MD1_PWR_STA_MASK)) {
  67. /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
  68. }
  69. #endif
  70. /* TINFO="MD_EXT_BUCK_ISO[0]=1"*/
  71. spm_write(MD_EXT_BUCK_ISO, spm_read(MD_EXT_BUCK_ISO) | (0x1 << 0));
  72. /* TINFO="Finish to turn off MD1" */
  73. } else { /* STA_POWER_ON */
  74. /* TINFO="Start to turn on MD1" */
  75. /* TINFO="MD_EXT_BUCK_ISO[0]=0"*/
  76. spm_write(MD_EXT_BUCK_ISO, spm_read(MD_EXT_BUCK_ISO) & ~(0x1 << 0));
  77. /* TINFO="Set PWR_ON = 1" */
  78. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_ON);
  79. /* TINFO="Set PWR_ON_2ND = 1" */
  80. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_ON_2ND);
  81. #ifndef IGNORE_MTCMOS_CHECK
  82. /* TINFO="Wait until PWR_STATUS = 1 and PWR_STATUS_2ND = 1" */
  83. while (((spm_read(PWR_STATUS) & MD1_PWR_STA_MASK) != MD1_PWR_STA_MASK)
  84. || ((spm_read(PWR_STATUS_2ND) & MD1_PWR_STA_MASK) != MD1_PWR_STA_MASK)) {
  85. /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
  86. }
  87. #endif
  88. /* TINFO="CLK_MODE[9]=0"*/
  89. spm_write(CLK_MODE, spm_read(CLK_MODE) & ~(0x1 << 9));
  90. /* TINFO="Set PWR_CLK_DIS = 0" */
  91. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_CLK_DIS);
  92. /* TINFO="SPM_SW_RSV_7[0]=0"*/
  93. spm_write(SPM_SW_RSV_7, spm_read(SPM_SW_RSV_7) & ~(0x1 << 0));
  94. /* TINFO="MD1_OUTPUT_PISO_S_EN_IZ[0]=0"*/
  95. spm_write(MD1_OUTPUT_PISO_S_EN_IZ, spm_read(MD1_OUTPUT_PISO_S_EN_IZ) & ~(0x1 << 0));
  96. /* TINFO="Set PWR_ISO = 0" */
  97. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_ISO);
  98. /* TINFO="Set SRAM_PDN = 0" */
  99. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~(0x1 << 8));
  100. /* TINFO="Release bus protect" */
  101. spm_write(INFRA_TOPAXI_PROTECTEN_1, spm_read(INFRA_TOPAXI_PROTECTEN_1) & ~MD1_PROT_BIT_MASK);
  102. #ifndef IGNORE_MTCMOS_CHECK
  103. while (spm_read(INFRA_TOPAXI_PROTECTSTA1_1) & MD1_PROT_BIT_ACK_MASK) {
  104. }
  105. #endif
  106. /* TINFO="Set PWR_RST_B = 1" */
  107. spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_RST_B);
  108. /* TINFO="Finish to turn on MD1" */
  109. }
  110. return err;
  111. }
  112. int spm_mtcmos_ctrl_c2k(int state)
  113. {
  114. int err = 0;
  115. /* TINFO="enable SPM register control" */
  116. spm_write(POWERON_CONFIG_EN, (SPM_PROJECT_CODE << 16) | (0x1 << 0));
  117. if (state == STA_POWER_DOWN) {
  118. /* TINFO="Start to turn off C2K" */
  119. /* TINFO="Set bus protect" */
  120. spm_write(INFRA_TOPAXI_PROTECTEN_1, spm_read(INFRA_TOPAXI_PROTECTEN_1) | C2K_PROT_BIT_MASK);
  121. #ifndef IGNORE_MTCMOS_CHECK
  122. while ((spm_read(INFRA_TOPAXI_PROTECTSTA1_1) & C2K_PROT_BIT_ACK_MASK) != C2K_PROT_BIT_ACK_MASK) {
  123. }
  124. #endif
  125. /* TINFO="Set PWR_ISO = 1" */
  126. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) | PWR_ISO);
  127. /* TINFO="Set PWR_CLK_DIS = 1" */
  128. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) | PWR_CLK_DIS);
  129. /* TINFO="Set PWR_RST_B = 0" */
  130. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) & ~PWR_RST_B);
  131. /* TINFO="Set PWR_ON = 0" */
  132. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) & ~PWR_ON);
  133. /* TINFO="Set PWR_ON_2ND = 0" */
  134. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) & ~PWR_ON_2ND);
  135. #ifndef IGNORE_MTCMOS_CHECK
  136. /* TINFO="Wait until PWR_STATUS = 0 and PWR_STATUS_2ND = 0" */
  137. while ((spm_read(PWR_STATUS) & C2K_PWR_STA_MASK)
  138. || (spm_read(PWR_STATUS_2ND) & C2K_PWR_STA_MASK)) {
  139. /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
  140. }
  141. #endif
  142. /* TINFO="Finish to turn off C2K" */
  143. } else { /* STA_POWER_ON */
  144. /* TINFO="Start to turn on C2K" */
  145. /* TINFO="Set PWR_ON = 1" */
  146. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) | PWR_ON);
  147. /* TINFO="Set PWR_ON_2ND = 1" */
  148. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) | PWR_ON_2ND);
  149. #ifndef IGNORE_MTCMOS_CHECK
  150. /* TINFO="Wait until PWR_STATUS = 1 and PWR_STATUS_2ND = 1" */
  151. while (((spm_read(PWR_STATUS) & C2K_PWR_STA_MASK) != C2K_PWR_STA_MASK)
  152. || ((spm_read(PWR_STATUS_2ND) & C2K_PWR_STA_MASK) != C2K_PWR_STA_MASK)) {
  153. /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
  154. }
  155. #endif
  156. /* TINFO="Set PWR_CLK_DIS = 0" */
  157. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) & ~PWR_CLK_DIS);
  158. /* TINFO="Set PWR_ISO = 0" */
  159. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) & ~PWR_ISO);
  160. /* TINFO="Set PWR_RST_B = 1" */
  161. spm_write(C2K_PWR_CON, spm_read(C2K_PWR_CON) | PWR_RST_B);
  162. #ifndef IGNORE_MTCMOS_CHECK
  163. #endif
  164. /* TINFO="Release bus protect" */
  165. spm_write(INFRA_TOPAXI_PROTECTEN_1, spm_read(INFRA_TOPAXI_PROTECTEN_1) & ~C2K_PROT_BIT_MASK);
  166. #ifndef IGNORE_MTCMOS_CHECK
  167. while (spm_read(INFRA_TOPAXI_PROTECTSTA1_1) & C2K_PROT_BIT_ACK_MASK) {
  168. }
  169. #endif
  170. /* TINFO="Finish to turn on C2K" */
  171. }
  172. return err;
  173. }