aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8183/include/soc/addressmap.h
blob: cee9bd8160a4a369287e641deeb2bc45a30b5c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2018 MediaTek Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __SOC_MEDIATEK_MT8183_INCLUDE_SOC_ADDRESSMAP_H__
#define __SOC_MEDIATEK_MT8183_INCLUDE_SOC_ADDRESSMAP_H__

enum {
	MCUCFG_BASE	= 0x0C530000,
	IO_PHYS		= 0x10000000,
};

enum {
	CKSYS_BASE		= IO_PHYS,
	INFRACFG_AO_BASE	= IO_PHYS + 0x00001000,
	GPIO_BASE		= IO_PHYS + 0x00005000,
	SPM_BASE		= IO_PHYS + 0x00006000,
	RGU_BASE                = IO_PHYS + 0x00007000,
	GPT_BASE		= IO_PHYS + 0x00008000,
	APMIXED_BASE		= IO_PHYS + 0x0000C000,
	EMI_BASE		= IO_PHYS + 0x00219000,
	EMI_MPU_BASE		= IO_PHYS + 0x00226000,
	DRAMC_CH_BASE		= IO_PHYS + 0x00228000,
	AUXADC_BASE		= IO_PHYS + 0x01001000,
	UART0_BASE		= IO_PHYS + 0x01002000,
	SPI0_BASE               = IO_PHYS + 0x0100A000,
	SPI1_BASE		= IO_PHYS + 0x01010000,
	SPI2_BASE		= IO_PHYS + 0x01012000,
	SPI3_BASE		= IO_PHYS + 0x01013000,
	SPI4_BASE		= IO_PHYS + 0x01014000,
	SPI5_BASE		= IO_PHYS + 0x01015000,
	SSUSB_MAC_BASE		= IO_PHYS + 0x01200000,
	SSUSB_IPPC_BASE		= IO_PHYS + 0x01203e00,
	IOCFG_RT_BASE		= IO_PHYS + 0x01C50000,
	IOCFG_RM_BASE		= IO_PHYS + 0x01D20000,
	IOCFG_RB_BASE		= IO_PHYS + 0x01D30000,
	IOCFG_LB_BASE		= IO_PHYS + 0x01E70000,
	IOCFG_LM_BASE		= IO_PHYS + 0x01E80000,
	IOCFG_BL_BASE		= IO_PHYS + 0x01E90000,
	IOCFG_LT_BASE		= IO_PHYS + 0x01F20000,
	IOCFG_TL_BASE		= IO_PHYS + 0x01F30000,
	SSUSB_SIF_BASE		= IO_PHYS + 0x01F40300,
	SMI_BASE		= IO_PHYS + 0x04019000,
};

#endif