blob: 3ebef059e14d5fe1484792959de69e941fa05916 [file] [log] [blame]
TsiChungLiew1ac559d2008-01-14 17:19:54 -06001/*
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
34#if defined(CONFIG_CMD_NAND)
35#include <nand.h>
36#include <linux/mtd/mtd.h>
37
38#define SET_CLE 0x10
TsiChungLiew1ac559d2008-01-14 17:19:54 -060039#define SET_ALE 0x08
TsiChungLiew1ac559d2008-01-14 17:19:54 -060040
Scott Woodf64cb652008-08-13 17:53:48 -050041static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl)
TsiChungLiew1ac559d2008-01-14 17:19:54 -060042{
43 struct nand_chip *this = mtdinfo->priv;
TsiChung Liewe4f69d12008-10-24 12:59:12 +000044 volatile u16 *nCE = (u16 *) CONFIG_SYS_LATCH_ADDR;
TsiChungLiew1ac559d2008-01-14 17:19:54 -060045
Scott Woodf64cb652008-08-13 17:53:48 -050046 if (ctrl & NAND_CTRL_CHANGE) {
47 ulong IO_ADDR_W = (ulong) this->IO_ADDR_W;
Scott Woodf64cb652008-08-13 17:53:48 -050048
TsiChung Liewe4f69d12008-10-24 12:59:12 +000049 IO_ADDR_W &= ~(SET_ALE | SET_CLE);
50 *nCE &= 0xFFFB;
51
52 if (ctrl & NAND_NCE)
53 *nCE |= 0x0004;
Scott Woodf64cb652008-08-13 17:53:48 -050054 if (ctrl & NAND_CLE)
55 IO_ADDR_W |= SET_CLE;
56 if (ctrl & NAND_ALE)
57 IO_ADDR_W |= SET_ALE;
58
Scott Woodf64cb652008-08-13 17:53:48 -050059 this->IO_ADDR_W = (void *)IO_ADDR_W;
60
TsiChungLiew1ac559d2008-01-14 17:19:54 -060061 }
TsiChungLiew1ac559d2008-01-14 17:19:54 -060062
Scott Woodf64cb652008-08-13 17:53:48 -050063 if (cmd != NAND_CMD_NONE)
64 writeb(cmd, this->IO_ADDR_W);
TsiChungLiew1ac559d2008-01-14 17:19:54 -060065}
66
67int board_nand_init(struct nand_chip *nand)
68{
69 volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
Scott Woodf64cb652008-08-13 17:53:48 -050070 volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
TsiChungLiew1ac559d2008-01-14 17:19:54 -060071
Scott Woodf64cb652008-08-13 17:53:48 -050072 fbcs->csmr2 &= ~FBCS_CSMR_WP;
TsiChungLiew1ac559d2008-01-14 17:19:54 -060073
TsiChung Liewe4f69d12008-10-24 12:59:12 +000074 /*
75 * set up pin configuration - enabled 2nd output buffer's signals
76 * (nand_ngpio - nCE USB1/2_PWR_EN, LATCH_GPIOs, LCD_VEEEN, etc)
77 * to use nCE signal
78 */
TsiChungLiew1ac559d2008-01-14 17:19:54 -060079 gpio->par_timer &= ~GPIO_PAR_TIN3_TIN3;
80 gpio->pddr_timer |= 0x08;
81 gpio->ppd_timer |= 0x08;
82 gpio->pclrr_timer = 0;
83 gpio->podr_timer = 0;
84
85 nand->chip_delay = 50;
Scott Woodf64cb652008-08-13 17:53:48 -050086 nand->ecc.mode = NAND_ECC_SOFT;
87 nand->cmd_ctrl = nand_hwcontrol;
TsiChungLiew1ac559d2008-01-14 17:19:54 -060088
89 return 0;
90}
91#endif