/* ----------------------------------------------------------------------------- * Copyright (c) 2014 - 2019 ARM Ltd. * * This software is provided 'as-is', without any express or implied warranty. * In no event will the authors be held liable for any damages arising from * the use of this software. Permission is granted to anyone to use this * software for any purpose, including commercial applications, and to alter * it and redistribute it freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software in * a product, an acknowledgment in the product documentation would be * appreciated but is not required. * * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * * 3. This notice may not be removed or altered from any source distribution. * * * $Date: 2021-7-1 * $Revision: V1.0.0 * * Project: Flash Device Description for Puya PY32F030xx Flash * --------------------------------------------------------------------------- */ /* History: * Version 1.0.0 * Initial release */ #include "FlashOS.h" // FlashOS Structures #ifdef FLASH_MEM #ifdef PY088xx_64 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 64kB Flash", // Device Name (64kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00010000, // Device Size in Bytes (128kB) 0x100, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 600, // Program Page Timeout 600 mSec 6000, // Erase Sector Timeout 6000 mSec // Specify Size and Address of Sectors 0x2000, 0x000000, // Sector Size 4kB (2 sectors) SECTOR_END}; #endif // PY088xx_64 #ifdef PY088xx_96 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 96kB Flash", // Device Name (96kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00018000, // Device Size in Bytes (128kB) 0x100, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 600, // Program Page Timeout 600 mSec 6000, // Erase Sector Timeout 6000 mSec // Specify Size and Address of Sectors 0x2000, 0x000000, // Sector Size 4kB (2 sectors) SECTOR_END}; #endif // PY088xx_96 #ifdef PY088xx_128 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 128kB Flash", // Device Name (128kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00020000, // Device Size in Bytes (128kB) 0x100, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 600, // Program Page Timeout 600 mSec 6000, // Erase Sector Timeout 6000 mSec // Specify Size and Address of Sectors 0x2000, 0x000000, // Sector Size 4kB (2 sectors) SECTOR_END}; #endif // PY088xx_128 #ifdef PY088xx_256 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 256kB Flash", // Device Name (256kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00040000, // Device Size in Bytes (256kB) 0x100, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 600, // Program Page Timeout 600 mSec 6000, // Erase Sector Timeout 6000 mSec // Specify Size and Address of Sectors 0x2000, 0x000000, // Sector Size 8kB (2 sectors) SECTOR_END}; #endif // PY088xx_256 #endif // FLASH_MEM #ifdef FLASH_OTP struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ OTP Flash", // Device Name ONCHIP, // Device Type 0x1FFF1A00, // Device Start Address 0x00000100, // Device Size in Bytes (256) 0x100, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 3000, // Program Page Timeout 3 Sec 3000, // Erase Sector Timeout 3 Sec // Specify Size and Address of Sectors 0x00100, 0x000000, // Sector Size 32B (1 sectors) SECTOR_END}; #endif // FLASH_OTP #ifdef FLASH_OB struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ Flash Options", // Device Name ONCHIP, // Device Type 0x1FFF1D00, // Device Start Address 0x00000040, // Device Size in Bytes (32) 0x40, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 3000, // Program Page Timeout 3 Sec 3000, // Erase Sector Timeout 3 Sec // Specify Size and Address of Sectors 0x00040, 0x000000, // Sector Size 32B (1 sectors) SECTOR_END}; #endif // FLASH_OB