diff options
author | Yidi Lin <yidilin@chromium.org> | 2022-12-20 15:30:38 +0800 |
---|---|---|
committer | Yu-Ping Wu <yupingso@google.com> | 2022-12-22 04:52:00 +0000 |
commit | 78b29f456717eaac969e35f07ccbcd3c881c5ee0 (patch) | |
tree | 6e3a50bdef91cc99dd85c36e09b8302ffe448413 /src/soc/mediatek/mt8186 | |
parent | d7326282f93c92f0bf575b9aa2e8e8411b9399ef (diff) |
soc/mediatek: Move dapc_init to common
dapc_init flow is the same on MT8186, MT8188 and MT8195. So move this
function to common/devapc.c
TEST=emerge-corsola coreboot; emerge-cherry coreboot;
emerge-geralt coreboot
TEST=devapc log is shown as expected and the system boots to kernel
Change-Id: I979c3a3721a82d40c9e2db7fbe62e14a9bbd53d8
Signed-off-by: Yidi Lin <yidilin@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71137
Reviewed-by: Rex-BC Chen <rex-bc.chen@mediatek.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/soc/mediatek/mt8186')
-rw-r--r-- | src/soc/mediatek/mt8186/devapc.c | 29 | ||||
-rw-r--r-- | src/soc/mediatek/mt8186/include/soc/devapc.h | 3 |
2 files changed, 3 insertions, 29 deletions
diff --git a/src/soc/mediatek/mt8186/devapc.c b/src/soc/mediatek/mt8186/devapc.c index 80af49af63..d831dcdf27 100644 --- a/src/soc/mediatek/mt8186/devapc.c +++ b/src/soc/mediatek/mt8186/devapc.c @@ -4,7 +4,6 @@ #include <console/console.h> #include <soc/devapc.h> -#include <soc/devapc_common.h> static const struct apc_infra_peri_dom_8 infra_ao_sys0_devices[] = { /* 0 */ @@ -1421,34 +1420,10 @@ static void adsp_init(uintptr_t base) write32(getreg(base, AUD_SEC_0), 0); } -struct devapc_init_ops { - uintptr_t base; - void (*init)(uintptr_t base); - void (*dump)(uintptr_t base); -} devapc_init[] = { +const struct devapc_init_ops devapc_init[] = { { DEVAPC_AO_INFRA_PERI_BASE, infra_init, dump_infra_ao_apc }, { DEVAPC_AO_MM_BASE, mm_init, dump_mm_ao_apc }, { DEVAPC_AO_AUD_BASE, adsp_init, dump_adsp_ao_apc }, }; -void dapc_init(void) -{ - unsigned int i; - uintptr_t devapc_ao_base; - - for (i = 0; i < ARRAY_SIZE(devapc_init); i++) { - devapc_ao_base = devapc_init[i].base; - - /* Init dapc */ - write32(getreg(devapc_ao_base, AO_APC_CON), 0x0); - write32(getreg(devapc_ao_base, AO_APC_CON), 0x1); - - /* Initialization */ - if (devapc_init[i].init) - devapc_init[i].init(devapc_ao_base); - - /* Dump Setting */ - if (devapc_init[i].dump) - devapc_init[i].dump(devapc_ao_base); - } -} +const size_t devapc_init_cnt = ARRAY_SIZE(devapc_init); diff --git a/src/soc/mediatek/mt8186/include/soc/devapc.h b/src/soc/mediatek/mt8186/include/soc/devapc.h index d7bd8bf5da..eab8cb2cbf 100644 --- a/src/soc/mediatek/mt8186/include/soc/devapc.h +++ b/src/soc/mediatek/mt8186/include/soc/devapc.h @@ -7,8 +7,7 @@ #include <device/mmio.h> #include <soc/addressmap.h> - -void dapc_init(void); +#include <soc/devapc_common.h> enum devapc_ao_offset { SYS0_D0_APC_0 = 0x0, |