123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*!
- \file exmc_nandflash.h
- \brief the header file of nandflash driver
- \version 2023-06-30, V2.1.6, firmware for GD32F30x
- */
- /*
- Copyright (c) 2023, GigaDevice Semiconductor Inc.
- Redistribution and use in source and binary forms, with or without modification,
- are permitted provided that the following conditions are met:
- 1. Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- 3. Neither the name of the copyright holder nor the names of its contributors
- may be used to endorse or promote products derived from this software without
- specific prior written permission.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
- OF SUCH DAMAGE.
- */
- #ifndef EXMC_NANDFLASH_H
- #define EXMC_NANDFLASH_H
- #include "gd32f30x.h"
- #include "string.h"
- /* NAND area definition */
- /* A16 = CLE high command area */
- #define EXMC_CMD_AREA (uint32_t)(1<<16)
- /* A17 = ALE high address area */
- #define EXMC_ADDR_AREA (uint32_t)(1<<17)
- /* data area */
- #define EXMC_DATA_AREA ((uint32_t)0x00000000)
- /* NAND memory command (hynix HY27UF081G2A) */
- #define NAND_CMD_READ1_1ST ((uint8_t)0x00)
- #define NAND_CMD_READ1_2ND ((uint8_t)0x30)
- #define NAND_CMD_WRITE_1ST ((uint8_t)0x80)
- #define NAND_CMD_WRITE_2ND ((uint8_t)0x10)
- #define NAND_CMD_ERASE_1ST ((uint8_t)0x60)
- #define NAND_CMD_ERASE_2ND ((uint8_t)0xD0)
- #define NAND_CMD_READID ((uint8_t)0x90)
- #define NAND_CMD_STATUS ((uint8_t)0x70)
- #define NAND_CMD_LOCK_STATUS ((uint8_t)0x7A)
- #define NAND_CMD_RESET ((uint8_t)0xFF)
- /* NAND memory status */
- #define NAND_BUSY ((uint8_t)0x00)
- #define NAND_ERROR ((uint8_t)0x01)
- #define NAND_READY ((uint8_t)0x40)
- #define NAND_TIMEOUT_ERROR ((uint8_t)0x80)
- /* NAND memory parameters */
- #define NAND_ZONE_COUNT ((uint16_t)0x0001) /* NAND zone count */
- #define NAND_PAGE_SIZE ((uint16_t)0x0800) /* 2 * 1024 bytes per page */
- #define NAND_BLOCK_SIZE ((uint16_t)0x0040) /* 64 pages per block */
- #define NAND_ZONE_SIZE ((uint16_t)0x0400) /* 1024 block per zone */
- #define NAND_SPARE_AREA_SIZE ((uint16_t)0x0040) /* last 128 bytes as spare area */
- #define NAND_BLOCK_COUNT 1024 /* block count */
- #define NAND_PAGE_TOTAL_SIZE (NAND_PAGE_SIZE + NAND_SPARE_AREA_SIZE) /* total page size = page size + spare are size */
- /* command code type define */
- #define NAND_CMD_COPYBACK_A ((uint8_t)0x00) /* PAGE COPY-BACK command sequence */
- #define NAND_CMD_COPYBACK_B ((uint8_t)0x35)
- #define NAND_CMD_COPYBACK_C ((uint8_t)0x85)
- #define NAND_CMD_COPYBACK_D ((uint8_t)0x10)
- #define NAND_CMD_STATUS ((uint8_t)0x70) /* Read NAND Flash status */
- #define MAX_PHY_BLOCKS_PER_ZONE 1024
- #define MAX_LOG_BLOCKS_PER_ZONE 1000
- #define NAND_BAD_BLOCK_FLAG 0x00
- #define NAND_USED_BLOCK_FLAG 0xFE
- #define BI_OFFSET 0
- #define USED_OFFSET 1
- #define LBN0_OFFSET 2
- #define LBN1_OFFSET 3
- #define VALID_SPARE_SIZE 4
- #define NAND_OK 0
- #define NAND_FAIL 1
- #define BLOCK_ODD 0
- #define BLOCK_EVEN 1
- #define FREE_BLOCK (1 << 12)
- #define BAD_BLOCK (1 << 13)
- #define VALID_BLOCK (1 << 14)
- #define USED_BLOCK (1 << 15)
- #define EXCHANGE_BLOCKS_NUM 2
- #define BAD_BALOK_TEST_CYCLE 5
- #define DATA_BLOCK_PERCENT 98
- #define ADDR_1ST_CYCLE(ADDR) (uint8_t)((ADDR)& 0xFF) /* 1st addressing cycle */
- #define ADDR_2ND_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF00) >> 8) /* 2nd addressing cycle */
- #define ADDR_3RD_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF0000) >> 16) /* 3rd addressing cycle */
- #define ADDR_4TH_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF000000) >> 24) /* 4th addressing cycle */
- /* NAND id structure */
- typedef struct {
- uint8_t maker_id;
- uint8_t device_id;
- uint8_t third_id;
- uint8_t fourth_id;
- } nand_id_struct;
- /* NAND address structure */
- typedef struct {
- uint16_t zone;
- uint16_t block;
- uint16_t page;
- uint16_t page_in_offset;
- } nand_address_struct;
- /* function declarations */
- /* nand flash peripheral initialize */
- uint8_t exmc_nandflash_init(uint32_t nand_bank);
- /* read NAND flash ID */
- void nand_read_id(nand_id_struct *nand_id);
- /* write data to nand flash */
- uint8_t nand_write(uint32_t memaddr, uint8_t *pwritebuf, uint16_t bytecount);
- /* read data from nand flash */
- uint8_t nand_read(uint32_t mem_addr, uint8_t *preadbuf, uint16_t bytecount);
- /* scan and test specific block */
- uint8_t nand_scan_block(uint32_t pagenum);
- /* check block is free block */
- uint8_t nand_judge_free_block(uint32_t blocknum);
- #endif /* EXMC_NANDFLASH_H */
|