summaryrefslogtreecommitdiffstats
path: root/src/soc
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2022-08-12 13:45:01 +0800
committerMartin L Roth <gaumless@gmail.com>2022-08-13 17:07:46 +0000
commit4dff4fe14e62137e909e10b9f45177442367e781 (patch)
tree7465b3e2c685699b0078681f652a8d4be544d19c /src/soc
parent1dcc669aca5c098fc8e407302f8d99c08ea7019f (diff)
downloadcoreboot-4dff4fe14e62137e909e10b9f45177442367e781.tar.gz
coreboot-4dff4fe14e62137e909e10b9f45177442367e781.tar.bz2
coreboot-4dff4fe14e62137e909e10b9f45177442367e781.zip
soc/mediatek/mt8188: Fix the order of register address in addressmap.h
TEST=build pass BUG=b:236331724 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: Ie9d7b361dda8c5850bc0682c255bc20f9e26675c Reviewed-on: https://review.coreboot.org/c/coreboot/+/66668 Reviewed-by: Yidi Lin <yidilin@chromium.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/mediatek/mt8188/include/soc/addressmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8188/include/soc/addressmap.h b/src/soc/mediatek/mt8188/include/soc/addressmap.h
index e117f749bb15..fa773b432721 100644
--- a/src/soc/mediatek/mt8188/include/soc/addressmap.h
+++ b/src/soc/mediatek/mt8188/include/soc/addressmap.h
@@ -42,11 +42,11 @@ enum {
I2C4_DMA_BASE = IO_PHYS + 0x00220380,
I2C5_DMA_BASE = IO_PHYS + 0x00220480,
I2C6_DMA_BASE = IO_PHYS + 0x00220600,
- SCP_ADSP_CFG_BASE = IO_PHYS + 0x00720000,
DRAMC_CHA_AO_BASE = IO_PHYS + 0x00230000,
INFRA_TRACKER_BASE = IO_PHYS + 0x00314000,
SSPM_SRAM_BASE = IO_PHYS + 0x00400000,
SSPM_CFG_BASE = IO_PHYS + 0x00440000,
+ SCP_ADSP_CFG_BASE = IO_PHYS + 0x00720000,
DPM_PM_SRAM_BASE = IO_PHYS + 0x00900000,
DPM_DM_SRAM_BASE = IO_PHYS + 0x00920000,
DPM_CFG_BASE = IO_PHYS + 0x00940000,