Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2021-2024 NXP |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef PLATFORM_DEF_H |
| 8 | #define PLATFORM_DEF_H |
| 9 | |
| 10 | #include <lib/utils_def.h> |
| 11 | |
| 12 | #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" |
| 13 | #define PLATFORM_LINKER_ARCH aarch64 |
| 14 | |
| 15 | #define PLATFORM_STACK_SIZE 0x400 |
| 16 | #define CACHE_WRITEBACK_GRANULE 64 |
| 17 | |
| 18 | #define PLAT_PRIMARY_CPU 0x0 |
| 19 | #define PLATFORM_MAX_CPU_PER_CLUSTER 2 |
| 20 | #define PLATFORM_CLUSTER_COUNT 1 |
| 21 | #define PLATFORM_CORE_COUNT 2 |
| 22 | #define PLATFORM_CLUSTER0_CORE_COUNT 2 |
| 23 | #define PLATFORM_CLUSTER1_CORE_COUNT 0 |
| 24 | |
| 25 | #define IMX_PWR_LVL0 MPIDR_AFFLVL0 |
| 26 | #define IMX_PWR_LVL1 MPIDR_AFFLVL1 |
| 27 | #define IMX_PWR_LVL2 MPIDR_AFFLVL2 |
| 28 | |
| 29 | #define PWR_DOMAIN_AT_MAX_LVL U(1) |
| 30 | #define PLAT_MAX_PWR_LVL U(2) |
Jacky Bai | c6fb667 | 2023-09-18 22:08:52 +0800 | [diff] [blame] | 31 | |
| 32 | #define PLAT_SLEEP_RET_STATE U(1) |
| 33 | #define PLAT_DEEP_SLEEP_RET_STATE U(2) |
| 34 | #define PLAT_MAX_RET_STATE U(3) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 35 | |
Jacky Bai | c6fb667 | 2023-09-18 22:08:52 +0800 | [diff] [blame] | 36 | #define PLAT_POWER_DOWN_OFF_STATE U(4) |
| 37 | #define PLAT_DEEP_POWER_DOWN_STATE U(5) |
| 38 | #define PLAT_MAX_OFF_STATE U(6) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 39 | |
| 40 | #define BL31_BASE 0x20040000 |
| 41 | #define BL31_LIMIT 0x20070000 |
| 42 | |
| 43 | #define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32) |
| 44 | #define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32) |
| 45 | |
Ji Luo | 4f8e5ed | 2023-07-27 18:00:24 +0900 | [diff] [blame] | 46 | #ifdef SPD_trusty |
| 47 | #define MAX_XLAT_TABLES 11 |
| 48 | #define MAX_MMAP_REGIONS 12 |
| 49 | #else |
Jacky Bai | 6187fdd | 2023-08-02 19:07:00 +0800 | [diff] [blame] | 50 | #define MAX_XLAT_TABLES 10 |
| 51 | #define MAX_MMAP_REGIONS 11 |
Ji Luo | 4f8e5ed | 2023-07-27 18:00:24 +0900 | [diff] [blame] | 52 | #endif |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 53 | |
| 54 | #define PLAT_GICD_BASE U(0x2d400000) |
| 55 | #define PLAT_GICR_BASE U(0x2d440000) |
| 56 | #define DEVICE0_BASE U(0x20000000) |
| 57 | #define DEVICE0_SIZE U(0x10000000) |
| 58 | #define DEVICE1_BASE U(0x30000000) |
| 59 | #define DEVICE1_SIZE U(0x10000000) |
Ji Luo | 4f8e5ed | 2023-07-27 18:00:24 +0900 | [diff] [blame] | 60 | #define DEVICE2_BASE U(0x8ff00000) |
| 61 | #define DEVICE2_SIZE U(0x00001000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 62 | #define IMX_LPUART4_BASE U(0x29390000) |
| 63 | #define IMX_LPUART5_BASE U(0x293a0000) |
| 64 | #define IMX_LPUART_BASE IMX_LPUART5_BASE |
Pankaj Gupta | 862f57a | 2021-08-04 15:42:51 +0530 | [diff] [blame] | 65 | #define IMX_CAAM_BASE U(0x292e0000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 66 | #define IMX_BOOT_UART_CLK_IN_HZ 24000000 |
| 67 | #define IMX_CONSOLE_BAUDRATE 115200 |
| 68 | |
| 69 | #define IMX_CGC1_BASE U(0x292c0000) |
| 70 | #define IMX_PCC3_BASE U(0x292d0000) |
| 71 | #define IMX_PCC4_BASE U(0x29800000) |
| 72 | #define IMX_SIM2_BASE U(0x2da50000) |
| 73 | #define IMX_CGC2_BASE U(0x2da60000) |
| 74 | #define IMX_PCC5_BASE U(0x2da70000) |
Ye Li | c7b9423 | 2022-11-21 17:54:11 +0800 | [diff] [blame] | 75 | #define IMX_MU0B_BASE U(0x29220000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 76 | #define IMX_CMC1_BASE U(0x29240000) |
Jacky Bai | ba997cc | 2021-06-25 09:47:46 +0800 | [diff] [blame] | 77 | #define IMX_WUU1_BASE U(0x29260000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 78 | #define IMX_SIM1_BASE U(0x29290000) |
Jacky Bai | ba997cc | 2021-06-25 09:47:46 +0800 | [diff] [blame] | 79 | #define IMX_GPIOD_BASE U(0x2e200000) |
| 80 | #define IMX_GPIOE_BASE U(0x2d000000) |
| 81 | #define IMX_GPIOF_BASE U(0x2d010000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 82 | #define IMX_WDOG3_BASE U(0x292a0000) |
Jacky Bai | ba997cc | 2021-06-25 09:47:46 +0800 | [diff] [blame] | 83 | #define IMX_TPM5_BASE U(0x29340000) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 84 | |
| 85 | #define SRAM0_BASE U(0x2201F000) |
| 86 | |
Jacky Bai | ba997cc | 2021-06-25 09:47:46 +0800 | [diff] [blame] | 87 | #define IOMUXC_PTD_PCR_BASE U(0x298c0000) |
| 88 | #define IOMUXC_PTE_PCR_BASE U(0x298c0080) |
| 89 | #define IOMUXC_PTF_PCR_BASE U(0x298c0100) |
| 90 | #define IOMUXC_PSMI_BASE0 U(0x298c0800) |
| 91 | #define IOMUXC_PSMI_BASE1 U(0x298c0838) |
| 92 | #define IOMUXC_PSMI_BASE2 U(0x298c0954) |
| 93 | #define IOMUXC_PSMI_BASE3 U(0x298c0994) |
| 94 | #define IOMUXC_PSMI_BASE4 U(0x298c0a58) |
| 95 | |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 96 | #define IMX_ROM_ENTRY U(0x1000) |
| 97 | #define COUNTER_FREQUENCY 1000000 |
| 98 | |
| 99 | #define PLAT_NS_IMAGE_OFFSET 0x80200000 |
| 100 | |
| 101 | #define BL31_NOBITS_BASE 0x20058000 |
| 102 | #define BL31_NOBITS_LIMIT 0x2006d000 |
| 103 | |
| 104 | #define BL31_RWDATA_BASE 0x2006d000 |
| 105 | #define BL31_RWDATA_LIMIT 0x20070000 |
| 106 | |
Clement Faure | e4cde32 | 2021-06-14 17:31:38 +0200 | [diff] [blame] | 107 | #define BL32_FDT_OVERLAY_ADDR 0x9d000000 |
| 108 | |
Ji Luo | 37a394a | 2021-06-18 09:54:31 +0800 | [diff] [blame] | 109 | #ifdef SPD_trusty |
| 110 | #define IMX_TRUSTY_STACK_SIZE 0x100 |
| 111 | #endif |
| 112 | |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 113 | /* system memory map define */ |
| 114 | #define DEVICE0_MAP MAP_REGION_FLAT(DEVICE0_BASE, DEVICE0_SIZE, MT_DEVICE | MT_RW) |
| 115 | #define DEVICE1_MAP MAP_REGION_FLAT(DEVICE1_BASE, DEVICE1_SIZE, MT_DEVICE | MT_RW) |
Adrian Alonso | 871a708 | 2023-04-13 21:55:10 -0500 | [diff] [blame] | 116 | /* Map partial DRAM space for DRAM low-power mode control */ |
| 117 | #define DEVICE2_MAP MAP_REGION_FLAT(DEVICE2_BASE, DEVICE2_SIZE, MT_DEVICE | MT_RW) |
Jacky Bai | 4d93d1d | 2020-07-02 14:39:58 +0800 | [diff] [blame] | 118 | /* MU and FSB */ |
| 119 | #define ELE_MAP MAP_REGION_FLAT(0x27010000, 0x20000, MT_DEVICE | MT_RW | MT_NS) |
| 120 | #define SEC_SIM_MAP MAP_REGION_FLAT(0x2802B000, 0x1000, MT_DEVICE | MT_RW | MT_NS) /* SEC SIM */ |
| 121 | /* For SCMI shared memory region */ |
| 122 | #define SRAM0_MAP MAP_REGION_FLAT(SRAM0_BASE, 0x1000, MT_RW | MT_DEVICE) |
| 123 | |
| 124 | #endif /* PLATFORM_DEF_H */ |