| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("MediaTek Software") are
- * protected under relevant copyright laws. The information contained herein
- * is confidential and proprietary to MediaTek Inc. and/or its licensors.
- * Without the prior written permission of MediaTek inc. and/or its licensors,
- * any reproduction, modification, use or disclosure of MediaTek Software,
- * and information contained herein, in whole or in part, shall be strictly prohibited.
- */
- /* MediaTek Inc. (C) 2015. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
- * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
- * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
- * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
- * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- */
- #include <platform/spm.h>
- int spm_mtcmos_ctrl_md1(int state)
- {
- int err = 0;
- /* TINFO="enable SPM register control" */
- spm_write(POWERON_CONFIG_EN, (SPM_PROJECT_CODE << 16) | (0x1 << 0));
- if (state == STA_POWER_DOWN) {
- /* TINFO="Start to turn off MD1" */
- /* TINFO="Set bus protect - step1 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_SET, MD1_PROT_STEP1_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1) & MD1_PROT_STEP1_0_ACK_MASK) != MD1_PROT_STEP1_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - step2 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_SET, MD1_PROT_STEP2_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1) & MD1_PROT_STEP2_0_ACK_MASK) != MD1_PROT_STEP2_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - step2 : 1" */
- spm_write(INFRA_TOPAXI_PROTECTEN_1_SET, MD1_PROT_STEP2_1_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1_1) & MD1_PROT_STEP2_1_ACK_MASK) != MD1_PROT_STEP2_1_ACK_MASK) {
- }
- #endif
- /* TINFO="Set PWR_ON = 0" */
- spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_ON);
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until MD1_PWR_STA_MASK = 0" */
- while (spm_read(PWR_STATUS) & MD1_PWR_STA_MASK) {
- /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
- }
- #endif
- /* TINFO="MD_EXT_BUCK_ISO_CON[0]=1"*/
- spm_write(MD_EXT_BUCK_ISO_CON, spm_read(MD_EXT_BUCK_ISO_CON) | (0x1 << 0));
- /* TINFO="MD_EXT_BUCK_ISO_CON[1]=1"*/
- spm_write(MD_EXT_BUCK_ISO_CON, spm_read(MD_EXT_BUCK_ISO_CON) | (0x1 << 1));
- /* TINFO="Set PWR_RST_B = 0" */
- spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) & ~PWR_RST_B);
- /* TINFO="Finish to turn off MD1" */
- } else { /* STA_POWER_ON */
- /* TINFO="Start to turn on MD1" */
- /* TINFO="MD_EXT_BUCK_ISO_CON[0]=0"*/
- spm_write(MD_EXT_BUCK_ISO_CON, spm_read(MD_EXT_BUCK_ISO_CON) & ~(0x1 << 0));
- /* TINFO="MD_EXT_BUCK_ISO_CON[1]=0"*/
- spm_write(MD_EXT_BUCK_ISO_CON, spm_read(MD_EXT_BUCK_ISO_CON) & ~(0x1 << 1));
- /* TINFO="Set PWR_RST_B = 1" */
- spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_RST_B);
- /* TINFO="Set PWR_ON = 1" */
- spm_write(MD1_PWR_CON, spm_read(MD1_PWR_CON) | PWR_ON);
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until MD1_PWR_STA_MASK = 1" */
- while ((spm_read(PWR_STATUS) & MD1_PWR_STA_MASK) != MD1_PWR_STA_MASK) {
- /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
- }
- #endif
- /* TINFO="Release bus protect - step2 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_CLR, MD1_PROT_STEP2_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - step2 : 1" */
- spm_write(INFRA_TOPAXI_PROTECTEN_1_CLR, MD1_PROT_STEP2_1_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - step1 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_CLR, MD1_PROT_STEP1_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Finish to turn on MD1" */
- }
- return err;
- }
- int spm_mtcmos_ctrl_dis(int state)
- {
- int err = 0;
- /* TINFO="enable SPM register control" */
- spm_write(POWERON_CONFIG_EN, (SPM_PROJECT_CODE << 16) | (0x1 << 0));
- if (state == STA_POWER_DOWN) {
- /* TINFO="Start to turn off DIS" */
- /* TINFO="Set bus protect - step1 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_MM_SET, DIS_PROT_STEP1_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_MM_STA1) & DIS_PROT_STEP1_0_ACK_MASK) != DIS_PROT_STEP1_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - step2 : 0" */
- spm_write(SMI_COMMON_SMI_CLAMP_SET, DIS_PROT_STEP2_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(SMI_COMMON_SMI_CLAMP) & DIS_PROT_STEP2_0_ACK_MASK) != DIS_PROT_STEP2_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - step3 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_1_SET, DIS_PROT_STEP3_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1_1) & DIS_PROT_STEP3_0_ACK_MASK) != DIS_PROT_STEP3_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - step4 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_SET, DIS_PROT_STEP4_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1) & DIS_PROT_STEP4_0_ACK_MASK) != DIS_PROT_STEP4_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set bus protect - way_en : 0" */
- spm_write(INFRA_TOPAXI_SI0_CTL_CLR, 0x1 << 6);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_SI0_STA) & (0x1 << 24)) != (0x1 << 24)) {
- }
- #endif
- /* TINFO="Set bus protect - way_en : 0" */
- //*INFRA_TOPAXI_SI2_CTL = *INFRA_TOPAXI_SI2_CTL & (~(0x1 << 5));
- spm_write(INFRA_TOPAXI_SI2_CTL,
- spm_read(INFRA_TOPAXI_SI2_CTL) & (~(0x1 << 5)));
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_SI2_STA) & (0x1 << 14)) != (0x1 << 14)) {
- }
- #endif
- /* TINFO="Set bus protect - step5 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_SET, DIS_PROT_STEP5_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_PROTECTEN_STA1) & DIS_PROT_STEP5_0_ACK_MASK) != DIS_PROT_STEP5_0_ACK_MASK) {
- }
- #endif
- /* TINFO="Set SRAM_PDN = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | DIS_SRAM_PDN);
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until DIS_SRAM_PDN_ACK = 1" */
- while ((spm_read(DIS_PWR_CON) & DIS_SRAM_PDN_ACK) != DIS_SRAM_PDN_ACK) {
- /* Need hf_fmm_ck for SRAM PDN delay IP. */
- }
- #endif
- /* TINFO="Set PWR_ISO = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | PWR_ISO);
- /* TINFO="Set PWR_CLK_DIS = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | PWR_CLK_DIS);
- /* TINFO="Set PWR_RST_B = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~PWR_RST_B);
- /* TINFO="Set PWR_ON = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~PWR_ON);
- /* TINFO="Set PWR_ON_2ND = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~PWR_ON_2ND);
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until PWR_STATUS = 0 and PWR_STATUS_2ND = 0" */
- while ((spm_read(PWR_STATUS) & DIS_PWR_STA_MASK)
- || (spm_read(PWR_STATUS_2ND) & DIS_PWR_STA_MASK)) {
- /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
- }
- #endif
- /* TINFO="Finish to turn off DIS" */
- } else { /* STA_POWER_ON */
- /* TINFO="Start to turn on DIS" */
- /* TINFO="Set PWR_ON = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | PWR_ON);
- /* TINFO="Set PWR_ON_2ND = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | PWR_ON_2ND);
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until PWR_STATUS = 1 and PWR_STATUS_2ND = 1" */
- while (((spm_read(PWR_STATUS) & DIS_PWR_STA_MASK) != DIS_PWR_STA_MASK)
- || ((spm_read(PWR_STATUS_2ND) & DIS_PWR_STA_MASK) != DIS_PWR_STA_MASK)) {
- /* No logic between pwr_on and pwr_ack. Print SRAM / MTCMOS control and PWR_ACK for debug. */
- }
- #endif
- /* TINFO="Set PWR_CLK_DIS = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~PWR_CLK_DIS);
- /* TINFO="Set PWR_ISO = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~PWR_ISO);
- /* TINFO="Set PWR_RST_B = 1" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) | PWR_RST_B);
- /* TINFO="Set SRAM_PDN = 0" */
- spm_write(DIS_PWR_CON, spm_read(DIS_PWR_CON) & ~(0x1 << 8));
- #ifndef IGNORE_MTCMOS_CHECK
- /* TINFO="Wait until DIS_SRAM_PDN_ACK_BIT0 = 0" */
- while (spm_read(DIS_PWR_CON) & DIS_SRAM_PDN_ACK_BIT0) {
- /* Need hf_fmm_ck for SRAM PDN delay IP. */
- }
- #endif
- /* TINFO="Release bus protect - step5 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_CLR, DIS_PROT_STEP5_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - way_en : 0" */
- //*INFRA_TOPAXI_SI2_CTL = *INFRA_TOPAXI_SI2_CTL | (0x1 << 5);
- spm_write(INFRA_TOPAXI_SI2_CTL,
- spm_read(INFRA_TOPAXI_SI2_CTL) | (0x1 << 5));
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_SI2_STA) & (0x1 << 14)) != (0x1 << 14)) {
- }
- #endif
- /* TINFO="Release bus protect - way_en : 0" */
- spm_write(INFRA_TOPAXI_SI0_CTL_SET, 0x1 << 6);
- #ifndef IGNORE_MTCMOS_CHECK
- while ((spm_read(INFRA_TOPAXI_SI0_STA) & (0x1 << 24)) != (0x1 << 24)) {
- }
- #endif
- /* TINFO="Release bus protect - step4 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_CLR, DIS_PROT_STEP4_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - step3 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_1_CLR, DIS_PROT_STEP3_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - step2 : 0" */
- spm_write(SMI_COMMON_SMI_CLAMP_CLR, DIS_PROT_STEP2_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Release bus protect - step1 : 0" */
- spm_write(INFRA_TOPAXI_PROTECTEN_MM_CLR, DIS_PROT_STEP1_0_MASK);
- #ifndef IGNORE_MTCMOS_CHECK
- /* Note that this protect ack check after releasing protect has been ignored */
- #endif
- /* TINFO="Finish to turn on DIS" */
- }
- return err;
- }
|