| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- /**
- * @file wm_internal_flash.h
- *
- * @brief inter flash driver
- *
- * @author dave
- *
- * @copyright (c) 2015 Winner Microelectronics Co., Ltd.
- */
- #ifndef WM_INTERNAL_FLASH_H
- #define WM_INTERNAL_FLASH_H
- #include "wm_type_def.h"
- #include "wm_osal.h"
- typedef volatile unsigned char vu8;
- typedef volatile unsigned short vu16;
- typedef volatile unsigned long vu32;
- #define M8(adr) (*((vu8 *) (adr)))
- #define M16(adr) (*((vu16*) (adr)))
- #define M32(adr) (*((vu32*) (adr)))
- #define INSIDE_FLS_SECTOR_SIZE 0x1000
- #define INSIDE_FLS_PAGE_SIZE 256
- #define INSIDE_FLS_BASE_ADDR 0x8000000UL
- #define INSIDE_FLS_SECBOOT_ADDR (INSIDE_FLS_BASE_ADDR + 0x02000)
- enum TYPE_FLASH_ID{
- SPIFLASH_MID_GD = 0xC8,
- SPIFLASH_MID_ESMT = 0x1C,
- SPIFLASH_MID_PUYA = 0x85,
- SPIFLASH_MID_WINBOND = 0xEF,
- SPIFLASH_MID_FUDANMICRO = 0xA1,
- SPIFLASH_MID_BOYA = 0x68,
- SPIFLASH_MID_XMC = 0x20,
- SPIFLASH_MID_XTX = 0x0B,
- SPIFLASH_MID_TSINGTENG = 0xEB, /*UNIGROUP TSINGTENG*/
- SPIFLASH_MID_TSINGTENG_1MB_4MB = 0xCD, /*UNIGROUP TSINGTENG*/
- };
- typedef union {
- struct {
- uint32_t _reserved0: 1; /*!< bit: 0 Reserved */
- uint32_t code_decrypt: 1; /*!< bit: 1 read code from AHB decrypt flag */
- uint32_t dbus_decrypt: 1; /*!< bit: 2 read data from Flash register controller decrypt flag */
- uint32_t data_decrypt: 1; /*!< bit: 3 read data from AHB decrypt flag */
- uint32_t prikey_sel: 3; /*!< bit: 4.. 6 private key selection: 0 : first one; 1 : second one; */
- uint32_t decrypt_start: 1; /*!< bit: 7 write 1 to start RSA decryption operation */
- uint32_t _reserved2: 24; /*!< bit: 8.. 31 Reserved */
- } b; /*!< Structure Access by bit */
- uint32_t w; /*!< Type Access by whole register */
- } FLASH_ENCRYPT_CTRL_Type;
- /**
- * @typedef struct Flash Registers
- */
- typedef struct
- {
- vu32 ACR; /**< offset 0x000 */
- vu32 KEYR; /**< offset 0x004 */
- vu32 SR; /**< offset 0x008 */
- vu32 CR; /**< offset 0x00C */
- vu32 AR; /**< offset 0x010 */
- } FLASH_TypeDef;
- #define FLASH_HS 0x00000001
- /** Flash Keys */
- #define RDPRT_KEY 0x5AA5
- #define FLASH_KEY1 0x57696E6E
- #define FLASH_KEY2 0x65724D69
- #define FLASH_KEY3 0x63726F21
- /** Flash Control Register definitions */
- #define FLASH_PG 0x00000001
- #define FLASH_PER 0x00000002
- #define FLASH_MER 0x00000004
- #define FLASH_STRT 0x00000008
- #define FLASH_LOCK 0x00000020
- #define FLASH_ERRIE 0x00000040
- #define FLASH_EOPIE 0x00000080
- /** Flash Status Register definitions */
- #define FLASH_BSY 0x00000001
- #define FLASH_PGERR 0x00000002
- #define FLASH_EOP 0x00000004
- #define TLS_FLS_STATUS_OK (0)
- #define TLS_FLS_STATUS_EINVAL (1)
- #define TLS_FLS_STATUS_EBUSY (2)
- #define TLS_FLS_STATUS_EPERM (3)
- #define TLS_FLS_STATUS_ENOSUPPORT (4)
- #define TLS_FLS_STATUS_EEXIST (5)
- #define TLS_FLS_STATUS_ENOMEM (6)
- #define TLS_FLS_STATUS_EOVERFLOW (7)
- #define TLS_FLS_STATUS_ENODEV (8)
- #define TLS_FLS_STATUS_EDEV (9)
- #define TLS_FLS_STATUS_EIO (10)
- #define TLS_FLS_STATUS_ENODRV (11)
- #define TLS_FLS_PARAM_TYPE_ID (0)
- #define TLS_FLS_PARAM_TYPE_SIZE (1)
- #define TLS_FLS_PARAM_TYPE_PAGE_SIZE (2)
- #define TLS_FLS_PARAM_TYPE_PROG_SIZE (3)
- #define TLS_FLS_PARAM_TYPE_SECTOR_SIZE (4)
- #define TLS_FLS_FLAG_UNDER_PROTECT (1<<0)
- #define TLS_FLS_FLAG_FAST_READ (1<<1)
- #define TLS_FLS_FLAG_AAAI (1<<2)
- #define CMD_START_Pos 8U /*!< CMD start position */
- #define CMD_START_Msk (1UL << CMD_START_Pos) /*!< CMD start Mask */
- typedef struct {
- uint16_t eraseSize;
- uint16_t pageSize;
- } FLASH_OTP_WR_PARAM_ST;
- /**
- * @struct tls_inside_fls
- */
- struct tls_inside_fls
- {
- tls_os_sem_t *fls_lock;
- unsigned char flashid;
- unsigned int density;
- FLASH_OTP_WR_PARAM_ST OTPWRParam;
- };
- /**
- * @defgroup Driver_APIs Driver APIs
- * @brief Driver APIs
- */
- /**
- * @addtogroup Driver_APIs
- * @{
- */
- /**
- * @defgroup INNER_FLASH_Driver_APIs INNER FLASH Driver APIs
- * @brief INNER FLASH driver APIs
- */
- /**
- * @addtogroup INNER_FLASH_Driver_APIs
- * @{
- */
- /**
- * @brief This function is used to unlock flash protect area [0x0~0x2000].
- *
- * @param None
- *
- * @return 0-success,non-zero-failure
- *
- * @note None
- */
- int tls_flash_unlock(void);
- /**
- * @brief This function is used to lock flash protect area [0x0~0x2000].
- *
- * @param None
- *
- * @return 0-success,non-zero-failure
- *
- * @note None
- */
- int tls_flash_lock(void);
- /**
- * @brief This function is used to get the flash semaphore.
- *
- * @param None
- *
- * @return None
- *
- * @note None
- */
- void tls_fls_sem_lock(void);
- /**
- * @brief This function is used to release the flash semaphore.
- *
- * @param None
- *
- * @return None
- *
- * @note None
- */
- void tls_fls_sem_unlock(void);
- /**
- * @brief This function is used to read the unique id of the internal flash.
- *
- * @param[out] uuid Specified the address to save the uuid, the length must be greater than or equals to 18 bytes.
- *
- * @retval TLS_FLS_STATUS_OK if read sucsess
- * @retval TLS_FLS_STATUS_EIO if read fail
- *
- * @note The uuid's length must be greater than or equals to 18 bytes.
- */
- int tls_fls_read_unique_id(unsigned char *uuid);
- /**
- * @brief This function is used to initial flash module structer.
- *
- * @param[in] None
- *
- * @retval TLS_FLS_STATUS_OK if init sucsess
- * @retval TLS_FLS_STATUS_EBUSY already inited
- * @retval TLS_FLS_STATUS_ENOMEM memory error
- *
- * @note None
- */
- int tls_fls_init(void);
- /**
- * @brief This function is used to read data from the flash.
- *
- * @param[in] addr Specifies the starting address to read from.
- * @param[in] buf Specified the address to save the readback data.
- * @param[in] len Specifies the length of the data to read.
- *
- * @retval TLS_FLS_STATUS_OK if read sucsess
- * @retval TLS_FLS_STATUS_EIO if read fail
- *
- * @note None
- */
- int tls_fls_read(u32 addr, u8 * buf, u32 len);
- /**
- * @brief This function is used to write data into the flash.
- *
- * @param[in] addr Specifies the starting address to write to
- * @param[in] buf Pointer to a byte array that is to be written
- * @param[in] len Specifies the length of the data to be written
- *
- * @retval TLS_FLS_STATUS_OK if write flash success
- * @retval TLS_FLS_STATUS_EPERM if flash struct point is null
- * @retval TLS_FLS_STATUS_ENODRV if flash driver is not installed
- * @retval TLS_FLS_STATUS_EINVAL if argument is invalid
- * @retval TLS_FLS_STATUS_EIO if io error
- *
- * @note None
- */
- int tls_fls_write(u32 addr, u8 * buf, u32 len);
- /**
- * @brief This function is used to write data into the flash without erase.
- *
- * @param[in] addr Specifies the starting address to write to
- * @param[in] buf Pointer to a byte array that is to be written
- * @param[in] len Specifies the length of the data to be written
- *
- * @retval TLS_FLS_STATUS_OK if write flash success
- * @retval TLS_FLS_STATUS_EPERM if flash struct point is null
- * @retval TLS_FLS_STATUS_ENODRV if flash driver is not installed
- * @retval TLS_FLS_STATUS_EINVAL if argument is invalid
- *
- * @note Erase action should be excuted by API tls_fls_erase in user layer.
- */
- int tls_fls_write_without_erase(u32 addr, u8 *buf, u32 len);
- /**
- * @brief This function is used to erase the appointed sector
- *
- * @param[in] sector sector num of the flash, 4K bytes every sector
- *
- * @retval TLS_FLS_STATUS_OK if read sucsess
- * @retval other if read fail
- *
- * @note None
- */
- int tls_fls_erase(u32 sector);
- /**
- * @brief This function is used to initialize system parameter postion by flash density
- *
- * @param None
- *
- * @retval None
- *
- * @note must be called before tls_param_init
- */
- void tls_fls_sys_param_postion_init(void);
- /**
- * @brief This function is used to read data from the security registers.
- *
- * @param[in] addr Specifies the starting address to read from.
- * @param[in] buf Specified the address to save the readback data.
- * @param[in] len Specifies the length of the data to read.
- *
- * @retval TLS_FLS_STATUS_OK if read sucsess
- * @retval TLS_FLS_STATUS_EPERM if flash struct point is null
- *
- * @note None
- */
- int tls_fls_otp_read(u32 addr, u8 *buf, u32 len);
- /**
- * @brief This function is used to write data into the security registers.
- *
- * @param[in] addr Specifies the starting address to write to
- * @param[in] buf Pointer to a byte array that is to be written
- * @param[in] len Specifies the length of the data to be written
- *
- * @retval TLS_FLS_STATUS_OK if write the security registers success
- * @retval TLS_FLS_STATUS_EPERM if flash struct point is null
- * @retval TLS_FLS_STATUS_ENOSUPPORT if flash is not supported
- * @retval TLS_FLS_STATUS_EINVAL if argument is invalid
- * @retval TLS_FLS_STATUS_ENOMEN if no memory
- *
- * @note None
- */
- int tls_fls_otp_write(u32 addr, u8 *buf, u32 len);
- /**
- * @brief This function is used to lock the security registers.
- *
- * @param None
- *
- * @return None
- *
- * @note None
- */
- int tls_fls_otp_lock(void);
- #endif /* WM_INTERNAL_FLASH_H */
|