]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/m5373evb/nand.c
Merge branch 'u-boot-microblaze/zynq' into 'u-boot-arm/master'
[people/ms/u-boot.git] / board / freescale / m5373evb / nand.c
CommitLineData
1ac559d4
TL
1/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
aa0d99fc 5 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
1ac559d4
TL
6 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
1ac559d4
TL
9 */
10
11#include <config.h>
12#include <common.h>
13#include <asm/io.h>
14#include <asm/immap.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
18#if defined(CONFIG_CMD_NAND)
19#include <nand.h>
20#include <linux/mtd/mtd.h>
21
22#define SET_CLE 0x10
1ac559d4 23#define SET_ALE 0x08
1ac559d4 24
f64cb652 25static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl)
1ac559d4
TL
26{
27 struct nand_chip *this = mtdinfo->priv;
e4f69d1b 28 volatile u16 *nCE = (u16 *) CONFIG_SYS_LATCH_ADDR;
1ac559d4 29
f64cb652
SW
30 if (ctrl & NAND_CTRL_CHANGE) {
31 ulong IO_ADDR_W = (ulong) this->IO_ADDR_W;
1ac559d4 32
e4f69d1b 33 IO_ADDR_W &= ~(SET_ALE | SET_CLE);
e4f69d1b
TL
34
35 if (ctrl & NAND_NCE)
9017d932
TL
36 *nCE &= 0xFFFB;
37 else
e4f69d1b 38 *nCE |= 0x0004;
9017d932 39
f64cb652
SW
40 if (ctrl & NAND_CLE)
41 IO_ADDR_W |= SET_CLE;
42 if (ctrl & NAND_ALE)
43 IO_ADDR_W |= SET_ALE;
1ac559d4 44
f64cb652 45 this->IO_ADDR_W = (void *)IO_ADDR_W;
1ac559d4 46
f64cb652
SW
47 }
48
49 if (cmd != NAND_CMD_NONE)
50 writeb(cmd, this->IO_ADDR_W);
1ac559d4
TL
51}
52
53int board_nand_init(struct nand_chip *nand)
54{
aa0d99fc
AW
55 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
56 fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
1ac559d4 57
aa0d99fc 58 clrbits_be32(&fbcs->csmr2, FBCS_CSMR_WP);
1ac559d4 59
e4f69d1b
TL
60 /*
61 * set up pin configuration - enabled 2nd output buffer's signals
62 * (nand_ngpio - nCE USB1/2_PWR_EN, LATCH_GPIOs, LCD_VEEEN, etc)
63 * to use nCE signal
64 */
aa0d99fc
AW
65 clrbits_8(&gpio->par_timer, GPIO_PAR_TIN3_TIN3);
66 setbits_8(&gpio->pddr_timer, 0x08);
67 setbits_8(&gpio->ppd_timer, 0x08);
68 out_8(&gpio->pclrr_timer, 0);
69 out_8(&gpio->podr_timer, 0);
1ac559d4 70
9017d932 71 nand->chip_delay = 60;
f64cb652
SW
72 nand->ecc.mode = NAND_ECC_SOFT;
73 nand->cmd_ctrl = nand_hwcontrol;
1ac559d4
TL
74
75 return 0;
76}
77#endif