nand.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  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. #include <config.h>
  27. #include <common.h>
  28. #include <asm/io.h>
  29. #include <asm/immap.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #if defined(CONFIG_CMD_NAND)
  32. #include <nand.h>
  33. #include <linux/mtd/mtd.h>
  34. #define SET_CLE 0x10
  35. #define SET_ALE 0x08
  36. static void nand_hwcontrol(struct mtd_info *mtdinfo, int cmd, unsigned int ctrl)
  37. {
  38. struct nand_chip *this = mtdinfo->priv;
  39. volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
  40. u32 nand_baseaddr = (u32) this->IO_ADDR_W;
  41. if (ctrl & NAND_CTRL_CHANGE) {
  42. ulong IO_ADDR_W = (ulong) this->IO_ADDR_W;
  43. IO_ADDR_W &= ~(SET_ALE | SE_CLE);
  44. if (ctrl & NAND_CLE)
  45. IO_ADDR_W |= SET_CLE;
  46. if (ctrl & NAND_ALE)
  47. IO_ADDR_W |= SET_ALE;
  48. at91_set_gpio_value(AT91_PIN_PD15, !(ctrl & NAND_NCE));
  49. this->IO_ADDR_W = (void *)IO_ADDR_W;
  50. }
  51. if (cmd != NAND_CMD_NONE)
  52. writeb(cmd, this->IO_ADDR_W);
  53. }
  54. int board_nand_init(struct nand_chip *nand)
  55. {
  56. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  57. volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
  58. *((volatile u16 *)CFG_LATCH_ADDR) |= 0x0004;
  59. fbcs->csmr2 &= ~FBCS_CSMR_WP;
  60. /* set up pin configuration */
  61. gpio->par_timer &= ~GPIO_PAR_TIN3_TIN3;
  62. gpio->pddr_timer |= 0x08;
  63. gpio->ppd_timer |= 0x08;
  64. gpio->pclrr_timer = 0;
  65. gpio->podr_timer = 0;
  66. nand->chip_delay = 50;
  67. nand->ecc.mode = NAND_ECC_SOFT;
  68. nand->cmd_ctrl = nand_hwcontrol;
  69. return 0;
  70. }
  71. #endif