TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Alison Wang | aa0d99f | 2012-03-26 21:49:05 +0000 | [diff] [blame] | 5 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 6 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <config.h> |
| 12 | #include <common.h> |
| 13 | #include <asm/io.h> |
| 14 | #include <asm/immap.h> |
| 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
TsiChungLiew | ab77bc5 | 2007-08-15 15:39:17 -0500 | [diff] [blame] | 18 | #if defined(CONFIG_CMD_NAND) |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 19 | #include <nand.h> |
| 20 | #include <linux/mtd/mtd.h> |
| 21 | |
Stefan Roese | 3ba4c2d | 2007-08-08 09:54:26 +0200 | [diff] [blame] | 22 | #define SET_CLE 0x10 |
Stefan Roese | 3ba4c2d | 2007-08-08 09:54:26 +0200 | [diff] [blame] | 23 | #define SET_ALE 0x08 |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 24 | |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 25 | static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl) |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 26 | { |
Stefan Roese | 3ba4c2d | 2007-08-08 09:54:26 +0200 | [diff] [blame] | 27 | struct nand_chip *this = mtdinfo->priv; |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 28 | volatile u16 *nCE = (u16 *) CONFIG_SYS_LATCH_ADDR; |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 29 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 30 | if (ctrl & NAND_CTRL_CHANGE) { |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 31 | ulong IO_ADDR_W = (ulong) this->IO_ADDR_W; |
| 32 | |
| 33 | IO_ADDR_W &= ~(SET_ALE | SET_CLE); |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 34 | |
| 35 | if (ctrl & NAND_NCE) |
TsiChung Liew | 9017d93 | 2009-03-02 19:16:45 +0000 | [diff] [blame] | 36 | *nCE &= 0xFFFB; |
| 37 | else |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 38 | *nCE |= 0x0004; |
TsiChung Liew | 9017d93 | 2009-03-02 19:16:45 +0000 | [diff] [blame] | 39 | |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 40 | if (ctrl & NAND_CLE) |
| 41 | IO_ADDR_W |= SET_CLE; |
| 42 | if (ctrl & NAND_ALE) |
| 43 | IO_ADDR_W |= SET_ALE; |
| 44 | |
| 45 | this->IO_ADDR_W = (void *)IO_ADDR_W; |
Stefan Roese | 3ba4c2d | 2007-08-08 09:54:26 +0200 | [diff] [blame] | 46 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 47 | |
| 48 | if (cmd != NAND_CMD_NONE) |
| 49 | writeb(cmd, this->IO_ADDR_W); |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 50 | } |
| 51 | |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 52 | int board_nand_init(struct nand_chip *nand) |
| 53 | { |
Alison Wang | aa0d99f | 2012-03-26 21:49:05 +0000 | [diff] [blame] | 54 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 55 | |
TsiChung Liew | e4f69d1 | 2008-10-24 12:59:12 +0000 | [diff] [blame] | 56 | /* |
| 57 | * set up pin configuration - enabled 2nd output buffer's signals |
| 58 | * (nand_ngpio - nCE USB1/2_PWR_EN, LATCH_GPIOs, LCD_VEEEN, etc) |
| 59 | * to use nCE signal |
| 60 | */ |
Alison Wang | aa0d99f | 2012-03-26 21:49:05 +0000 | [diff] [blame] | 61 | clrbits_8(&gpio->par_timer, GPIO_PAR_TIN3_TIN3); |
| 62 | setbits_8(&gpio->pddr_timer, 0x08); |
| 63 | setbits_8(&gpio->ppd_timer, 0x08); |
| 64 | out_8(&gpio->pclrr_timer, 0); |
| 65 | out_8(&gpio->podr_timer, 0); |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 66 | |
TsiChung Liew | 9017d93 | 2009-03-02 19:16:45 +0000 | [diff] [blame] | 67 | nand->chip_delay = 60; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 68 | nand->ecc.mode = NAND_ECC_SOFT; |
| 69 | nand->cmd_ctrl = nand_hwcontrol; |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 70 | |
Stefan Roese | 3ba4c2d | 2007-08-08 09:54:26 +0200 | [diff] [blame] | 71 | return 0; |
TsiChungLiew | 1a33ce6 | 2007-08-05 04:31:18 -0500 | [diff] [blame] | 72 | } |
| 73 | #endif |