Files
TencentOS-tiny/board/GigaDevice_GD32F207ZET6/BSP/Inc/gd32f20x_nandflash_eval.h
supowang edb2879617 first commit for opensource
first commit for opensource
2019-09-16 13:19:50 +08:00

142 lines
5.4 KiB
C

/*!
\file gd32f20x_nandflash_eval.h
\brief the header file of nandflash(hynix HY27UF081G2A) driver
\version 2015-07-15, V1.0.0, firmware for GD32F20x
\version 2017-06-05, V2.0.0, firmware for GD32F20x
\version 2018-10-31, V2.1.0, firmware for GD32F20x
*/
/*
Copyright (c) 2018, GigaDevice Semiconductor Inc.
All rights reserved.
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 GD32F20X_NANDFLASH_EVAL_H
#define GD32F20X_NANDFLASH_EVAL_H
#include "gd32f20x.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 */
/* NAND zone count */
#define NAND_ZONE_COUNT ((uint16_t)0x0001U)
/* 1024 block per zone */
#define NAND_ZONE_SIZE ((uint16_t)0x0400U)
/* 64 pages per block */
#define NAND_BLOCK_SIZE ((uint16_t)0x0040U)
/* 2 * 1024 bytes per page */
#define NAND_PAGE_SIZE ((uint16_t)0x0800U)
/* last 64 bytes as spare area */
#define NAND_SPARE_AREA_SIZE ((uint16_t)0x0040U)
/* total page size = page size + spare are size */
#define NAND_PAGE_TOTAL_SIZE (NAND_PAGE_SIZE + NAND_SPARE_AREA_SIZE)
/* max read and write address */
#define NAND_MAX_ADDRESS (((NAND_ZONE_COUNT*NAND_ZONE_SIZE)*NAND_BLOCK_SIZE)*NAND_PAGE_SIZE)
/* block count */
#define NAND_BLOCK_COUNT 1024U
/* NAND memory address computation */
#define ADDR_1ST_CYCLE(ADDR) (uint8_t)((ADDR)& 0xFFU)
#define ADDR_2ND_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF00U) >> 8)
#define ADDR_3RD_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF0000U) >> 16)
#define ADDR_4TH_CYCLE(ADDR) (uint8_t)(((ADDR)& 0xFF000000U) >> 24)
/* define return value of functions */
#define NAND_OK 0U
#define NAND_FAIL 1U
/* NAND id structure */
typedef struct
{
uint8_t maker_id;
uint8_t device_id;
uint8_t third_id;
uint8_t fourth_id;
}nand_id_struct;
typedef struct
{
uint16_t zone;
uint16_t block;
uint16_t page;
uint16_t page_in_offset;
} nand_address_struct;
/* read NAND flash ID */
void nand_read_id(nand_id_struct* nand_id);
/* nand flash peripheral initialize */
void exmc_nandflash_init(uint32_t nand_bank);
/* format nand flash */
uint8_t nand_format(void);
/* write the main area information for the specified logic addresses */
uint8_t nand_write(uint32_t memaddr, uint8_t *pwritebuf, uint32_t bytecount);
/* read the main area information for the specified logic addresses */
uint8_t nand_read(uint32_t memaddr, uint8_t *preadbuf, uint32_t bytecount);
/* reset nand flash */
uint8_t nand_reset(void);
/* fill the buffer with specified value */
void fill_buffer_nand(uint8_t *pbuffer, uint16_t buffer_lenght, uint32_t value);
/* read the spare area information for the specified pages addresses */
uint8_t exmc_nand_readspare(uint8_t *pbuffer, nand_address_struct address, uint16_t bytecount);
/* write the spare area information for the specified pages addresses */
uint8_t exmc_nand_writespare(uint8_t *pbuffer, nand_address_struct address, uint16_t bytecount);
#endif /* GD32F20X_NANDFLASH_EVAL_H */