/*---------------------------------------------------------------------------- * RL-ARM - FlashFS *---------------------------------------------------------------------------- * Name: FILE_CONFIG.C * Purpose: Configuration of RL FlashFS by user * Rev.: V4.70 *---------------------------------------------------------------------------- * This code is part of the RealView Run-Time Library. * Copyright (c) 2004-2013 KEIL - An ARM Company. All rights reserved. *---------------------------------------------------------------------------*/ #include //-------- <<< Use Configuration Wizard in Context Menu >>> ----------------- // // File System // ============== // Define File System global parameters // Number of open files <4-16> // Define number of files that can be // opened at the same time. // Default: 8 #define N_FILES 4 // FAT Name Cache Size <0-1000000> // Define number of cached FAT file or directory names. // 48 bytes of RAM is required for each cached name. #define FAT_NAME_CACNT 50 // Relocate FAT Name Cache Buffer // Locate Cache Buffer at a specific address. #define FAT_NAME_RELOC 0 // Base address <0x0000-0xFFFFFE00:0x200> // Define the Cache buffer base address. #define FAT_NAME_CADR 0x60000000 // // CPU Clock Frequency [Hz]<0-1000000000> // Define the CPU Clock frequency used for // flash programming and erasing. #define CPU_CLK 168000000 // // Flash Drive // ============== // Enable Embedded Flash Drive [F:] #define FL0_EN 0 // Base address <0x0-0xFFFFF000:0x1000> // Define the target device Base address // Default: 0x80000000 #define FL0_BADR 0x80000000 // Device Size <0x4000-0xFFFFF000:0x4000> // Define the size of Flash device in bytes // Default: 0x100000 (1MB) #define FL0_SIZE 0x0200000 // Content of Erased Memory <0=>0x00 <0xFF=>0xFF // Define the initial value for erased Flash data // Default: 0xFF #define FL0_INITV 0xFF // Device Description file // Specify a file name with a relative path // Default: FS_FlashDev.h #define FL0_HFILE "FS_FlashDev.h" // Default Drive [F:] // Used when Drive letter not specified #define FL0_DEF 0 // // SPI Flash Drive // ================== // Enable SPI Flash Drive [S:] #define SF0_EN 0 // Device Size <0x10000-0xFFFFF000:0x8000> // Define the size of SPI Flash device in bytes // Default: 0x100000 (1MB) #define SF0_SIZE 0x0200000 // Content of Erased Memory <0=>0x00 <0xFF=>0xFF // Define the initial value for erased Flash data // Default: 0xFF #define SF0_INITV 0xFF // Device Description file // Specify a file name with a relative path // Default: FS_SPI_FlashDev.h #define SF0_HFILE "FS_SPI_FlashDev.h" // Default Drive [S:] // Used when Drive letter not specified #define SF0_DEF 0 // // RAM Drive // ============ // Enable Embedded RAM Drive [R:] #define RAM0_EN 0 // Device Size <0x4000-0xFFFFF000:0x4000> // Define the size of RAM device in bytes // Default: 0x40000 #define RAM0_SIZE 0x004000 // Number of Sectors <8=>8 <16=>16 <32=>32 <64=>64 <128=>128 // Define number of virtual sectors for RAM device // Default: 32 #define RAM0_NSECT 64 // Relocate Device Buffer // Locate RAM Device Buffer at a specific address. // If not enabled, the linker selects base address. #define RAM0_RELOC 1 // Base address <0x0-0xFFFFF000:0x1000> // Define the target device Base address. // Default: 0x81000000 #define RAM0_BADR 0x81010000 // // Default Drive [R:] // Used when Drive letter not specified #define RAM0_DEF 0 // // Memory Card Drive 0 // ====================== // Enable Memory Card Drive [M0:] #define MC0_EN 1 // Bus Mode <0=>SD-Native <1=>SPI // Define Memory Card bus interface mode. // SD-Native mode needs MCI peripheral. // SPI mode uses SD Card in SPI mode. #define MC0_SPI 0 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define MC0_CASZ 4 // Relocate Cache Buffer // Locate Cache Buffer at a specific address. // Some devices like NXP LPC23xx require a Cache buffer // for DMA transfer located at specific address. #define MC0_RELOC 0 // Base address <0x0000-0xFFFFFE00:0x200> // Define the Cache buffer base address. // For LPC23xx/24xx devices this is USB RAM // starting at 0x7FD00000. #define MC0_CADR 0x7FD00000 // // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define MC0_FSJ 0 // Default Drive [M0:] // Used when Drive letter not specified #define MC0_DEF 1 // // Memory Card Drive 1 // ====================== // Enable Memory Card Drive [M1:] #define MC1_EN 0 // Bus Mode <0=>SD-Native <1=>SPI // Define Memory Card bus interface mode. // SD-Native mode needs MCI peripheral. // SPI mode uses SD Card in SPI mode. #define MC1_SPI 1 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define MC1_CASZ 0 // Relocate Cache Buffer // Locate Cache Buffer at a specific address. // Some devices like NXP LPC23xx require a Cache buffer // for DMA transfer located at specific address. #define MC1_RELOC 0 // Base address <0x0000-0xFFFFFE00:0x200> // Define the Cache buffer base address. // For LPC23xx/24xx devices this is USB RAM // starting at 0x7FD00000. #define MC1_CADR 0x7FD00000 // // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define MC1_FSJ 0 // Default Drive [M1:] // Used when Drive letter not specified #define MC1_DEF 0 // // USB Flash Drive 0 // ==================== // Enable USB Flash Drive [U0:] #define USB0_EN 0 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define USB0_CASZ 8 // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define USB0_FSJ 0 // Default Drive [U0:] // Used when Drive letter not specified #define USB0_DEF 0 // // USB Flash Drive 1 // ==================== // Enable USB Flash Drive [U1:] #define USB1_EN 0 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define USB1_CASZ 8 // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define USB1_FSJ 0 // Default Drive [U1:] // Used when Drive letter not specified #define USB1_DEF 0 // // NAND Flash Drive 0 // =================== // Enable NAND Flash Drive [N0:] #define NAND0_EN 0 // Page size <528=> 512 + 16 bytes // <2112=>2048 + 64 bytes // <4224=>4096 + 128 bytes // <8448=>8192 + 256 bytes // Define program Page size in bytes (User + Spare area). #define NAND0_PGSZ 2112 // Block Size <8=>8 pages <16=>16 pages <32=>32 pages // <64=>64 pages <128=>128 pages <256=>256 pages // Define number of pages in a block. #define NAND0_PGCNT 64 // Device Size [blocks] <512-32768> // Define number of blocks in NAND Flash device. #define NAND0_BLCNT 1024 // Page Caching <0=>OFF <1=>1 page <2=>2 pages <4=>4 pages // <8=>8 pages <16=>16 pages <32=>32 pages // Define number of cached Pages. // Default: 4 pages #define NAND0_CAPG 8 // Block Indexing <0=>OFF <1=>1 block <2=>2 blocks <4=>4 blocks // <8=>8 blocks <16=>16 blocks <32=>32 blocks // <64=>64 blocks <128=>128 blocks <256=>256 blocks // Define number of indexed Flash Blocks. // Increase this number for better performance. // Default: 16 blocks #define NAND0_CABL 16 // Software ECC <0=>None <1=>Hamming (SLC) // Enable software ECC calculation only, // if not supported by hardware. #define NAND0_SWECC 1 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define NAND0_CASZ 8 // Relocate Cache Buffers // Use this option to locate Cache buffers // at specific address in RAM or SDRAM. #define NAND0_RELOC 0 // Base address <0x0000-0xFFFFFE00:0x200> // Define base address for Cache Buffers. #define NAND0_CADR 0x80000000 // // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define NAND0_FSJ 0 // Default Drive [N0:] // Used when Drive letter not specified #define NAND0_DEF 1 // // NAND Flash Drive 1 // =================== // Enable NAND Flash Drive [N1:] #define NAND1_EN 0 // Page size <528=> 512 + 16 bytes // <2112=>2048 + 64 bytes // <4224=>4096 + 128 bytes // <8448=>8192 + 256 bytes // Define program Page size in bytes (User + Spare area). #define NAND1_PGSZ 2112 // Block Size <8=>8 pages <16=>16 pages <32=>32 pages // <64=>64 pages <128=>128 pages <256=>256 pages // Define number of pages in a block. #define NAND1_PGCNT 32 // Device Size [blocks] <512-32768> // Define number of blocks in NAND Flash device. #define NAND1_BLCNT 512 // Page Caching <0=>OFF <1=>1 page <2=>2 pages <4=>4 pages // <8=>8 pages <16=>16 pages <32=>32 pages // Define number of cached Pages. // Default: 4 pages #define NAND1_CAPG 4 // Block Indexing <0=>OFF <1=>1 block <2=>2 blocks <4=>4 blocks // <8=>8 blocks <16=>16 blocks <32=>32 blocks // <64=>64 blocks <128=>128 blocks <256=>256 blocks // Define number of indexed Flash Blocks. // Increase this number for better performance. // Default: 16 blocks #define NAND1_CABL 16 // Software ECC <0=>None <1=>Hamming (SLC) // Enable software ECC calculation only, // if not supported by hardware. #define NAND1_SWECC 0 // File System Cache <0=>OFF <1=>1 KB <2=>2 KB <4=>4 KB // <8=>8 KB <16=>16 KB <32=>32 KB // Define System Cache buffer size for file IO. // Increase this number for faster r/w access. // Default: 4 kB #define NAND1_CASZ 4 // Relocate Cache Buffers // Use this option to locate Cache buffers // at specific address in RAM or SDRAM. #define NAND1_RELOC 0 // Base address <0x0000-0xFFFFFE00:0x200> // Define base address for Cache Buffers. #define NAND1_CADR 0x80000000 // // FAT Journal // Enable FAT Journal in order to guarantee // fail-safe FAT file system operation. #define NAND1_FSJ 0 // Default Drive [N1:] // Used when Drive letter not specified #define NAND1_DEF 0 // //------------- <<< end of configuration section >>> ----------------------- #ifndef __NO_FILE_LIB_C #include #endif /*---------------------------------------------------------------------------- * end of file *---------------------------------------------------------------------------*/