/* * Copyright (c) 2020-2021, Arm Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include #include #include #include #include "morello_def.h" #include /* * Platform information structure stored in SDS. * This structure holds information about platform's DDR * size which is an information about multichip setup * - Local DDR size in bytes, DDR memory in master board * - Remote DDR size in bytes, DDR memory in slave board * - slave_count * - multichip mode */ struct morello_plat_info { uint64_t local_ddr_size; uint64_t remote_ddr_size; uint8_t slave_count; bool multichip_mode; } __packed; /* Compile time assertion to ensure the size of structure is 18 bytes */ CASSERT(sizeof(struct morello_plat_info) == MORELLO_SDS_PLATFORM_INFO_SIZE, assert_invalid_plat_info_size); /* * BL33 image information structure stored in SDS. * This structure holds the source & destination addresses and * the size of the BL33 image which will be loaded by BL31. */ struct morello_bl33_info { uint32_t bl33_src_addr; uint32_t bl33_dst_addr; uint32_t bl33_size; }; static scmi_channel_plat_info_t morello_scmi_plat_info = { .scmi_mbx_mem = MORELLO_SCMI_PAYLOAD_BASE, .db_reg_addr = PLAT_CSS_MHU_BASE + CSS_SCMI_MHU_DB_REG_OFF, .db_preserve_mask = 0xfffffffe, .db_modify_mask = 0x1, .ring_doorbell = &mhu_ring_doorbell }; scmi_channel_plat_info_t *plat_css_get_scmi_info(int channel_id) { return &morello_scmi_plat_info; } const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops) { return css_scmi_override_pm_ops(ops); } #ifdef TARGET_PLATFORM_SOC /* * Morello platform supports RDIMMs with ECC capability. To use the ECC * capability, the entire DDR memory space has to be zeroed out before * enabling the ECC bits in DMC-Bing. Zeroing out several gigabytes of * memory from SCP is quite time consuming so the following function * is added to zero out the DDR memory from application processor which is * much faster compared to SCP. BL33 binary cannot be copied to DDR memory * before enabling ECC so copy_bl33 function is added to copy BL33 binary * from IOFPGA-DDR3 memory to main DDR4 memory. */ static void dmc_ecc_setup(struct morello_plat_info *plat_info) { uint64_t dram2_size; uint32_t val; INFO("Total DIMM size: %uGB\n", (uint32_t)(plat_info->local_ddr_size / 0x40000000)); assert(plat_info->local_ddr_size > ARM_DRAM1_SIZE); dram2_size = plat_info->local_ddr_size - ARM_DRAM1_SIZE; VERBOSE("Zeroing DDR memories\n"); zero_normalmem((void *)ARM_DRAM1_BASE, ARM_DRAM1_SIZE); flush_dcache_range(ARM_DRAM1_BASE, ARM_DRAM1_SIZE); zero_normalmem((void *)ARM_DRAM2_BASE, dram2_size); flush_dcache_range(ARM_DRAM2_BASE, dram2_size); /* Clear previous ECC errors while zeroing out the memory */ val = mmio_read_32(MORELLO_DMC0_ERR2STATUS_REG); mmio_write_32(MORELLO_DMC0_ERR2STATUS_REG, val); val = mmio_read_32(MORELLO_DMC1_ERR2STATUS_REG); mmio_write_32(MORELLO_DMC1_ERR2STATUS_REG, val); /* Set DMCs to CONFIG state before writing ERR0CTLR0 register */ mmio_write_32(MORELLO_DMC0_MEMC_CMD_REG, MORELLO_DMC_MEMC_CMD_CONFIG); mmio_write_32(MORELLO_DMC1_MEMC_CMD_REG, MORELLO_DMC_MEMC_CMD_CONFIG); while ((mmio_read_32(MORELLO_DMC0_MEMC_STATUS_REG) & MORELLO_DMC_MEMC_STATUS_MASK) != MORELLO_DMC_MEMC_CMD_CONFIG) { continue; } while ((mmio_read_32(MORELLO_DMC1_MEMC_STATUS_REG) & MORELLO_DMC_MEMC_STATUS_MASK) != MORELLO_DMC_MEMC_CMD_CONFIG) { continue; } INFO("Enabling ECC on DMCs\n"); /* Enable ECC in DMCs */ mmio_setbits_32(MORELLO_DMC0_ERR0CTLR0_REG, MORELLO_DMC_ERR0CTLR0_ECC_EN); mmio_setbits_32(MORELLO_DMC1_ERR0CTLR0_REG, MORELLO_DMC_ERR0CTLR0_ECC_EN); /* Set DMCs to READY state */ mmio_write_32(MORELLO_DMC0_MEMC_CMD_REG, MORELLO_DMC_MEMC_CMD_READY); mmio_write_32(MORELLO_DMC1_MEMC_CMD_REG, MORELLO_DMC_MEMC_CMD_READY); while ((mmio_read_32(MORELLO_DMC0_MEMC_STATUS_REG) & MORELLO_DMC_MEMC_STATUS_MASK) != MORELLO_DMC_MEMC_CMD_READY) { continue; } while ((mmio_read_32(MORELLO_DMC1_MEMC_STATUS_REG) & MORELLO_DMC_MEMC_STATUS_MASK) != MORELLO_DMC_MEMC_CMD_READY) { continue; } } #endif static void copy_bl33(uint32_t src, uint32_t dst, uint32_t size) { unsigned int i; INFO("Copying BL33 to DDR memory...\n"); for (i = 0U; i < size; (i = i + 8U)) mmio_write_64((dst + i), mmio_read_64(src + i)); for (i = 0U; i < size; (i = i + 8U)) { if (mmio_read_64(src + i) != mmio_read_64(dst + i)) { ERROR("Copy failed!\n"); panic(); } } INFO("done\n"); } void bl31_platform_setup(void) { int ret; struct morello_plat_info plat_info; struct morello_bl33_info bl33_info; struct morello_plat_info *copy_dest; ret = sds_init(); if (ret != SDS_OK) { ERROR("SDS initialization failed. ret:%d\n", ret); panic(); } ret = sds_struct_read(MORELLO_SDS_PLATFORM_INFO_STRUCT_ID, MORELLO_SDS_PLATFORM_INFO_OFFSET, &plat_info, MORELLO_SDS_PLATFORM_INFO_SIZE, SDS_ACCESS_MODE_NON_CACHED); if (ret != SDS_OK) { ERROR("Error getting platform info from SDS. ret:%d\n", ret); panic(); } /* Validate plat_info SDS */ if ((plat_info.local_ddr_size == 0U) || (plat_info.local_ddr_size > MORELLO_MAX_DDR_CAPACITY) || (plat_info.remote_ddr_size > MORELLO_MAX_DDR_CAPACITY) || (plat_info.slave_count > MORELLO_MAX_SLAVE_COUNT)) { ERROR("platform info SDS is corrupted\n"); panic(); } arm_bl31_platform_setup(); #ifdef TARGET_PLATFORM_SOC dmc_ecc_setup(&plat_info); #endif ret = sds_struct_read(MORELLO_SDS_BL33_INFO_STRUCT_ID, MORELLO_SDS_BL33_INFO_OFFSET, &bl33_info, MORELLO_SDS_BL33_INFO_SIZE, SDS_ACCESS_MODE_NON_CACHED); if (ret != SDS_OK) { ERROR("Error getting BL33 info from SDS. ret:%d\n", ret); panic(); } copy_bl33(bl33_info.bl33_src_addr, bl33_info.bl33_dst_addr, bl33_info.bl33_size); /* * Pass platform information to BL33. This method is followed as * currently there is no BL1/BL2 involved in boot flow of MORELLO. * When TBBR is implemented for MORELLO, this method should be removed * and platform information should be passed to BL33 using NT_FW_CONFIG * passing mechanism. */ copy_dest = (struct morello_plat_info *)MORELLO_PLATFORM_INFO_BASE; *copy_dest = plat_info; }