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 | * |
Tom Rini | 5b8031c | 2016-01-14 22:05:13 -0500 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0 |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 10 | #include <nand.h> |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 11 | #include <errno.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 12 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 13 | #ifndef CONFIG_SYS_NAND_BASE_LIST |
| 14 | #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 15 | #endif |
| 16 | |
Valeriy Glushkov | ad09ab2 | 2009-01-19 16:32:59 +0200 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 19 | int nand_curr_device = -1; |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 20 | |
| 21 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 22 | nand_info_t nand_info[CONFIG_SYS_MAX_NAND_DEVICE]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 23 | |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 24 | #ifndef CONFIG_SYS_NAND_SELF_INIT |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 25 | static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE]; |
| 26 | static ulong base_address[CONFIG_SYS_MAX_NAND_DEVICE] = CONFIG_SYS_NAND_BASE_LIST; |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 27 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 28 | |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 29 | static char dev_name[CONFIG_SYS_MAX_NAND_DEVICE][8]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 30 | |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 31 | static unsigned long total_nand_size; /* in kiB */ |
| 32 | |
| 33 | /* Register an initialized NAND mtd device with the U-Boot NAND command. */ |
| 34 | int nand_register(int devnum) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 35 | { |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 36 | struct mtd_info *mtd; |
| 37 | |
| 38 | if (devnum >= CONFIG_SYS_MAX_NAND_DEVICE) |
| 39 | return -EINVAL; |
| 40 | |
| 41 | mtd = &nand_info[devnum]; |
| 42 | |
| 43 | sprintf(dev_name[devnum], "nand%d", devnum); |
| 44 | mtd->name = dev_name[devnum]; |
| 45 | |
| 46 | #ifdef CONFIG_MTD_DEVICE |
| 47 | /* |
| 48 | * Add MTD device so that we can reference it later |
| 49 | * via the mtdcore infrastructure (e.g. ubi). |
| 50 | */ |
| 51 | add_mtd_device(mtd); |
| 52 | #endif |
| 53 | |
| 54 | total_nand_size += mtd->size / 1024; |
| 55 | |
| 56 | if (nand_curr_device == -1) |
| 57 | nand_curr_device = devnum; |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | #ifndef CONFIG_SYS_NAND_SELF_INIT |
| 63 | static void nand_init_chip(int i) |
| 64 | { |
| 65 | struct mtd_info *mtd = &nand_info[i]; |
| 66 | struct nand_chip *nand = &nand_chip[i]; |
| 67 | ulong base_addr = base_address[i]; |
Wolfgang Grandegger | 672ed2a | 2009-02-11 18:38:20 +0100 | [diff] [blame] | 68 | int maxchips = CONFIG_SYS_NAND_MAX_CHIPS; |
| 69 | |
| 70 | if (maxchips < 1) |
| 71 | maxchips = 1; |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 72 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 73 | mtd->priv = nand; |
Bartlomiej Sieka | 038ccac | 2006-02-24 09:37:22 +0100 | [diff] [blame] | 74 | nand->IO_ADDR_R = nand->IO_ADDR_W = (void __iomem *)base_addr; |
Stefan Roese | dbe29e3 | 2009-04-24 15:59:35 +0200 | [diff] [blame] | 75 | |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 76 | if (board_nand_init(nand)) |
| 77 | return; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 78 | |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 79 | if (nand_scan(mtd, maxchips)) |
| 80 | return; |
| 81 | |
| 82 | nand_register(i); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 83 | } |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 84 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 85 | |
| 86 | void nand_init(void) |
| 87 | { |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 88 | #ifdef CONFIG_SYS_NAND_SELF_INIT |
| 89 | board_nand_init(); |
| 90 | #else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 91 | int i; |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 92 | |
| 93 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
| 94 | nand_init_chip(i); |
| 95 | #endif |
| 96 | |
| 97 | printf("%lu MiB\n", total_nand_size / 1024); |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 98 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 99 | #ifdef CONFIG_SYS_NAND_SELECT_DEVICE |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 100 | /* |
| 101 | * Select the chip in the board/cpu specific driver |
| 102 | */ |
| 103 | board_nand_select_device(nand_info[nand_curr_device].priv, nand_curr_device); |
| 104 | #endif |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 105 | } |