Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 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 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | #if defined(CONFIG_SYS_NAND_BASE) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 27 | #include <nand.h> |
| 28 | #include <asm/errno.h> |
| 29 | #include <asm/io.h> |
| 30 | |
| 31 | static int state; |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 32 | static void sc_nand_write_byte(struct mtd_info *mtd, u_char byte); |
| 33 | static void sc_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len); |
| 34 | static u_char sc_nand_read_byte(struct mtd_info *mtd); |
| 35 | static u16 sc_nand_read_word(struct mtd_info *mtd); |
| 36 | static void sc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len); |
| 37 | static int sc_nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len); |
| 38 | static int sc_nand_device_ready(struct mtd_info *mtdinfo); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 39 | |
| 40 | #define FPGA_NAND_CMD_MASK (0x7 << 28) |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 41 | #define FPGA_NAND_CMD_COMMAND (0x0 << 28) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 42 | #define FPGA_NAND_CMD_ADDR (0x1 << 28) |
| 43 | #define FPGA_NAND_CMD_READ (0x2 << 28) |
| 44 | #define FPGA_NAND_CMD_WRITE (0x3 << 28) |
| 45 | #define FPGA_NAND_BUSY (0x1 << 15) |
| 46 | #define FPGA_NAND_ENABLE (0x1 << 31) |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 47 | #define FPGA_NAND_DATA_SHIFT 16 |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 48 | |
| 49 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 50 | * sc_nand_write_byte - write one byte to the chip |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 51 | * @mtd: MTD device structure |
| 52 | * @byte: pointer to data byte to write |
| 53 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 54 | static void sc_nand_write_byte(struct mtd_info *mtd, u_char byte) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 55 | { |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 56 | sc_nand_write_buf(mtd, (const uchar *)&byte, sizeof(byte)); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 60 | * sc_nand_write_buf - write buffer to chip |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 61 | * @mtd: MTD device structure |
| 62 | * @buf: data buffer |
| 63 | * @len: number of bytes to write |
| 64 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 65 | static void sc_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 66 | { |
| 67 | int i; |
| 68 | struct nand_chip *this = mtd->priv; |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 69 | |
| 70 | for (i = 0; i < len; i++) { |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 71 | out_be32(this->IO_ADDR_W, |
| 72 | state | (buf[i] << FPGA_NAND_DATA_SHIFT)); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 73 | } |
| 74 | } |
| 75 | |
| 76 | |
| 77 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 78 | * sc_nand_read_byte - read one byte from the chip |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 79 | * @mtd: MTD device structure |
| 80 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 81 | static u_char sc_nand_read_byte(struct mtd_info *mtd) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 82 | { |
| 83 | u8 byte; |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 84 | sc_nand_read_buf(mtd, (uchar *)&byte, sizeof(byte)); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 85 | return byte; |
| 86 | } |
| 87 | |
| 88 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 89 | * sc_nand_read_word - read one word from the chip |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 90 | * @mtd: MTD device structure |
| 91 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 92 | static u16 sc_nand_read_word(struct mtd_info *mtd) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 93 | { |
| 94 | u16 word; |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 95 | sc_nand_read_buf(mtd, (uchar *)&word, sizeof(word)); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 96 | return word; |
| 97 | } |
| 98 | |
| 99 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 100 | * sc_nand_read_buf - read chip data into buffer |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 101 | * @mtd: MTD device structure |
| 102 | * @buf: buffer to store date |
| 103 | * @len: number of bytes to read |
| 104 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 105 | static void sc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 106 | { |
| 107 | int i; |
| 108 | struct nand_chip *this = mtd->priv; |
| 109 | int val; |
| 110 | |
| 111 | val = (state & FPGA_NAND_ENABLE) | FPGA_NAND_CMD_READ; |
| 112 | |
| 113 | out_be32(this->IO_ADDR_W, val); |
| 114 | for (i = 0; i < len; i++) { |
| 115 | buf[i] = (in_be32(this->IO_ADDR_R) >> FPGA_NAND_DATA_SHIFT) & 0xff; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 120 | * sc_nand_verify_buf - Verify chip data against buffer |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 121 | * @mtd: MTD device structure |
| 122 | * @buf: buffer containing the data to compare |
| 123 | * @len: number of bytes to compare |
| 124 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 125 | static int sc_nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 126 | { |
| 127 | int i; |
| 128 | |
| 129 | for (i = 0; i < len; i++) { |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 130 | if (buf[i] != sc_nand_read_byte(mtd)); |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 131 | return -EFAULT; |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 132 | } |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 137 | * sc_nand_device_ready - Check the NAND device is ready for next command. |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 138 | * @mtd: MTD device structure |
| 139 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 140 | static int sc_nand_device_ready(struct mtd_info *mtdinfo) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 141 | { |
| 142 | struct nand_chip *this = mtdinfo->priv; |
| 143 | |
| 144 | if (in_be32(this->IO_ADDR_W) & FPGA_NAND_BUSY) |
| 145 | return 0; /* busy */ |
| 146 | return 1; |
| 147 | } |
| 148 | |
| 149 | /** |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 150 | * sc_nand_hwcontrol - NAND control functions wrapper. |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 151 | * @mtd: MTD device structure |
| 152 | * @cmd: Command |
| 153 | */ |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 154 | static void sc_nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl) |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 155 | { |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 156 | if (ctrl & NAND_CTRL_CHANGE) { |
| 157 | state &= ~(FPGA_NAND_CMD_MASK | FPGA_NAND_ENABLE); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 158 | |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 159 | switch (ctrl & (NAND_ALE | NAND_CLE)) { |
| 160 | case 0: |
| 161 | state |= FPGA_NAND_CMD_WRITE; |
| 162 | break; |
| 163 | |
| 164 | case NAND_ALE: |
| 165 | state |= FPGA_NAND_CMD_ADDR; |
| 166 | break; |
| 167 | |
| 168 | case NAND_CLE: |
| 169 | state |= FPGA_NAND_CMD_COMMAND; |
| 170 | break; |
| 171 | |
| 172 | default: |
| 173 | printf("%s: unknown ctrl %#x\n", __FUNCTION__, ctrl); |
| 174 | } |
| 175 | |
| 176 | if (ctrl & NAND_NCE) |
| 177 | state |= FPGA_NAND_ENABLE; |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 178 | } |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 179 | |
| 180 | if (cmd != NAND_CMD_NONE) |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 181 | sc_nand_write_byte(mtdinfo, cmd); |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | int board_nand_init(struct nand_chip *nand) |
| 185 | { |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 186 | nand->cmd_ctrl = sc_nand_hwcontrol; |
Scott Wood | 68cf19a | 2008-08-13 18:24:05 -0500 | [diff] [blame] | 187 | nand->ecc.mode = NAND_ECC_SOFT; |
Marek Vasut | 169de90 | 2011-10-04 00:56:09 +0200 | [diff] [blame] | 188 | nand->dev_ready = sc_nand_device_ready; |
| 189 | nand->read_byte = sc_nand_read_byte; |
| 190 | nand->read_word = sc_nand_read_word; |
| 191 | nand->write_buf = sc_nand_write_buf; |
| 192 | nand->read_buf = sc_nand_read_buf; |
| 193 | nand->verify_buf = sc_nand_verify_buf; |
Sergei Poselenov | fd51b0e | 2008-06-06 15:42:44 +0200 | [diff] [blame] | 194 | |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | #endif |