1 /* 2 * Copyright 2020-2021 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 #include <stdint.h> 8 #include <stdlib.h> 9 10 #include <lib/xlat_tables/xlat_tables_v2.h> 11 ifc_nor_init(uintptr_t flash_addr,size_t flash_size)12int ifc_nor_init(uintptr_t flash_addr, size_t flash_size) 13 { 14 /* Adding NOR Memory Map in XLAT Table */ 15 mmap_add_region(flash_addr, flash_addr, flash_size, MT_MEMORY | MT_RW); 16 17 return 0; 18 } 19