blob: d4712629d9deabacdc2ad9750c44c5c702597819 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Rini037e2e32011-11-18 12:48:07 +00002/*
3 * (C) Copyright 2011
4 * Texas Instruments, <www.ti.com>
5 *
6 * Author :
7 * Tom Rini <trini@ti.com>
8 *
9 * Initial Code from:
10 * Richard Woodruff <r-woodruff2@ti.com>
11 * Jian Zhang <jzhang@ti.com>
Tom Rini037e2e32011-11-18 12:48:07 +000012 */
13
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020014#include <jffs2/load_kernel.h>
Masahiro Yamada2b7a8732017-11-30 13:45:24 +090015#include <linux/mtd/rawnand.h>
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020016#include <linux/mtd/omap_gpmc.h>
Tom Rini037e2e32011-11-18 12:48:07 +000017#include <asm/io.h>
18#include <asm/arch/sys_proto.h>
19#include <asm/arch/mem.h>
20
Tom Rini037e2e32011-11-18 12:48:07 +000021/*
22 * Many boards will want to know the results of the NAND_CMD_READID command
23 * in order to decide what to do about DDR initialization. This function
24 * allows us to do that very early and to pass those results back to the
25 * board so it can make whatever decisions need to be made.
26 */
Ladislav Michl4852b352016-07-12 20:28:15 +020027int identify_nand_chip(int *mfr, int *id)
Tom Rini037e2e32011-11-18 12:48:07 +000028{
Ladislav Michl4852b352016-07-12 20:28:15 +020029 int loops = 1000;
30
Tom Rini037e2e32011-11-18 12:48:07 +000031 /* Make sure that we have setup GPMC for NAND correctly. */
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020032 set_gpmc_cs0(MTD_DEV_TYPE_NAND);
Tom Rini037e2e32011-11-18 12:48:07 +000033
34 sdelay(2000);
35
36 /* Issue a RESET and then READID */
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020037 writeb(NAND_CMD_RESET, &gpmc_cfg->cs[0].nand_cmd);
38 writeb(NAND_CMD_STATUS, &gpmc_cfg->cs[0].nand_cmd);
39 while ((readl(&gpmc_cfg->cs[0].nand_dat) & NAND_STATUS_READY)
40 != NAND_STATUS_READY) {
Ladislav Michl4852b352016-07-12 20:28:15 +020041 sdelay(100);
42 if (--loops == 0)
43 return 1;
44 }
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020045 writeb(NAND_CMD_READID, &gpmc_cfg->cs[0].nand_cmd);
Tom Rini037e2e32011-11-18 12:48:07 +000046
47 /* Set the address to read to 0x0 */
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020048 writeb(0x0, &gpmc_cfg->cs[0].nand_adr);
Tom Rini037e2e32011-11-18 12:48:07 +000049
50 /* Read off the manufacturer and device id. */
Ladislav Michlfe4bc3d2016-07-12 20:28:18 +020051 *mfr = readb(&gpmc_cfg->cs[0].nand_dat);
52 *id = readb(&gpmc_cfg->cs[0].nand_dat);
Ladislav Michl4852b352016-07-12 20:28:15 +020053
54 return 0;
Tom Rini037e2e32011-11-18 12:48:07 +000055}