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