blob: cdba7384ad1439a08df0cb9fb39835f03a78bcae [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02002/*
3 * (C) Copyright 2005
4 * 2N Telekomunikace, a.s. <www.2n.cz>
5 * Ladislav Michl <michl@2n.cz>
Wolfgang Denk932394a2005-08-17 12:55:25 +02006 */
7
8#ifndef _NAND_H_
9#define _NAND_H_
10
Scott Wood9d2e3942008-07-09 17:47:52 -050011extern void nand_init(void);
Sean Anderson333d43f2023-11-04 16:37:50 -040012void nand_reinit(void);
Hou Zhiqiang203db382017-03-17 16:12:31 +080013unsigned long nand_size(void);
Sean Anderson38ef64e2023-11-04 16:37:44 -040014unsigned int nand_page_size(void);
Scott Wood9d2e3942008-07-09 17:47:52 -050015
Mike Frysinger7b15e2b2012-04-09 13:39:55 +000016#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020017#include <linux/mtd/mtd.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020018
Scott Woodb616d9b2016-05-30 13:57:55 -050019int nand_mtd_to_devnum(struct mtd_info *mtd);
20
Tom Rini068c41f2021-12-12 22:12:36 -050021#if CONFIG_IS_ENABLED(SYS_NAND_SELF_INIT)
Scott Wood578931b2012-01-12 19:07:23 -060022void board_nand_init(void);
Scott Woodb616d9b2016-05-30 13:57:55 -050023int nand_register(int devnum, struct mtd_info *mtd);
Sean Andersonc2034822023-11-04 16:37:49 -040024void nand_unregister(struct mtd_info *mtd);
Scott Wood578931b2012-01-12 19:07:23 -060025#else
Tom Rini1cefed12021-09-22 14:50:35 -040026struct nand_chip;
27
Mike Frysinger69fb8be2008-12-06 02:40:55 -050028extern int board_nand_init(struct nand_chip *nand);
Scott Wood578931b2012-01-12 19:07:23 -060029#endif
Mike Frysinger69fb8be2008-12-06 02:40:55 -050030
Wolfgang Denk932394a2005-08-17 12:55:25 +020031extern int nand_curr_device;
Wolfgang Denk932394a2005-08-17 12:55:25 +020032
Scott Wood151c06e2016-05-30 13:57:54 -050033static inline int nand_read(struct mtd_info *info, loff_t ofs, size_t *len,
34 u_char *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +020035{
Sergey Lapindfe64e22013-01-14 03:46:50 +000036 return mtd_read(info, ofs, *len, (size_t *)len, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +020037}
38
Scott Wood151c06e2016-05-30 13:57:54 -050039static inline int nand_write(struct mtd_info *info, loff_t ofs, size_t *len,
40 u_char *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +020041{
Sergey Lapindfe64e22013-01-14 03:46:50 +000042 return mtd_write(info, ofs, *len, (size_t *)len, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +020043}
44
Scott Wood151c06e2016-05-30 13:57:54 -050045static inline int nand_block_isbad(struct mtd_info *info, loff_t ofs)
Wolfgang Denk932394a2005-08-17 12:55:25 +020046{
Sergey Lapindfe64e22013-01-14 03:46:50 +000047 return mtd_block_isbad(info, ofs);
Wolfgang Denk932394a2005-08-17 12:55:25 +020048}
49
Scott Wood151c06e2016-05-30 13:57:54 -050050static inline int nand_erase(struct mtd_info *info, loff_t off, size_t size)
Wolfgang Denk932394a2005-08-17 12:55:25 +020051{
Wolfgang Denk8e9655f2005-11-02 14:29:12 +010052 struct erase_info instr;
53
54 instr.mtd = info;
55 instr.addr = off;
56 instr.len = size;
Wolfgang Denk8e9655f2005-11-02 14:29:12 +010057
Sergey Lapindfe64e22013-01-14 03:46:50 +000058 return mtd_erase(info, &instr);
Wolfgang Denk932394a2005-08-17 12:55:25 +020059}
60
Stefan Roese2255b2d2006-10-10 12:36:02 +020061
62/*****************************************************************************
63 * declarations from nand_util.c
64 ****************************************************************************/
65
William Juulcfa460a2007-10-31 13:53:06 +010066typedef struct mtd_oob_ops mtd_oob_ops_t;
Stefan Roese2255b2d2006-10-10 12:36:02 +020067
Stefan Roese2255b2d2006-10-10 12:36:02 +020068struct nand_erase_options {
Scott Wood30486322010-08-25 14:43:29 -050069 loff_t length; /* number of bytes to erase */
70 loff_t offset; /* first address in NAND to erase */
Stefan Roese2255b2d2006-10-10 12:36:02 +020071 int quiet; /* don't display progress messages */
72 int jffs2; /* if true: format for jffs2 usage
73 * (write appropriate cleanmarker blocks) */
74 int scrub; /* if true, really clean NAND by erasing
75 * bad blocks (UNSAFE) */
Scott Wood30486322010-08-25 14:43:29 -050076
77 /* Don't include skipped bad blocks in size to be erased */
78 int spread;
Heiko Schochera67cc372013-06-24 18:50:40 +020079 /* maximum size that actual may be in order to not exceed the buf */
80 loff_t lim;
Stefan Roese2255b2d2006-10-10 12:36:02 +020081};
82
83typedef struct nand_erase_options nand_erase_options_t;
84
Scott Wood151c06e2016-05-30 13:57:54 -050085int nand_read_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
Tom Rinic39d6a02013-03-14 05:32:50 +000086 size_t *actual, loff_t lim, u_char *buffer);
Ben Gardinera6c9aa12011-05-24 10:18:35 -040087
Peter Tyser004a1fd2015-02-03 11:58:16 -060088#define WITH_DROP_FFS (1 << 0) /* drop trailing all-0xff pages */
89#define WITH_WR_VERIFY (1 << 1) /* verify data was written correctly */
Ben Gardinera6c9aa12011-05-24 10:18:35 -040090
Scott Wood151c06e2016-05-30 13:57:54 -050091int nand_write_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
Tom Rinic39d6a02013-03-14 05:32:50 +000092 size_t *actual, loff_t lim, u_char *buffer, int flags);
Scott Wood151c06e2016-05-30 13:57:54 -050093int nand_erase_opts(struct mtd_info *mtd,
94 const nand_erase_options_t *opts);
95int nand_torture(struct mtd_info *mtd, loff_t offset);
96int nand_verify_page_oob(struct mtd_info *mtd, struct mtd_oob_ops *ops,
97 loff_t ofs);
98int nand_verify(struct mtd_info *mtd, loff_t ofs, size_t len, u_char *buf);
Stefan Roese2255b2d2006-10-10 12:36:02 +020099
100#define NAND_LOCK_STATUS_TIGHT 0x01
Stefan Roese2255b2d2006-10-10 12:36:02 +0200101#define NAND_LOCK_STATUS_UNLOCK 0x04
102
Scott Wood151c06e2016-05-30 13:57:54 -0500103int nand_lock(struct mtd_info *mtd, int tight);
104int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length,
105 int allexcept);
106int nand_get_lock_status(struct mtd_info *mtd, loff_t offset);
Stefan Roese2255b2d2006-10-10 12:36:02 +0200107
Dario Binacchi9f6a14c2020-05-27 13:56:20 +0200108u32 nand_spl_adjust_offset(u32 sector, u32 offs);
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400109int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst);
Thomas Gleixnere1a89e92016-07-12 20:28:10 +0200110int nand_spl_read_block(int block, int offset, int len, void *dst);
Simon Schwarzbb085b82011-09-14 15:29:26 -0400111void nand_deselect(void);
112
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113#ifdef CONFIG_SYS_NAND_SELECT_DEVICE
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200114void board_nand_select_device(struct nand_chip *nand, int chip);
115#endif
116
Scott Woode4c09502008-06-30 14:13:28 -0500117__attribute__((noreturn)) void nand_boot(void);
118
Ben Gardinerc9f73512010-07-05 13:27:07 -0400119#ifdef CONFIG_ENV_OFFSET_OOB
120#define ENV_OOB_MARKER 0x30425645 /*"EVB0" in little-endian -- offset is stored
121 as block number*/
122#define ENV_OOB_MARKER_OLD 0x30564e45 /*"ENV0" in little-endian -- offset is
123 stored as byte number */
124#define ENV_OFFSET_SIZE 8
Scott Wood151c06e2016-05-30 13:57:54 -0500125int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result);
Ben Gardinerc9f73512010-07-05 13:27:07 -0400126#endif
Heiko Schocher4dfd3602014-10-31 08:31:02 +0100127int spl_nand_erase_one(int block, int page);
Boris Brezillon4ccae812016-06-15 21:09:23 +0200128
129/* platform specific init functions */
130void sunxi_nand_init(void);
Mugunthan V N2afc7412017-01-23 16:04:34 -0600131
Mugunthan V Nad92dff2017-06-26 19:12:51 -0500132/*
133 * get_nand_dev_by_index - Get the nand info based in index.
134 *
135 * @dev - index to the nand device.
136 *
137 * returns pointer to the nand device info structure or NULL on failure.
138 */
139struct mtd_info *get_nand_dev_by_index(int dev);
140
Mugunthan V N2afc7412017-01-23 16:04:34 -0600141#endif /* _NAND_H_ */