void __iomem *base;
void __iomem *regs;
int status_request;
- int pagesize_2k;
struct clk *clk;
int clk_act;
int irq;
wait_op_done(host, TROP_US_DELAY, islast);
}
-static void send_page(struct mxc_nand_host *host, unsigned int ops)
+static void send_page(struct mtd_info *mtd, unsigned int ops)
{
+ struct nand_chip *nand_chip = mtd->priv;
+ struct mxc_nand_host *host = nand_chip->priv;
int bufs, i;
- if (host->pagesize_2k)
+ if (mtd->writesize > 512)
bufs = 4;
else
bufs = 1;
* the full page.
*/
send_addr(host, 0, page_addr == -1);
- if (host->pagesize_2k)
+ if (mtd->writesize > 512)
/* another col addr cycle for 2k page */
send_addr(host, 0, false);
}
/* paddr_0 - p_addr_7 */
send_addr(host, (page_addr & 0xff), false);
- if (host->pagesize_2k) {
+ if (mtd->writesize > 512) {
if (mtd->size >= 0x10000000) {
/* paddr_8 - paddr_15 */
send_addr(host, (page_addr >> 8) & 0xff, false);
else
host->buf_start = column + mtd->writesize;
- if (host->pagesize_2k)
+ if (mtd->writesize > 512)
command = NAND_CMD_READ0; /* only READ0 is valid */
send_cmd(host, command, false);
mxc_do_addr_cycle(mtd, column, page_addr);
- if (host->pagesize_2k)
+ if (mtd->writesize > 512)
send_cmd(host, NAND_CMD_READSTART, true);
- send_page(host, NFC_OUTPUT);
+ send_page(mtd, NFC_OUTPUT);
memcpy(host->data_buf, host->main_area0, mtd->writesize);
copy_spare(mtd, true);
* pointer to spare area, we must write the whole page
* including OOB together.
*/
- if (host->pagesize_2k)
+ if (mtd->writesize > 512)
/* call ourself to read a page */
mxc_nand_command(mtd, NAND_CMD_READ0, 0,
page_addr);
host->buf_start = column;
/* Set program pointer to spare region */
- if (!host->pagesize_2k)
+ if (mtd->writesize == 512)
send_cmd(host, NAND_CMD_READOOB, false);
} else {
host->buf_start = column;
/* Set program pointer to page start */
- if (!host->pagesize_2k)
+ if (mtd->writesize == 512)
send_cmd(host, NAND_CMD_READ0, false);
}
case NAND_CMD_PAGEPROG:
memcpy(host->main_area0, host->data_buf, mtd->writesize);
copy_spare(mtd, false);
- send_page(host, NFC_INPUT);
+ send_page(mtd, NFC_INPUT);
send_cmd(host, command, true);
mxc_do_addr_cycle(mtd, column, page_addr);
break;
goto escan;
}
- if (mtd->writesize == 2048) {
- host->pagesize_2k = 1;
+ if (mtd->writesize == 2048)
this->ecc.layout = &nand_hw_eccoob_largepage;
- }
/* second phase scan */
if (nand_scan_tail(mtd)) {