Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 OpenMoko, Inc. |
| 3 | * Author: Harald Welte <laforge@openmoko.org> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
| 7 | * published by the Free Software Foundation; either version 2 of |
| 8 | * the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 18 | * MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
| 22 | |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 23 | #include <nand.h> |
kevin.morfitt@fearnside-systems.co.uk | ac67804 | 2009-11-17 18:30:34 +0900 | [diff] [blame] | 24 | #include <asm/arch/s3c24x0_cpu.h> |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 25 | #include <asm/io.h> |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 26 | |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 27 | #define S3C2410_NFCONF_EN (1<<15) |
| 28 | #define S3C2410_NFCONF_512BYTE (1<<14) |
| 29 | #define S3C2410_NFCONF_4STEP (1<<13) |
| 30 | #define S3C2410_NFCONF_INITECC (1<<12) |
| 31 | #define S3C2410_NFCONF_nFCE (1<<11) |
| 32 | #define S3C2410_NFCONF_TACLS(x) ((x)<<8) |
| 33 | #define S3C2410_NFCONF_TWRPH0(x) ((x)<<4) |
| 34 | #define S3C2410_NFCONF_TWRPH1(x) ((x)<<0) |
| 35 | |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 36 | #define S3C2410_ADDR_NALE 4 |
| 37 | #define S3C2410_ADDR_NCLE 8 |
| 38 | |
Hui.Tang | 5e1ded5 | 2009-11-18 16:24:04 +0800 | [diff] [blame] | 39 | #ifdef CONFIG_NAND_SPL |
| 40 | |
| 41 | /* in the early stage of NAND flash booting, printf() is not available */ |
| 42 | #define printf(fmt, args...) |
| 43 | |
| 44 | static void nand_read_buf(struct mtd_info *mtd, u_char *buf, int len) |
| 45 | { |
| 46 | int i; |
| 47 | struct nand_chip *this = mtd->priv; |
| 48 | |
| 49 | for (i = 0; i < len; i++) |
| 50 | buf[i] = readb(this->IO_ADDR_R); |
| 51 | } |
| 52 | #endif |
| 53 | |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 54 | static void s3c2410_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl) |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 55 | { |
| 56 | struct nand_chip *chip = mtd->priv; |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 57 | struct s3c2410_nand *nand = s3c2410_get_base_nand(); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 58 | |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 59 | debugX(1, "hwcontrol(): 0x%02x 0x%02x\n", cmd, ctrl); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 60 | |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 61 | if (ctrl & NAND_CTRL_CHANGE) { |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 62 | ulong IO_ADDR_W = (ulong)nand; |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 63 | |
| 64 | if (!(ctrl & NAND_CLE)) |
| 65 | IO_ADDR_W |= S3C2410_ADDR_NCLE; |
| 66 | if (!(ctrl & NAND_ALE)) |
| 67 | IO_ADDR_W |= S3C2410_ADDR_NALE; |
| 68 | |
| 69 | chip->IO_ADDR_W = (void *)IO_ADDR_W; |
| 70 | |
| 71 | if (ctrl & NAND_NCE) |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 72 | writel(readl(&nand->nfconf) & ~S3C2410_NFCONF_nFCE, |
| 73 | &nand->nfconf); |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 74 | else |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 75 | writel(readl(&nand->nfconf) | S3C2410_NFCONF_nFCE, |
| 76 | &nand->nfconf); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 77 | } |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 78 | |
| 79 | if (cmd != NAND_CMD_NONE) |
| 80 | writeb(cmd, chip->IO_ADDR_W); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static int s3c2410_dev_ready(struct mtd_info *mtd) |
| 84 | { |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 85 | struct s3c2410_nand *nand = s3c2410_get_base_nand(); |
| 86 | debugX(1, "dev_ready\n"); |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 87 | return readl(&nand->nfstat) & 0x01; |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | #ifdef CONFIG_S3C2410_NAND_HWECC |
| 91 | void s3c2410_nand_enable_hwecc(struct mtd_info *mtd, int mode) |
| 92 | { |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 93 | struct s3c2410_nand *nand = s3c2410_get_base_nand(); |
| 94 | debugX(1, "s3c2410_nand_enable_hwecc(%p, %d)\n", mtd, mode); |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 95 | writel(readl(&nand->nfconf) | S3C2410_NFCONF_INITECC, &nand->nfconf); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static int s3c2410_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, |
| 99 | u_char *ecc_code) |
| 100 | { |
Hui.Tang | 5e1ded5 | 2009-11-18 16:24:04 +0800 | [diff] [blame] | 101 | struct s3c2410_nand *nand = s3c2410_get_base_nand(); |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 102 | ecc_code[0] = readb(&nand->nfecc); |
| 103 | ecc_code[1] = readb(&nand->nfecc + 1); |
| 104 | ecc_code[2] = readb(&nand->nfecc + 2); |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 105 | debugX(1, "s3c2410_nand_calculate_hwecc(%p,): 0x%02x 0x%02x 0x%02x\n", |
| 106 | mtd , ecc_code[0], ecc_code[1], ecc_code[2]); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static int s3c2410_nand_correct_data(struct mtd_info *mtd, u_char *dat, |
| 112 | u_char *read_ecc, u_char *calc_ecc) |
| 113 | { |
| 114 | if (read_ecc[0] == calc_ecc[0] && |
| 115 | read_ecc[1] == calc_ecc[1] && |
| 116 | read_ecc[2] == calc_ecc[2]) |
| 117 | return 0; |
| 118 | |
| 119 | printf("s3c2410_nand_correct_data: not implemented\n"); |
| 120 | return -1; |
| 121 | } |
| 122 | #endif |
| 123 | |
| 124 | int board_nand_init(struct nand_chip *nand) |
| 125 | { |
| 126 | u_int32_t cfg; |
| 127 | u_int8_t tacls, twrph0, twrph1; |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 128 | struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power(); |
| 129 | struct s3c2410_nand *nand_reg = s3c2410_get_base_nand(); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 130 | |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 131 | debugX(1, "board_nand_init()\n"); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 132 | |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 133 | writel(readl(&clk_power->clkcon) | (1 << 4), &clk_power->clkcon); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 134 | |
| 135 | /* initialize hardware */ |
David Müller (ELSOFT AG) | 2111cb4 | 2010-11-29 05:49:19 +0000 | [diff] [blame] | 136 | #if defined(CONFIG_S3C24XX_CUSTOM_NAND_TIMING) |
| 137 | tacls = CONFIG_S3C24XX_TACLS; |
| 138 | twrph0 = CONFIG_S3C24XX_TWRPH0; |
| 139 | twrph1 = CONFIG_S3C24XX_TWRPH1; |
| 140 | #else |
| 141 | tacls = 4; |
| 142 | twrph0 = 8; |
| 143 | twrph1 = 8; |
| 144 | #endif |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 145 | |
| 146 | cfg = S3C2410_NFCONF_EN; |
| 147 | cfg |= S3C2410_NFCONF_TACLS(tacls - 1); |
| 148 | cfg |= S3C2410_NFCONF_TWRPH0(twrph0 - 1); |
| 149 | cfg |= S3C2410_NFCONF_TWRPH1(twrph1 - 1); |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 150 | writel(cfg, &nand_reg->nfconf); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 151 | |
| 152 | /* initialize nand_chip data structure */ |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 153 | nand->IO_ADDR_R = (void *)&nand_reg->nfdata; |
| 154 | nand->IO_ADDR_W = (void *)&nand_reg->nfdata; |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 155 | |
Hui.Tang | 5e1ded5 | 2009-11-18 16:24:04 +0800 | [diff] [blame] | 156 | nand->select_chip = NULL; |
| 157 | |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 158 | /* read_buf and write_buf are default */ |
| 159 | /* read_byte and write_byte are default */ |
Hui.Tang | 5e1ded5 | 2009-11-18 16:24:04 +0800 | [diff] [blame] | 160 | #ifdef CONFIG_NAND_SPL |
| 161 | nand->read_buf = nand_read_buf; |
| 162 | #endif |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 163 | |
| 164 | /* hwcontrol always must be implemented */ |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 165 | nand->cmd_ctrl = s3c2410_hwcontrol; |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 166 | |
| 167 | nand->dev_ready = s3c2410_dev_ready; |
| 168 | |
| 169 | #ifdef CONFIG_S3C2410_NAND_HWECC |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 170 | nand->ecc.hwctl = s3c2410_nand_enable_hwecc; |
| 171 | nand->ecc.calculate = s3c2410_nand_calculate_ecc; |
| 172 | nand->ecc.correct = s3c2410_nand_correct_data; |
Hui.Tang | 5e1ded5 | 2009-11-18 16:24:04 +0800 | [diff] [blame] | 173 | nand->ecc.mode = NAND_ECC_HW; |
| 174 | nand->ecc.size = CONFIG_SYS_NAND_ECCSIZE; |
| 175 | nand->ecc.bytes = CONFIG_SYS_NAND_ECCBYTES; |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 176 | #else |
Scott Wood | 1a23a19 | 2008-08-13 17:04:30 -0500 | [diff] [blame] | 177 | nand->ecc.mode = NAND_ECC_SOFT; |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 178 | #endif |
| 179 | |
| 180 | #ifdef CONFIG_S3C2410_NAND_BBT |
| 181 | nand->options = NAND_USE_FLASH_BBT; |
| 182 | #else |
| 183 | nand->options = 0; |
| 184 | #endif |
| 185 | |
kevin.morfitt@fearnside-systems.co.uk | 3d1988a | 2009-10-10 13:34:09 +0900 | [diff] [blame] | 186 | debugX(1, "end of nand_init\n"); |
Harald Welte | 1615877 | 2007-12-19 15:10:52 +0100 | [diff] [blame] | 187 | |
| 188 | return 0; |
| 189 | } |