xref: /rk3399_rockchip-uboot/include/nand.h (revision e331ab2ee9b141f1de2a8fb0bfaf52f6273022f9)
1932394acSWolfgang Denk /*
2932394acSWolfgang Denk  * (C) Copyright 2005
3932394acSWolfgang Denk  * 2N Telekomunikace, a.s. <www.2n.cz>
4932394acSWolfgang Denk  * Ladislav Michl <michl@2n.cz>
5932394acSWolfgang Denk  *
6932394acSWolfgang Denk  * See file CREDITS for list of people who contributed to this
7932394acSWolfgang Denk  * project.
8932394acSWolfgang Denk  *
9932394acSWolfgang Denk  * This program is free software; you can redistribute it and/or
10932394acSWolfgang Denk  * modify it under the terms of the GNU General Public License
11932394acSWolfgang Denk  * version 2 as published by the Free Software Foundation.
12932394acSWolfgang Denk  *
13932394acSWolfgang Denk  * This program is distributed in the hope that it will be useful,
14932394acSWolfgang Denk  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15932394acSWolfgang Denk  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
16932394acSWolfgang Denk  * GNU General Public License for more details.
17932394acSWolfgang Denk  *
18932394acSWolfgang Denk  * You should have received a copy of the GNU General Public License
19932394acSWolfgang Denk  * along with this program; if not, write to the Free Software
20932394acSWolfgang Denk  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21932394acSWolfgang Denk  * MA 02111-1307 USA
22932394acSWolfgang Denk  */
23932394acSWolfgang Denk 
24932394acSWolfgang Denk #ifndef _NAND_H_
25932394acSWolfgang Denk #define _NAND_H_
26932394acSWolfgang Denk 
27c1783474SScott Wood #include <config.h>
28c1783474SScott Wood 
29c1783474SScott Wood /*
30c1783474SScott Wood  * All boards using a given driver must convert to self-init
31c1783474SScott Wood  * at the same time, so do it here.  When all drivers are
32c1783474SScott Wood  * converted, this will go away.
33c1783474SScott Wood  */
34fe2185eaSWu, Josh #if defined(CONFIG_NAND_FSL_ELBC) || defined(CONFIG_NAND_ATMEL)
35c1783474SScott Wood #define CONFIG_SYS_NAND_SELF_INIT
36c1783474SScott Wood #endif
37c1783474SScott Wood 
389d2e3947SScott Wood extern void nand_init(void);
399d2e3947SScott Wood 
407b15e2bbSMike Frysinger #include <linux/compat.h>
41932394acSWolfgang Denk #include <linux/mtd/mtd.h>
42932394acSWolfgang Denk #include <linux/mtd/nand.h>
43932394acSWolfgang Denk 
44578931b3SScott Wood #ifdef CONFIG_SYS_NAND_SELF_INIT
45578931b3SScott Wood void board_nand_init(void);
46578931b3SScott Wood int nand_register(int devnum);
47578931b3SScott Wood #else
4869fb8be4SMike Frysinger extern int board_nand_init(struct nand_chip *nand);
49578931b3SScott Wood #endif
5069fb8be4SMike Frysinger 
51932394acSWolfgang Denk typedef struct mtd_info nand_info_t;
52932394acSWolfgang Denk 
53932394acSWolfgang Denk extern int nand_curr_device;
54932394acSWolfgang Denk extern nand_info_t nand_info[];
55932394acSWolfgang Denk 
56378adfcdSJean-Christophe PLAGNIOL-VILLARD static inline int nand_read(nand_info_t *info, loff_t ofs, size_t *len, u_char *buf)
57932394acSWolfgang Denk {
58038ccac5SBartlomiej Sieka 	return info->read(info, ofs, *len, (size_t *)len, buf);
59932394acSWolfgang Denk }
60932394acSWolfgang Denk 
61378adfcdSJean-Christophe PLAGNIOL-VILLARD static inline int nand_write(nand_info_t *info, loff_t ofs, size_t *len, u_char *buf)
62932394acSWolfgang Denk {
63038ccac5SBartlomiej Sieka 	return info->write(info, ofs, *len, (size_t *)len, buf);
64932394acSWolfgang Denk }
65932394acSWolfgang Denk 
66378adfcdSJean-Christophe PLAGNIOL-VILLARD static inline int nand_block_isbad(nand_info_t *info, loff_t ofs)
67932394acSWolfgang Denk {
68932394acSWolfgang Denk 	return info->block_isbad(info, ofs);
69932394acSWolfgang Denk }
70932394acSWolfgang Denk 
71378adfcdSJean-Christophe PLAGNIOL-VILLARD static inline int nand_erase(nand_info_t *info, loff_t off, size_t size)
72932394acSWolfgang Denk {
738e9655f8SWolfgang Denk 	struct erase_info instr;
748e9655f8SWolfgang Denk 
758e9655f8SWolfgang Denk 	instr.mtd = info;
768e9655f8SWolfgang Denk 	instr.addr = off;
778e9655f8SWolfgang Denk 	instr.len = size;
788e9655f8SWolfgang Denk 	instr.callback = 0;
798e9655f8SWolfgang Denk 
808e9655f8SWolfgang Denk 	return info->erase(info, &instr);
81932394acSWolfgang Denk }
82932394acSWolfgang Denk 
832255b2d2SStefan Roese 
842255b2d2SStefan Roese /*****************************************************************************
852255b2d2SStefan Roese  * declarations from nand_util.c
862255b2d2SStefan Roese  ****************************************************************************/
872255b2d2SStefan Roese 
882255b2d2SStefan Roese struct nand_write_options {
892255b2d2SStefan Roese 	u_char *buffer;		/* memory block containing image to write */
902255b2d2SStefan Roese 	ulong length;		/* number of bytes to write */
912255b2d2SStefan Roese 	ulong offset;		/* start address in NAND */
922255b2d2SStefan Roese 	int quiet;		/* don't display progress messages */
932255b2d2SStefan Roese 	int autoplace;		/* if true use auto oob layout */
942255b2d2SStefan Roese 	int forcejffs2;		/* force jffs2 oob layout */
952255b2d2SStefan Roese 	int forceyaffs;		/* force yaffs oob layout */
962255b2d2SStefan Roese 	int noecc;		/* write without ecc */
972255b2d2SStefan Roese 	int writeoob;		/* image contains oob data */
982255b2d2SStefan Roese 	int pad;		/* pad to page size */
992255b2d2SStefan Roese 	int blockalign;		/* 1|2|4 set multiple of eraseblocks
1002255b2d2SStefan Roese 				 * to align to */
1012255b2d2SStefan Roese };
1022255b2d2SStefan Roese 
1032255b2d2SStefan Roese typedef struct nand_write_options nand_write_options_t;
104cfa460adSWilliam Juul typedef struct mtd_oob_ops mtd_oob_ops_t;
1052255b2d2SStefan Roese 
1062255b2d2SStefan Roese struct nand_read_options {
1072255b2d2SStefan Roese 	u_char *buffer;		/* memory block in which read image is written*/
1082255b2d2SStefan Roese 	ulong length;		/* number of bytes to read */
1092255b2d2SStefan Roese 	ulong offset;		/* start address in NAND */
1102255b2d2SStefan Roese 	int quiet;		/* don't display progress messages */
1112255b2d2SStefan Roese 	int readoob;		/* put oob data in image */
1122255b2d2SStefan Roese };
1132255b2d2SStefan Roese 
1142255b2d2SStefan Roese typedef struct nand_read_options nand_read_options_t;
1152255b2d2SStefan Roese 
1162255b2d2SStefan Roese struct nand_erase_options {
11730486322SScott Wood 	loff_t length;		/* number of bytes to erase */
11830486322SScott Wood 	loff_t offset;		/* first address in NAND to erase */
1192255b2d2SStefan Roese 	int quiet;		/* don't display progress messages */
1202255b2d2SStefan Roese 	int jffs2;		/* if true: format for jffs2 usage
1212255b2d2SStefan Roese 				 * (write appropriate cleanmarker blocks) */
1222255b2d2SStefan Roese 	int scrub;		/* if true, really clean NAND by erasing
1232255b2d2SStefan Roese 				 * bad blocks (UNSAFE) */
12430486322SScott Wood 
12530486322SScott Wood 	/* Don't include skipped bad blocks in size to be erased */
12630486322SScott Wood 	int spread;
1272255b2d2SStefan Roese };
1282255b2d2SStefan Roese 
1292255b2d2SStefan Roese typedef struct nand_erase_options nand_erase_options_t;
1302255b2d2SStefan Roese 
131378adfcdSJean-Christophe PLAGNIOL-VILLARD int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
132dfbf617fSScott Wood 		       u_char *buffer);
133a6c9aa1fSBen Gardiner 
134c135456fSBen Gardiner #define WITH_YAFFS_OOB	(1 << 0) /* whether write with yaffs format. This flag
135c135456fSBen Gardiner 				  * is a 'mode' meaning it cannot be mixed with
136c135456fSBen Gardiner 				  * other flags */
137169d54d8SBen Gardiner #define WITH_DROP_FFS	(1 << 1) /* drop trailing all-0xff pages */
138a6c9aa1fSBen Gardiner 
139378adfcdSJean-Christophe PLAGNIOL-VILLARD int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,
140a6c9aa1fSBen Gardiner 			u_char *buffer, int flags);
1412255b2d2SStefan Roese int nand_erase_opts(nand_info_t *meminfo, const nand_erase_options_t *opts);
1422255b2d2SStefan Roese 
1432255b2d2SStefan Roese #define NAND_LOCK_STATUS_TIGHT	0x01
1442255b2d2SStefan Roese #define NAND_LOCK_STATUS_LOCK	0x02
1452255b2d2SStefan Roese #define NAND_LOCK_STATUS_UNLOCK 0x04
1462255b2d2SStefan Roese 
1472255b2d2SStefan Roese int nand_lock(nand_info_t *meminfo, int tight);
148*e331ab2eSJoe Hershberger int nand_unlock(nand_info_t *meminfo, loff_t start, size_t length,
149*e331ab2eSJoe Hershberger 	int allexcept);
150378adfcdSJean-Christophe PLAGNIOL-VILLARD int nand_get_lock_status(nand_info_t *meminfo, loff_t offset);
1512255b2d2SStefan Roese 
15212c2f1eeSSimon Schwarz int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst);
153bb085b87SSimon Schwarz void nand_deselect(void);
154bb085b87SSimon Schwarz 
1556d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #ifdef CONFIG_SYS_NAND_SELECT_DEVICE
15643a2b0e7SStefan Roese void board_nand_select_device(struct nand_chip *nand, int chip);
15743a2b0e7SStefan Roese #endif
15843a2b0e7SStefan Roese 
159e4c09508SScott Wood __attribute__((noreturn)) void nand_boot(void);
160e4c09508SScott Wood 
161932394acSWolfgang Denk #endif
162c9f7351bSBen Gardiner 
163c9f7351bSBen Gardiner #ifdef CONFIG_ENV_OFFSET_OOB
164c9f7351bSBen Gardiner #define ENV_OOB_MARKER 0x30425645 /*"EVB0" in little-endian -- offset is stored
165c9f7351bSBen Gardiner 				    as block number*/
166c9f7351bSBen Gardiner #define ENV_OOB_MARKER_OLD 0x30564e45 /*"ENV0" in little-endian -- offset is
167c9f7351bSBen Gardiner 					stored as byte number */
168c9f7351bSBen Gardiner #define ENV_OFFSET_SIZE 8
169c9f7351bSBen Gardiner int get_nand_env_oob(nand_info_t *nand, unsigned long *result);
170c9f7351bSBen Gardiner #endif
171