blob: cf27dda2ffef8272c17f570c9f818df9658c91e0 [file] [log] [blame]
TsiChungLiewec8468f2007-08-05 04:31:18 -05001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
6 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <config.h>
28#include <common.h>
29#include <asm/io.h>
30#include <asm/immap.h>
31
32DECLARE_GLOBAL_DATA_PTR;
33
TsiChungLiewaedd3d72007-08-15 15:39:17 -050034#if defined(CONFIG_CMD_NAND)
TsiChungLiewec8468f2007-08-05 04:31:18 -050035#include <nand.h>
36#include <linux/mtd/mtd.h>
37
Stefan Roeseeb8c2942007-08-08 09:54:26 +020038#define SET_CLE 0x10
Stefan Roeseeb8c2942007-08-08 09:54:26 +020039#define SET_ALE 0x08
TsiChungLiewec8468f2007-08-05 04:31:18 -050040
TsiChung Liew476f6bc2008-10-24 12:59:12 +000041static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl)
TsiChungLiewec8468f2007-08-05 04:31:18 -050042{
Stefan Roeseeb8c2942007-08-08 09:54:26 +020043 struct nand_chip *this = mtdinfo->priv;
TsiChung Liew476f6bc2008-10-24 12:59:12 +000044 volatile u16 *nCE = (u16 *) CONFIG_SYS_LATCH_ADDR;
TsiChungLiewec8468f2007-08-05 04:31:18 -050045
William Juul52c07962007-10-31 13:53:06 +010046 if (ctrl & NAND_CTRL_CHANGE) {
TsiChung Liew476f6bc2008-10-24 12:59:12 +000047 ulong IO_ADDR_W = (ulong) this->IO_ADDR_W;
William Juul52c07962007-10-31 13:53:06 +010048
TsiChung Liew476f6bc2008-10-24 12:59:12 +000049 IO_ADDR_W &= ~(SET_ALE | SET_CLE);
50 *nCE &= 0xFFFB;
TsiChungLiewec8468f2007-08-05 04:31:18 -050051
TsiChung Liew476f6bc2008-10-24 12:59:12 +000052 if (ctrl & NAND_NCE)
53 *nCE |= 0x0004;
54 if (ctrl & NAND_CLE)
55 IO_ADDR_W |= SET_CLE;
56 if (ctrl & NAND_ALE)
57 IO_ADDR_W |= SET_ALE;
TsiChungLiewec8468f2007-08-05 04:31:18 -050058
TsiChung Liew476f6bc2008-10-24 12:59:12 +000059 this->IO_ADDR_W = (void *)IO_ADDR_W;
60 }
TsiChungLiewec8468f2007-08-05 04:31:18 -050061
TsiChung Liew476f6bc2008-10-24 12:59:12 +000062 if (cmd != NAND_CMD_NONE)
63 writeb(cmd, this->IO_ADDR_W);
TsiChungLiewec8468f2007-08-05 04:31:18 -050064}
65
66int board_nand_init(struct nand_chip *nand)
67{
Stefan Roeseeb8c2942007-08-08 09:54:26 +020068 volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChungLiewec8468f2007-08-05 04:31:18 -050069
TsiChung Liew476f6bc2008-10-24 12:59:12 +000070 /*
71 * set up pin configuration - enabled 2nd output buffer's signals
72 * (nand_ngpio - nCE USB1/2_PWR_EN, LATCH_GPIOs, LCD_VEEEN, etc)
73 * to use nCE signal
74 */
Stefan Roeseeb8c2942007-08-08 09:54:26 +020075 gpio->par_timer &= ~GPIO_PAR_TIN3_TIN3;
76 gpio->pddr_timer |= 0x08;
77 gpio->ppd_timer |= 0x08;
78 gpio->pclrr_timer = 0;
79 gpio->podr_timer = 0;
TsiChungLiewec8468f2007-08-05 04:31:18 -050080
Stefan Roeseeb8c2942007-08-08 09:54:26 +020081 nand->chip_delay = 50;
William Juul52c07962007-10-31 13:53:06 +010082 nand->ecc.mode = NAND_ECC_SOFT;
83 nand->cmd_ctrl = nand_hwcontrol;
TsiChungLiewec8468f2007-08-05 04:31:18 -050084
Stefan Roeseeb8c2942007-08-08 09:54:26 +020085 return 0;
TsiChungLiewec8468f2007-08-05 04:31:18 -050086}
87#endif