123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /*
- * Copyright 2018-2021 NXP
- *
- * SPDX-License-Identifier: BSD-3-Clause
- *
- */
- #ifndef PLAT_DEF_H
- #define PLAT_DEF_H
- #include <arch.h>
- #include <cortex_a72.h>
- /* Required without TBBR.
- * To include the defines for DDR PHY
- * Images.
- */
- #include <tbbr_img_def.h>
- #include <policy.h>
- #include <soc.h>
- #if defined(IMAGE_BL31)
- #define LS_SYS_TIMCTL_BASE 0x2890000
- #define PLAT_LS_NSTIMER_FRAME_ID 0
- #define LS_CONFIG_CNTACR 1
- #endif
- #define NXP_SYSCLK_FREQ 100000000
- #define NXP_DDRCLK_FREQ 100000000
- /* UART related definition */
- #define NXP_CONSOLE_ADDR NXP_UART_ADDR
- #define NXP_CONSOLE_BAUDRATE 115200
- /* Size of cacheable stacks */
- #if defined(IMAGE_BL2)
- #if defined(TRUSTED_BOARD_BOOT)
- #define PLATFORM_STACK_SIZE 0x2000
- #else
- #define PLATFORM_STACK_SIZE 0x1000
- #endif
- #elif defined(IMAGE_BL31)
- #define PLATFORM_STACK_SIZE 0x1000
- #endif
- /* SD block buffer */
- #define NXP_SD_BLOCK_BUF_SIZE (0x8000)
- #define NXP_SD_BLOCK_BUF_ADDR (NXP_OCRAM_ADDR + NXP_OCRAM_SIZE \
- - NXP_SD_BLOCK_BUF_SIZE)
- #ifdef SD_BOOT
- #define BL2_LIMIT (NXP_OCRAM_ADDR + NXP_OCRAM_SIZE \
- - NXP_SD_BLOCK_BUF_SIZE)
- #else
- #define BL2_LIMIT (NXP_OCRAM_ADDR + NXP_OCRAM_SIZE)
- #endif
- /* IO defines as needed by IO driver framework */
- #define MAX_IO_DEVICES 4
- #define MAX_IO_BLOCK_DEVICES 1
- #define MAX_IO_HANDLES 4
- #define PHY_GEN2_FW_IMAGE_BUFFER (NXP_OCRAM_ADDR + CSF_HDR_SZ)
- /*
- * FIP image defines - Offset at which FIP Image would be present
- * Image would include Bl31 , Bl33 and Bl32 (optional)
- */
- #ifdef POLICY_FUSE_PROVISION
- #define MAX_FIP_DEVICES 3
- #endif
- #ifndef MAX_FIP_DEVICES
- #define MAX_FIP_DEVICES 2
- #endif
- /*
- * ID of the secure physical generic timer interrupt used by the BL32.
- */
- #define BL32_IRQ_SEC_PHY_TIMER 29
- #define BL31_WDOG_SEC 89
- #define BL31_NS_WDOG_WS1 108
- /*
- * Define properties of Group 1 Secure and Group 0 interrupts as per GICv3
- * terminology. On a GICv2 system or mode, the lists will be merged and treated
- * as Group 0 interrupts.
- */
- #define PLAT_LS_G1S_IRQ_PROPS(grp) \
- INTR_PROP_DESC(BL32_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
- GIC_INTR_CFG_EDGE)
- /* SGI 15 and Secure watchdog interrupts assigned to Group 0 */
- #define NXP_IRQ_SEC_SGI_7 15
- #define PLAT_LS_G0_IRQ_PROPS(grp) \
- INTR_PROP_DESC(BL31_WDOG_SEC, GIC_HIGHEST_SEC_PRIORITY, grp, \
- GIC_INTR_CFG_EDGE), \
- INTR_PROP_DESC(BL31_NS_WDOG_WS1, GIC_HIGHEST_SEC_PRIORITY, grp, \
- GIC_INTR_CFG_EDGE), \
- INTR_PROP_DESC(NXP_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
- GIC_INTR_CFG_LEVEL)
- #endif
|