Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1 | /* |
| 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> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 25 | #include <nand.h> |
| 26 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 27 | #ifndef CONFIG_SYS_NAND_BASE_LIST |
| 28 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 29 | #endif |
| 30 | |
Valeriy Glushkov | ad09ab2 | 2009-01-19 16:32:59 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 33 | int nand_curr_device = -1; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | nand_info_t nand_info[CONFIG_SYS_MAX_NAND_DEVICE]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 35 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 36 | static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE]; |
| 37 | static ulong base_address[CONFIG_SYS_MAX_NAND_DEVICE] = CONFIG_SYS_NAND_BASE_LIST; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 38 | |
| 39 | static const char default_nand_name[] = "nand"; |
Stefan Roese | dbe29e3 | 2009-04-24 15:59:35 +0200 | [diff] [blame] | 40 | static __attribute__((unused)) char dev_name[CONFIG_SYS_MAX_NAND_DEVICE][8]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 41 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 42 | static void nand_init_chip(struct mtd_info *mtd, struct nand_chip *nand, |
| 43 | ulong base_addr) |
| 44 | { |
Wolfgang Grandegger | 672ed2a | 2009-02-11 18:38:20 +0100 | [diff] [blame] | 45 | int maxchips = CONFIG_SYS_NAND_MAX_CHIPS; |
Stefan Roese | dbe29e3 | 2009-04-24 15:59:35 +0200 | [diff] [blame] | 46 | int __attribute__((unused)) i = 0; |
Wolfgang Grandegger | 672ed2a | 2009-02-11 18:38:20 +0100 | [diff] [blame] | 47 | |
| 48 | if (maxchips < 1) |
| 49 | maxchips = 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 50 | mtd->priv = nand; |
| 51 | |
Bartlomiej Sieka | 038ccac | 2006-02-24 09:37:22 +0100 | [diff] [blame] | 52 | nand->IO_ADDR_R = nand->IO_ADDR_W = (void __iomem *)base_addr; |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 53 | if (board_nand_init(nand) == 0) { |
Wolfgang Grandegger | 672ed2a | 2009-02-11 18:38:20 +0100 | [diff] [blame] | 54 | if (nand_scan(mtd, maxchips) == 0) { |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 55 | if (!mtd->name) |
| 56 | mtd->name = (char *)default_nand_name; |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 57 | #ifndef CONFIG_RELOC_FIXUP_WORKS |
Valeriy Glushkov | ad09ab2 | 2009-01-19 16:32:59 +0200 | [diff] [blame] | 58 | else |
| 59 | mtd->name += gd->reloc_off; |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 60 | #endif |
Stefan Roese | dbe29e3 | 2009-04-24 15:59:35 +0200 | [diff] [blame] | 61 | |
Stefan Roese | d558107 | 2009-05-12 14:31:18 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_MTD_DEVICE |
Stefan Roese | dbe29e3 | 2009-04-24 15:59:35 +0200 | [diff] [blame] | 63 | /* |
| 64 | * Add MTD device so that we can reference it later |
| 65 | * via the mtdcore infrastructure (e.g. ubi). |
| 66 | */ |
| 67 | sprintf(dev_name[i], "nand%d", i); |
| 68 | mtd->name = dev_name[i++]; |
| 69 | add_mtd_device(mtd); |
| 70 | #endif |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 71 | } else |
| 72 | mtd->name = NULL; |
| 73 | } else { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 74 | mtd->name = NULL; |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 75 | mtd->size = 0; |
| 76 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 77 | |
| 78 | } |
| 79 | |
| 80 | void nand_init(void) |
| 81 | { |
| 82 | int i; |
Bartlomiej Sieka | 038ccac | 2006-02-24 09:37:22 +0100 | [diff] [blame] | 83 | unsigned int size = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 85 | nand_init_chip(&nand_info[i], &nand_chip[i], base_address[i]); |
Jason Jin | fecb5ad | 2008-09-19 17:32:49 +0800 | [diff] [blame] | 86 | size += nand_info[i].size / 1024; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 87 | if (nand_curr_device == -1) |
| 88 | nand_curr_device = i; |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 89 | } |
Jason Jin | fecb5ad | 2008-09-19 17:32:49 +0800 | [diff] [blame] | 90 | printf("%u MiB\n", size / 1024); |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 91 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | #ifdef CONFIG_SYS_NAND_SELECT_DEVICE |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 93 | /* |
| 94 | * Select the chip in the board/cpu specific driver |
| 95 | */ |
| 96 | board_nand_select_device(nand_info[nand_curr_device].priv, nand_curr_device); |
| 97 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 98 | } |