blob: 5d3c2c83945dffd6f6ec73688b29296c0f6f1051 [file] [log] [blame]
Jacky Bai8e2109d2023-05-25 09:35:44 +08001/*
2 * Copyright 2022-2023 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#ifndef PLATFORM_DEF_H
7#define PLATFORM_DEF_H
8
9#include <lib/utils_def.h>
10#include <lib/xlat_tables/xlat_tables_v2.h>
11
12#define PLATFORM_LINKER_FORMAT "elf64-littleaarch64"
13#define PLATFORM_LINKER_ARCH aarch64
14
15#define PLATFORM_STACK_SIZE 0xB00
16#define CACHE_WRITEBACK_GRANULE 64
17
18#define PLAT_PRIMARY_CPU U(0x0)
19#define PLATFORM_MAX_CPU_PER_CLUSTER U(2)
20#define PLATFORM_CLUSTER_COUNT U(1)
21#define PLATFORM_CLUSTER0_CORE_COUNT U(2)
22#define PLATFORM_CORE_COUNT U(2)
23
24#define IMX_PWR_LVL0 MPIDR_AFFLVL0
25
26#define PWR_DOMAIN_AT_MAX_LVL U(1)
27#define PLAT_MAX_PWR_LVL U(2)
28#define PLAT_MAX_OFF_STATE U(4)
29#define PLAT_MAX_RET_STATE U(2)
30
31#define BL31_BASE U(0x204E0000)
32#define BL31_LIMIT U(0x20520000)
33
34/* non-secure uboot base */
35/* TODO */
36#define PLAT_NS_IMAGE_OFFSET U(0x80200000)
37
38/* GICv4 base address */
39#define PLAT_GICD_BASE U(0x48000000)
40#define PLAT_GICR_BASE U(0x48040000)
41
42#define PLAT_VIRT_ADDR_SPACE_SIZE (ULL(1) << 32)
43#define PLAT_PHY_ADDR_SPACE_SIZE (ULL(1) << 32)
44
45#define MAX_XLAT_TABLES 8
46#define MAX_MMAP_REGIONS 16
47
48#define IMX_LPUART_BASE U(0x44380000)
49#define IMX_BOOT_UART_CLK_IN_HZ U(24000000) /* Select 24MHz oscillator */
50#define IMX_CONSOLE_BAUDRATE 115200
51
52#define AIPSx_SIZE U(0x800000)
53#define AIPS1_BASE U(0x44000000)
54#define AIPS2_BASE U(0x42000000)
55#define AIPS3_BASE U(0x42800000)
56#define AIPS4_BASE U(0x49000000)
57#define GPIO1_BASE U(0x47400000)
58#define GPIO2_BASE U(0x43810000)
59#define GPIO3_BASE U(0x43820000)
60#define GPIO4_BASE U(0x43830000)
61
62#define TRDC_A_BASE U(0x44270000)
63#define TRDC_W_BASE U(0x42460000)
64#define TRDC_M_BASE U(0x42810000)
65#define TRDC_N_BASE U(0x49010000)
66#define TRDC_x_SISE U(0x20000)
67
68#define SRC_BASE U(0x44460000)
69#define GPC_BASE U(0x44470000)
70#define BLK_CTRL_S_BASE U(0x444F0000)
71#define S400_MU_BASE U(0x47520000)
72
73/* system memory map define */
74#define AIPS2_MAP MAP_REGION_FLAT(AIPS2_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW | MT_NS)
75#define AIPS1_MAP MAP_REGION_FLAT(AIPS1_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW)
76#define AIPS4_MAP MAP_REGION_FLAT(AIPS4_BASE, AIPSx_SIZE, MT_DEVICE | MT_RW | MT_NS)
77#define GIC_MAP MAP_REGION_FLAT(PLAT_GICD_BASE, 0x200000, MT_DEVICE | MT_RW)
78#define TRDC_A_MAP MAP_REGION_FLAT(TRDC_A_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
79#define TRDC_W_MAP MAP_REGION_FLAT(TRDC_W_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
80#define TRDC_M_MAP MAP_REGION_FLAT(TRDC_M_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
81#define TRDC_N_MAP MAP_REGION_FLAT(TRDC_N_BASE, TRDC_x_SISE, MT_DEVICE | MT_RW)
82
83#define COUNTER_FREQUENCY 24000000
84
85#endif /* platform_def.h */