blob: bc85005b2af28429898691143ca2a13ee4e2da0b [file] [log] [blame]
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001/*
2 * (C) Copyright 2005
3 * 2N Telekomunikace, a.s. <www.2n.cz>
4 * Ladislav Michl <michl@2n.cz>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010026#ifdef CONFIG_NEW_NAND_CODE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020027#if (CONFIG_COMMANDS & CFG_CMD_NAND)
28
29#include <nand.h>
30
31#ifndef CFG_NAND_BASE_LIST
32#define CFG_NAND_BASE_LIST { CFG_NAND_BASE }
33#endif
34
35int nand_curr_device = -1;
36nand_info_t nand_info[CFG_MAX_NAND_DEVICE];
37
38static struct nand_chip nand_chip[CFG_MAX_NAND_DEVICE];
39static ulong base_address[CFG_MAX_NAND_DEVICE] = CFG_NAND_BASE_LIST;
40
41static const char default_nand_name[] = "nand";
42
43extern void board_nand_init(struct nand_chip *nand);
44
45static void nand_init_chip(struct mtd_info *mtd, struct nand_chip *nand,
46 ulong base_addr)
47{
48 mtd->priv = nand;
49
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010050 nand->IO_ADDR_R = nand->IO_ADDR_W = (void __iomem *)base_addr;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020051 board_nand_init(nand);
52
53 if (nand_scan(mtd, 1) == 0) {
54 if (!mtd->name)
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010055 mtd->name = (char *)default_nand_name;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020056 } else
57 mtd->name = NULL;
58
59}
60
61void nand_init(void)
62{
63 int i;
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010064 unsigned int size = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020065 for (i = 0; i < CFG_MAX_NAND_DEVICE; i++) {
66 nand_init_chip(&nand_info[i], &nand_chip[i], base_address[i]);
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010067 size += nand_info[i].size;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020068 if (nand_curr_device == -1)
69 nand_curr_device = i;
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010070}
71 printf("%lu MiB\n", size / (1024 * 1024));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020072}
73
74#endif
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +010075#endif /* CONFIG_NEW_NAND_CODE */
76