diff options
author | Xi Chen <xixi.chen@mediatek.corp-partner.google.com> | 2022-08-18 10:00:59 +0800 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-08-31 16:42:44 +0000 |
commit | 8665d885614178abc27c56d30a42c537524cd167 (patch) | |
tree | 766ed98bcdaf4d035e94ce903d6882fcce5cb4bb /src/soc/mediatek/common | |
parent | ec7b31353fe2bd4b7846235fd4ba56d0ceb08196 (diff) |
soc/mediatek: Move dpm_4ch.c to common
MT8195 and MT8188 share the same dpm_4ch.c, so we move it to common
folder.
TEST=build pass
BUG=b:236331724
Signed-off-by: Xi Chen <xixi.chen@mediatek.corp-partner.google.com>
Change-Id: I13406707d3b331ced57af62f4ba4f365e9ac4f84
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66966
Reviewed-by: Yidi Lin <yidilin@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/soc/mediatek/common')
-rw-r--r-- | src/soc/mediatek/common/dpm_4ch.c | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/src/soc/mediatek/common/dpm_4ch.c b/src/soc/mediatek/common/dpm_4ch.c new file mode 100644 index 0000000000..f13337d8b7 --- /dev/null +++ b/src/soc/mediatek/common/dpm_4ch.c @@ -0,0 +1,89 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <console/console.h> +#include <delay.h> +#include <device/mmio.h> +#include <soc/dpm.h> +#include <soc/dramc_soc.h> +#include <soc/spm.h> +#include <soc/symbols.h> + +static struct dpm_regs *const mtk_dpm2 = (void *)DPM_CFG_BASE2; + +static int wake_dpm_sram_up(void) +{ + int loop = 100; + + /* TODO: convert to new APIs (SET32_BITFIELDS/READ32_BITFIELD) */ + setbits32(&mtk_spm->dramc_mcu_sram_con, DRAMC_MCU_SRAM_SLEEP_B_LSB); + setbits32(&mtk_spm->dramc_mcu2_sram_con, DRAMC_MCU2_SRAM_SLEEP_B_LSB); + + while (loop > 0 && + ((read32(&mtk_spm->dramc_mcu_sram_con) & + DRAMC_MCU_SRAM_SLEEP_B_LSB) == 0 || + (read32(&mtk_spm->dramc_mcu2_sram_con) & + DRAMC_MCU2_SRAM_SLEEP_B_LSB) == 0)) { + mdelay(1); + --loop; + } + + if (loop == 0) { + printk(BIOS_ERR, "failed to wake DPM up.\n"); + return -1; + } + + setbits32(&mtk_spm->dramc_mcu_sram_con, DRAMC_MCU_SRAM_ISOINT_B_LSB); + setbits32(&mtk_spm->dramc_mcu2_sram_con, DRAMC_MCU2_SRAM_ISOINT_B_LSB); + + return 0; +} + +static void dpm_mtcoms_sleep_on(void) +{ + /* DPM MTCMOS sleep on */ + write32(&mtk_spm->dpm0_pwr_con, 0x0000204d); + write32(&mtk_spm->dpm1_pwr_con, 0x0000204d); + mdelay(1); + write32(&mtk_spm->dpm0_pwr_con, 0x0000224d); + write32(&mtk_spm->dpm1_pwr_con, 0x0000224d); + mdelay(1); + clrbits32(&mtk_dpm->sw_rstn, DPM_SW_RSTN_RESET); + clrbits32(&mtk_dpm2->sw_rstn, DPM_SW_RSTN_RESET); +} + +static struct mtk_mcu dpm_mcu_4ch[] = { + { + .firmware_name = CONFIG_DPM_DM_FIRMWARE, + .run_address = (void *)DPM_DM_SRAM_BASE2, + }, + { + .firmware_name = CONFIG_DPM_PM_FIRMWARE, + .run_address = (void *)DPM_PM_SRAM_BASE2, + .priv = mtk_dpm2, + .reset = dpm_reset, + }, +}; + +int dpm_4ch_init(void) +{ + dpm_mtcoms_sleep_on(); + if (wake_dpm_sram_up()) + return -1; + return 0; +} + +int dpm_4ch_para_setting(void) +{ + int i; + struct mtk_mcu *dpm; + + for (i = 0; i < ARRAY_SIZE(dpm_mcu_4ch); i++) { + dpm = &dpm_mcu_4ch[i]; + dpm->load_buffer = _dram_dma; + dpm->buffer_size = REGION_SIZE(dram_dma); + if (mtk_init_mcu(dpm)) + return -1; + } + + return 0; +} |