/* ----------------------------------------------------------------------------- * 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 PY32F002Cxx Flash * --------------------------------------------------------------------------- */ /* History: * Version 1.0.0 * Initial release */ #include "FlashOS.h" // FlashOS Structures #ifdef FLASH_MEM #ifdef PY108xx_24 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 24kB Flash", // Device Name (24kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00006000, // Device Size in Bytes (24kB) 0x80, // 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 0x1000, 0x000000, // Sector Size 4kB (8 sectors) SECTOR_END}; #endif // PY108xx_24 #ifdef PY108xx_32 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ 32kB Flash", // Device Name (32kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00008000, // Device Size in Bytes (32kB) 0x80, // 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 0x1000, 0x000000, // Sector Size 4kB (8 sectors) SECTOR_END}; #endif // PY108xx_32 #ifdef FLASH_OTP struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ OTP", // Device Name ONCHIP, // Device Type 0x1FFF0280, // Device Start Address 0x00000080, // Device Size in Bytes (128) 0x80, // 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 0x0080, 0x000000, // Sector Size 128B (1 sectors) SECTOR_END}; #endif // FLASH_OTP #endif // FLASH_MEM #ifdef FLASH_OB struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "Cortex-M0+ Flash Options", // Device Name ONCHIP, // Device Type 0x1FFF0080, // Device Start Address 0x00000010, // Device Size in Bytes (16) 0x10, // 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 0x00010, 0x000000, // Sector Size 16B (1 sectors) SECTOR_END}; #endif // FLASH_OB