]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/include/asm/arch-davinci/nand_defs.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / arch / arm / include / asm / arch-davinci / nand_defs.h
CommitLineData
c74b2108
SK
1/*
2 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
3 *
4 * Parts shamelesly stolen from Linux Kernel source tree.
5 *
6 * ------------------------------------------------------------
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
c74b2108
SK
9 */
10#ifndef _NAND_DEFS_H_
11#define _NAND_DEFS_H_
12
13#include <asm/arch/hardware.h>
14
95ae803a 15#ifdef CONFIG_SOC_DM646X
496863b2
SP
16#define MASK_CLE 0x80000
17#define MASK_ALE 0x40000
18#else
c74b2108 19#define MASK_CLE 0x10
0c168443 20#define MASK_ALE 0x08
496863b2 21#endif
c74b2108 22
34fa0706
EB
23#ifdef CONFIG_SYS_NAND_MASK_CLE
24#undef MASK_CLE
25#define MASK_CLE CONFIG_SYS_NAND_MASK_CLE
26#endif
27#ifdef CONFIG_SYS_NAND_MASK_ALE
28#undef MASK_ALE
29#define MASK_ALE CONFIG_SYS_NAND_MASK_ALE
30#endif
31
c74b2108
SK
32#define NAND_READ_START 0x00
33#define NAND_READ_END 0x30
34#define NAND_STATUS 0x70
35
154b5484
DB
36extern void davinci_nand_init(struct nand_chip *nand);
37
c74b2108 38#endif