nand.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 CLR_CLE ~SET_CLE
  36. #define SET_ALE 0x08
  37. #define CLR_ALE ~SET_ALE
  38. static void nand_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
  39. {
  40. struct nand_chip *this = mtdinfo->priv;
  41. /* volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS; TODO: handle wp */
  42. u32 nand_baseaddr = (u32) this->IO_ADDR_W;
  43. if (ctrl & NAND_CTRL_CHANGE) {
  44. if ( ctrl & NAND_CLE )
  45. nand_baseaddr |= SET_CLE;
  46. else
  47. nand_baseaddr &= CLR_CLE;
  48. if ( ctrl & NAND_ALE )
  49. nand_baseaddr |= SET_ALE;
  50. else
  51. nand_baseaddr &= CLR_ALE;
  52. }
  53. this->IO_ADDR_W = (void __iomem *)(nand_baseaddr);
  54. if (cmd != NAND_CMD_NONE)
  55. writeb(cmd, this->IO_ADDR_W);
  56. }
  57. static void nand_write_byte(struct mtd_info *mtdinfo, u_char byte)
  58. {
  59. struct nand_chip *this = mtdinfo->priv;
  60. *((volatile u8 *)(this->IO_ADDR_W)) = byte;
  61. }
  62. static u8 nand_read_byte(struct mtd_info *mtdinfo)
  63. {
  64. struct nand_chip *this = mtdinfo->priv;
  65. return (u8) (*((volatile u8 *)this->IO_ADDR_R));
  66. }
  67. static int nand_dev_ready(struct mtd_info *mtdinfo)
  68. {
  69. return 1;
  70. }
  71. int board_nand_init(struct nand_chip *nand)
  72. {
  73. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  74. *((volatile u16 *)CFG_LATCH_ADDR) |= 0x0004;
  75. /* set up pin configuration */
  76. gpio->par_timer &= ~GPIO_PAR_TIN3_TIN3;
  77. gpio->pddr_timer |= 0x08;
  78. gpio->ppd_timer |= 0x08;
  79. gpio->pclrr_timer = 0;
  80. gpio->podr_timer = 0;
  81. nand->chip_delay = 50;
  82. nand->ecc.mode = NAND_ECC_SOFT;
  83. nand->cmd_ctrl = nand_hwcontrol;
  84. nand->read_byte = nand_read_byte;
  85. nand->write_byte = nand_write_byte;
  86. nand->dev_ready = nand_dev_ready;
  87. return 0;
  88. }
  89. #endif