Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 2 | /* |
| 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 Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 15 | #include <jffs2/load_kernel.h> |
Masahiro Yamada | 2b7a873 | 2017-11-30 13:45:24 +0900 | [diff] [blame] | 16 | #include <linux/mtd/rawnand.h> |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 17 | #include <linux/mtd/omap_gpmc.h> |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <asm/arch/sys_proto.h> |
| 20 | #include <asm/arch/mem.h> |
| 21 | |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 22 | /* |
| 23 | * Many boards will want to know the results of the NAND_CMD_READID command |
| 24 | * in order to decide what to do about DDR initialization. This function |
| 25 | * allows us to do that very early and to pass those results back to the |
| 26 | * board so it can make whatever decisions need to be made. |
| 27 | */ |
Ladislav Michl | 4852b35 | 2016-07-12 20:28:15 +0200 | [diff] [blame] | 28 | int identify_nand_chip(int *mfr, int *id) |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 29 | { |
Ladislav Michl | 4852b35 | 2016-07-12 20:28:15 +0200 | [diff] [blame] | 30 | int loops = 1000; |
| 31 | |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 32 | /* Make sure that we have setup GPMC for NAND correctly. */ |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 33 | set_gpmc_cs0(MTD_DEV_TYPE_NAND); |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 34 | |
| 35 | sdelay(2000); |
| 36 | |
| 37 | /* Issue a RESET and then READID */ |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 38 | writeb(NAND_CMD_RESET, &gpmc_cfg->cs[0].nand_cmd); |
| 39 | writeb(NAND_CMD_STATUS, &gpmc_cfg->cs[0].nand_cmd); |
| 40 | while ((readl(&gpmc_cfg->cs[0].nand_dat) & NAND_STATUS_READY) |
| 41 | != NAND_STATUS_READY) { |
Ladislav Michl | 4852b35 | 2016-07-12 20:28:15 +0200 | [diff] [blame] | 42 | sdelay(100); |
| 43 | if (--loops == 0) |
| 44 | return 1; |
| 45 | } |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 46 | writeb(NAND_CMD_READID, &gpmc_cfg->cs[0].nand_cmd); |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 47 | |
| 48 | /* Set the address to read to 0x0 */ |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 49 | writeb(0x0, &gpmc_cfg->cs[0].nand_adr); |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 50 | |
| 51 | /* Read off the manufacturer and device id. */ |
Ladislav Michl | fe4bc3d | 2016-07-12 20:28:18 +0200 | [diff] [blame] | 52 | *mfr = readb(&gpmc_cfg->cs[0].nand_dat); |
| 53 | *id = readb(&gpmc_cfg->cs[0].nand_dat); |
Ladislav Michl | 4852b35 | 2016-07-12 20:28:15 +0200 | [diff] [blame] | 54 | |
| 55 | return 0; |
Tom Rini | 037e2e3 | 2011-11-18 12:48:07 +0000 | [diff] [blame] | 56 | } |