1 /* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __MFLASH_DRV_H__ 8 #define __MFLASH_DRV_H__ 9 10 #include "mflash_common.h" 11 12 #define MFLASH_SECTOR_SIZE (4096U) 13 14 #define MFLASH_PAGE_SIZE (256U) 15 16 #define MFLASH_BASE_ADDRESS (XSPI0_AMBA_BASE) 17 18 #define MFLASH_FLASH_SIZE (64UL * 1024UL * 1024UL) 19 20 #endif 21