1*83d290c5STom Rini // SPDX-License-Identifier: GPL-2.0+ 2983e3700STom Rini /* 3983e3700STom Rini * (C) Copyright 2011 4983e3700STom Rini * Texas Instruments, <www.ti.com> 5983e3700STom Rini * 6983e3700STom Rini * Author : 7983e3700STom Rini * Tom Rini <trini@ti.com> 8983e3700STom Rini * 9983e3700STom Rini * Initial Code from: 10983e3700STom Rini * Richard Woodruff <r-woodruff2@ti.com> 11983e3700STom Rini * Jian Zhang <jzhang@ti.com> 12983e3700STom Rini */ 13983e3700STom Rini 14983e3700STom Rini #include <common.h> 15983e3700STom Rini #include <jffs2/load_kernel.h> 166ae3900aSMasahiro Yamada #include <linux/mtd/rawnand.h> 17983e3700STom Rini #include <linux/mtd/omap_gpmc.h> 18983e3700STom Rini #include <asm/io.h> 19983e3700STom Rini #include <asm/arch/sys_proto.h> 20983e3700STom Rini #include <asm/arch/mem.h> 21983e3700STom Rini 22983e3700STom Rini /* 23983e3700STom Rini * Many boards will want to know the results of the NAND_CMD_READID command 24983e3700STom Rini * in order to decide what to do about DDR initialization. This function 25983e3700STom Rini * allows us to do that very early and to pass those results back to the 26983e3700STom Rini * board so it can make whatever decisions need to be made. 27983e3700STom Rini */ identify_nand_chip(int * mfr,int * id)28983e3700STom Riniint identify_nand_chip(int *mfr, int *id) 29983e3700STom Rini { 30983e3700STom Rini int loops = 1000; 31983e3700STom Rini 32983e3700STom Rini /* Make sure that we have setup GPMC for NAND correctly. */ 33983e3700STom Rini set_gpmc_cs0(MTD_DEV_TYPE_NAND); 34983e3700STom Rini 35983e3700STom Rini sdelay(2000); 36983e3700STom Rini 37983e3700STom Rini /* Issue a RESET and then READID */ 38983e3700STom Rini writeb(NAND_CMD_RESET, &gpmc_cfg->cs[0].nand_cmd); 39983e3700STom Rini writeb(NAND_CMD_STATUS, &gpmc_cfg->cs[0].nand_cmd); 40983e3700STom Rini while ((readl(&gpmc_cfg->cs[0].nand_dat) & NAND_STATUS_READY) 41983e3700STom Rini != NAND_STATUS_READY) { 42983e3700STom Rini sdelay(100); 43983e3700STom Rini if (--loops == 0) 44983e3700STom Rini return 1; 45983e3700STom Rini } 46983e3700STom Rini writeb(NAND_CMD_READID, &gpmc_cfg->cs[0].nand_cmd); 47983e3700STom Rini 48983e3700STom Rini /* Set the address to read to 0x0 */ 49983e3700STom Rini writeb(0x0, &gpmc_cfg->cs[0].nand_adr); 50983e3700STom Rini 51983e3700STom Rini /* Read off the manufacturer and device id. */ 52983e3700STom Rini *mfr = readb(&gpmc_cfg->cs[0].nand_dat); 53983e3700STom Rini *id = readb(&gpmc_cfg->cs[0].nand_dat); 54983e3700STom Rini 55983e3700STom Rini return 0; 56983e3700STom Rini } 57