Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Overview: |
| 3 | * Platform independend driver for NDFC (NanD Flash Controller) |
Stefan Roese | 5d841fa | 2009-05-20 10:58:01 +0200 | [diff] [blame] | 4 | * integrated into IBM/AMCC PPC4xx cores |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 5 | * |
Stefan Roese | 5d841fa | 2009-05-20 10:58:01 +0200 | [diff] [blame] | 6 | * (C) Copyright 2006-2009 |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 7 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 8 | * |
| 9 | * Based on original work by |
| 10 | * Thomas Gleixner |
| 11 | * Copyright 2006 IBM |
| 12 | * |
| 13 | * See file CREDITS for list of people who contributed to this |
| 14 | * project. |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or |
| 17 | * modify it under the terms of the GNU General Public License as |
| 18 | * published by the Free Software Foundation; either version 2 of |
| 19 | * the License, or (at your option) any later version. |
| 20 | * |
| 21 | * This program is distributed in the hope that it will be useful, |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | * GNU General Public License for more details. |
| 25 | * |
| 26 | * You should have received a copy of the GNU General Public License |
| 27 | * along with this program; if not, write to the Free Software |
| 28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 29 | * MA 02111-1307 USA |
| 30 | */ |
| 31 | |
| 32 | #include <common.h> |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 33 | #include <nand.h> |
| 34 | #include <linux/mtd/ndfc.h> |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 35 | #include <linux/mtd/nand_ecc.h> |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 36 | #include <asm/processor.h> |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 37 | #include <asm/io.h> |
Stefan Roese | 6f3dfc1 | 2007-05-22 12:46:10 +0200 | [diff] [blame] | 38 | #include <ppc4xx.h> |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 39 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 40 | /* |
| 41 | * We need to store the info, which chip-select (CS) is used for the |
| 42 | * chip number. For example on Sequoia NAND chip #0 uses |
| 43 | * CS #3. |
| 44 | */ |
| 45 | static int ndfc_cs[NDFC_MAX_BANKS]; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 46 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 47 | static void ndfc_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 48 | { |
William Juul | 5e1dae5 | 2007-11-09 13:32:30 +0100 | [diff] [blame] | 49 | struct nand_chip *this = mtd->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 50 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 51 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 52 | if (cmd == NAND_CMD_NONE) |
| 53 | return; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 54 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 55 | if (ctrl & NAND_CLE) |
| 56 | out_8((u8 *)(base + NDFC_CMD), cmd & 0xFF); |
| 57 | else |
| 58 | out_8((u8 *)(base + NDFC_ALE), cmd & 0xFF); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | static int ndfc_dev_ready(struct mtd_info *mtdinfo) |
| 62 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 63 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 64 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 65 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 66 | return (in_be32((u32 *)(base + NDFC_STAT)) & NDFC_STAT_IS_READY); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 67 | } |
| 68 | |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 69 | static void ndfc_enable_hwecc(struct mtd_info *mtdinfo, int mode) |
| 70 | { |
| 71 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 72 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 73 | u32 ccr; |
| 74 | |
| 75 | ccr = in_be32((u32 *)(base + NDFC_CCR)); |
| 76 | ccr |= NDFC_CCR_RESET_ECC; |
| 77 | out_be32((u32 *)(base + NDFC_CCR), ccr); |
| 78 | } |
| 79 | |
| 80 | static int ndfc_calculate_ecc(struct mtd_info *mtdinfo, |
| 81 | const u_char *dat, u_char *ecc_code) |
| 82 | { |
| 83 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 84 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 85 | u32 ecc; |
| 86 | u8 *p = (u8 *)&ecc; |
| 87 | |
| 88 | ecc = in_be32((u32 *)(base + NDFC_ECC)); |
| 89 | |
| 90 | /* The NDFC uses Smart Media (SMC) bytes order |
| 91 | */ |
Feng Kan | 68e7456 | 2009-08-21 10:59:42 -0700 | [diff] [blame] | 92 | ecc_code[0] = p[1]; |
| 93 | ecc_code[1] = p[2]; |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 94 | ecc_code[2] = p[3]; |
| 95 | |
| 96 | return 0; |
| 97 | } |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * Speedups for buffer read/write/verify |
| 101 | * |
| 102 | * NDFC allows 32bit read/write of data. So we can speed up the buffer |
| 103 | * functions. No further checking, as nand_base will always read/write |
| 104 | * page aligned. |
| 105 | */ |
| 106 | static void ndfc_read_buf(struct mtd_info *mtdinfo, uint8_t *buf, int len) |
| 107 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 108 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 109 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 110 | uint32_t *p = (uint32_t *) buf; |
| 111 | |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 112 | for (;len > 0; len -= 4) |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 113 | *p++ = in_be32((u32 *)(base + NDFC_DATA)); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 116 | #ifndef CONFIG_NAND_SPL |
| 117 | /* |
| 118 | * Don't use these speedup functions in NAND boot image, since the image |
| 119 | * has to fit into 4kByte. |
| 120 | */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 121 | static void ndfc_write_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len) |
| 122 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 123 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 124 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 125 | uint32_t *p = (uint32_t *) buf; |
| 126 | |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 127 | for (; len > 0; len -= 4) |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 128 | out_be32((u32 *)(base + NDFC_DATA), *p++); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | static int ndfc_verify_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len) |
| 132 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 133 | struct nand_chip *this = mtdinfo->priv; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 134 | ulong base = (ulong) this->IO_ADDR_W & 0xffffff00; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 135 | uint32_t *p = (uint32_t *) buf; |
| 136 | |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 137 | for (; len > 0; len -= 4) |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 138 | if (*p++ != in_be32((u32 *)(base + NDFC_DATA))) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 139 | return -1; |
| 140 | |
| 141 | return 0; |
| 142 | } |
| 143 | #endif /* #ifndef CONFIG_NAND_SPL */ |
| 144 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | #ifndef CONFIG_SYS_NAND_BCR |
| 146 | #define CONFIG_SYS_NAND_BCR 0x80002222 |
Wolfgang Ocker | 52aef8f | 2008-08-26 19:55:23 +0200 | [diff] [blame] | 147 | #endif |
| 148 | |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 149 | void board_nand_select_device(struct nand_chip *nand, int chip) |
| 150 | { |
Stefan Roese | 7ade0c6 | 2006-10-24 18:06:48 +0200 | [diff] [blame] | 151 | /* |
| 152 | * Don't use "chip" to address the NAND device, |
| 153 | * generate the cs from the address where it is encoded. |
| 154 | */ |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 155 | ulong base = (ulong)nand->IO_ADDR_W & 0xffffff00; |
| 156 | int cs = ndfc_cs[chip]; |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 157 | |
| 158 | /* Set NandFlash Core Configuration Register */ |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 159 | /* 1 col x 2 rows */ |
| 160 | out_be32((u32 *)(base + NDFC_CCR), 0x00000000 | (cs << 24)); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 161 | out_be32((u32 *)(base + NDFC_BCFG0 + (cs << 2)), CONFIG_SYS_NAND_BCR); |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 162 | } |
| 163 | |
Stefan Roese | c2b4b2e | 2008-08-29 11:56:49 +0200 | [diff] [blame] | 164 | static void ndfc_select_chip(struct mtd_info *mtd, int chip) |
| 165 | { |
| 166 | /* |
| 167 | * Nothing to do here! |
| 168 | */ |
| 169 | } |
| 170 | |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 171 | int board_nand_init(struct nand_chip *nand) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 172 | { |
Stefan Roese | 7ade0c6 | 2006-10-24 18:06:48 +0200 | [diff] [blame] | 173 | int cs = (ulong)nand->IO_ADDR_W & 0x00000003; |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 174 | ulong base = (ulong)nand->IO_ADDR_W & 0xffffff00; |
| 175 | static int chip = 0; |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 176 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 177 | /* |
| 178 | * Save chip-select for this chip # |
| 179 | */ |
| 180 | ndfc_cs[chip] = cs; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 181 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 182 | /* |
| 183 | * Select required NAND chip in NDFC |
| 184 | */ |
| 185 | board_nand_select_device(nand, chip); |
| 186 | |
| 187 | nand->IO_ADDR_R = (void __iomem *)(base + NDFC_DATA); |
| 188 | nand->IO_ADDR_W = (void __iomem *)(base + NDFC_DATA); |
| 189 | nand->cmd_ctrl = ndfc_hwcontrol; |
| 190 | nand->chip_delay = 50; |
| 191 | nand->read_buf = ndfc_read_buf; |
| 192 | nand->dev_ready = ndfc_dev_ready; |
William Juul | 5e1dae5 | 2007-11-09 13:32:30 +0100 | [diff] [blame] | 193 | nand->ecc.correct = nand_correct_data; |
| 194 | nand->ecc.hwctl = ndfc_enable_hwecc; |
| 195 | nand->ecc.calculate = ndfc_calculate_ecc; |
| 196 | nand->ecc.mode = NAND_ECC_HW; |
| 197 | nand->ecc.size = 256; |
| 198 | nand->ecc.bytes = 3; |
Stefan Roese | c2b4b2e | 2008-08-29 11:56:49 +0200 | [diff] [blame] | 199 | nand->select_chip = ndfc_select_chip; |
Stefan Roese | 91da09c | 2007-06-01 15:15:12 +0200 | [diff] [blame] | 200 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 201 | #ifndef CONFIG_NAND_SPL |
| 202 | nand->write_buf = ndfc_write_buf; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 203 | nand->verify_buf = ndfc_verify_buf; |
| 204 | #else |
| 205 | /* |
| 206 | * Setup EBC (CS0 only right now) |
| 207 | */ |
Stefan Roese | 6f3dfc1 | 2007-05-22 12:46:10 +0200 | [diff] [blame] | 208 | mtebc(EBC0_CFG, 0xb8400000); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 209 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 210 | mtebc(PB0CR, CONFIG_SYS_EBC_PB0CR); |
| 211 | mtebc(PB0AP, CONFIG_SYS_EBC_PB0AP); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 212 | #endif |
| 213 | |
Stefan Roese | 3df2ece | 2008-01-05 16:47:58 +0100 | [diff] [blame] | 214 | chip++; |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 215 | |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 216 | return 0; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 217 | } |