]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/nand.h
common: arm: davinci: Move header file out of common
[people/ms/u-boot.git] / include / nand.h
CommitLineData
932394ac
WD
1/*
2 * (C) Copyright 2005
3 * 2N Telekomunikace, a.s. <www.2n.cz>
4 * Ladislav Michl <michl@2n.cz>
5 *
5b8031cc 6 * SPDX-License-Identifier: GPL-2.0
932394ac
WD
7 */
8
9#ifndef _NAND_H_
10#define _NAND_H_
11
c1783474
SW
12#include <config.h>
13
14/*
15 * All boards using a given driver must convert to self-init
16 * at the same time, so do it here. When all drivers are
17 * converted, this will go away.
18 */
0b0b4f59
BS
19#ifdef CONFIG_SPL_BUILD
20#if defined(CONFIG_NAND_FSL_ELBC) || defined(CONFIG_NAND_FSL_IFC)
21#define CONFIG_SYS_NAND_SELF_INIT
22#endif
23#else
a1b81ab2
PK
24#if defined(CONFIG_NAND_FSL_ELBC) || defined(CONFIG_NAND_ATMEL)\
25 || defined(CONFIG_NAND_FSL_IFC)
c1783474
SW
26#define CONFIG_SYS_NAND_SELF_INIT
27#endif
0b0b4f59 28#endif
c1783474 29
9d2e3947 30extern void nand_init(void);
203db38a 31unsigned long nand_size(void);
9d2e3947 32
7b15e2bb 33#include <linux/compat.h>
932394ac
WD
34#include <linux/mtd/mtd.h>
35#include <linux/mtd/nand.h>
36
b616d9b0
SW
37int nand_mtd_to_devnum(struct mtd_info *mtd);
38
578931b3
SW
39#ifdef CONFIG_SYS_NAND_SELF_INIT
40void board_nand_init(void);
b616d9b0 41int nand_register(int devnum, struct mtd_info *mtd);
578931b3 42#else
69fb8be4 43extern int board_nand_init(struct nand_chip *nand);
578931b3 44#endif
69fb8be4 45
932394ac 46extern int nand_curr_device;
b616d9b0 47extern struct mtd_info *nand_info[];
932394ac 48
151c06ec
SW
49static inline int nand_read(struct mtd_info *info, loff_t ofs, size_t *len,
50 u_char *buf)
932394ac 51{
dfe64e2c 52 return mtd_read(info, ofs, *len, (size_t *)len, buf);
932394ac
WD
53}
54
151c06ec
SW
55static inline int nand_write(struct mtd_info *info, loff_t ofs, size_t *len,
56 u_char *buf)
932394ac 57{
dfe64e2c 58 return mtd_write(info, ofs, *len, (size_t *)len, buf);
932394ac
WD
59}
60
151c06ec 61static inline int nand_block_isbad(struct mtd_info *info, loff_t ofs)
932394ac 62{
dfe64e2c 63 return mtd_block_isbad(info, ofs);
932394ac
WD
64}
65
151c06ec 66static inline int nand_erase(struct mtd_info *info, loff_t off, size_t size)
932394ac 67{
8e9655f8
WD
68 struct erase_info instr;
69
70 instr.mtd = info;
71 instr.addr = off;
72 instr.len = size;
73 instr.callback = 0;
74
dfe64e2c 75 return mtd_erase(info, &instr);
932394ac
WD
76}
77
2255b2d2
SR
78
79/*****************************************************************************
80 * declarations from nand_util.c
81 ****************************************************************************/
82
cfa460ad 83typedef struct mtd_oob_ops mtd_oob_ops_t;
2255b2d2 84
2255b2d2 85struct nand_erase_options {
30486322
SW
86 loff_t length; /* number of bytes to erase */
87 loff_t offset; /* first address in NAND to erase */
2255b2d2
SR
88 int quiet; /* don't display progress messages */
89 int jffs2; /* if true: format for jffs2 usage
90 * (write appropriate cleanmarker blocks) */
91 int scrub; /* if true, really clean NAND by erasing
92 * bad blocks (UNSAFE) */
30486322
SW
93
94 /* Don't include skipped bad blocks in size to be erased */
95 int spread;
a67cc37e
HS
96 /* maximum size that actual may be in order to not exceed the buf */
97 loff_t lim;
2255b2d2
SR
98};
99
100typedef struct nand_erase_options nand_erase_options_t;
101
151c06ec 102int nand_read_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
c39d6a0e 103 size_t *actual, loff_t lim, u_char *buffer);
a6c9aa1f 104
004a1fdb
PT
105#define WITH_DROP_FFS (1 << 0) /* drop trailing all-0xff pages */
106#define WITH_WR_VERIFY (1 << 1) /* verify data was written correctly */
a6c9aa1f 107
151c06ec 108int nand_write_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length,
c39d6a0e 109 size_t *actual, loff_t lim, u_char *buffer, int flags);
151c06ec
SW
110int nand_erase_opts(struct mtd_info *mtd,
111 const nand_erase_options_t *opts);
112int nand_torture(struct mtd_info *mtd, loff_t offset);
113int nand_verify_page_oob(struct mtd_info *mtd, struct mtd_oob_ops *ops,
114 loff_t ofs);
115int nand_verify(struct mtd_info *mtd, loff_t ofs, size_t len, u_char *buf);
2255b2d2
SR
116
117#define NAND_LOCK_STATUS_TIGHT 0x01
2255b2d2
SR
118#define NAND_LOCK_STATUS_UNLOCK 0x04
119
151c06ec
SW
120int nand_lock(struct mtd_info *mtd, int tight);
121int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length,
122 int allexcept);
123int nand_get_lock_status(struct mtd_info *mtd, loff_t offset);
2255b2d2 124
12c2f1ee 125int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst);
e1a89e93 126int nand_spl_read_block(int block, int offset, int len, void *dst);
bb085b87
SS
127void nand_deselect(void);
128
6d0f6bcf 129#ifdef CONFIG_SYS_NAND_SELECT_DEVICE
43a2b0e7
SR
130void board_nand_select_device(struct nand_chip *nand, int chip);
131#endif
132
e4c09508
SW
133__attribute__((noreturn)) void nand_boot(void);
134
932394ac 135#endif
c9f7351b
BG
136
137#ifdef CONFIG_ENV_OFFSET_OOB
138#define ENV_OOB_MARKER 0x30425645 /*"EVB0" in little-endian -- offset is stored
139 as block number*/
140#define ENV_OOB_MARKER_OLD 0x30564e45 /*"ENV0" in little-endian -- offset is
141 stored as byte number */
142#define ENV_OFFSET_SIZE 8
151c06ec 143int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result);
c9f7351b 144#endif
4dfd3605 145int spl_nand_erase_one(int block, int page);
4ccae81c
BB
146
147/* platform specific init functions */
148void sunxi_nand_init(void);