spia.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  drivers/mtd/nand/spia.c
  3.  *
  4.  *  Copyright (C) 2000 Steven J. Hill (sjhill@cotw.com)
  5.  *
  6.  * $Id: spia.c,v 1.12 2001/10/02 15:05:14 dwmw2 Exp $
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  *
  12.  *  Overview:
  13.  *   This is a device driver for the NAND flash device found on the
  14.  *   SPIA board which utilizes the Toshiba TC58V64AFT part. This is
  15.  *   a 64Mibit (8MiB x 8 bits) NAND flash device.
  16.  */
  17. #include <linux/slab.h>
  18. #include <linux/module.h>
  19. #include <linux/mtd/mtd.h>
  20. #include <linux/mtd/nand.h>
  21. #include <linux/mtd/partitions.h>
  22. #include <asm/io.h>
  23. /*
  24.  * MTD structure for SPIA board
  25.  */
  26. static struct mtd_info *spia_mtd = NULL;
  27. /*
  28.  * Values specific to the SPIA board (used with EP7212 processor)
  29.  */
  30. #define SPIA_IO_ADDR = 0xd0000000 /* Start of EP7212 IO address space */
  31. #define SPIA_FIO_ADDR = 0xf0000000 /* Address where flash is mapped */
  32. #define SPIA_PEDR = 0x0080 /*
  33.  * IO offset to Port E data register
  34.  * where the CLE, ALE and NCE pins
  35.  * are wired to.
  36.  */
  37. #define SPIA_PEDDR = 0x00c0 /*
  38.  * IO offset to Port E data direction
  39.  * register so we can control the IO
  40.  * lines.
  41.  */
  42. /*
  43.  * Module stuff
  44.  */
  45. static int spia_io_base = SPIA_IO_BASE;
  46. static int spia_fio_base = SPIA_FIO_BASE;
  47. static int spia_pedr = SPIA_PEDR;
  48. static int spia_peddr = SPIA_PEDDR;
  49. MODULE_PARM(spia_io_base, "i");
  50. MODULE_PARM(spia_fio_base, "i");
  51. MODULE_PARM(spia_pedr, "i");
  52. MODULE_PARM(spia_peddr, "i");
  53. __setup("spia_io_base=",spia_io_base);
  54. __setup("spia_fio_base=",spia_fio_base);
  55. __setup("spia_pedr=",spia_pedr);
  56. __setup("spia_peddr=",spia_peddr);
  57. /*
  58.  * Define partitions for flash device
  59.  */
  60. const static struct mtd_partition partition_info[] = {
  61. { name: "SPIA flash partition 1",
  62.   offset: 0,
  63.   size: 2*1024*1024 },
  64. { name: "SPIA flash partition 2",
  65.   offset: 2*1024*1024,
  66.   size: 6*1024*1024 }
  67. };
  68. #define NUM_PARTITIONS 2
  69. /*
  70.  * Main initialization routine
  71.  */
  72. int __init spia_init (void)
  73. {
  74. struct nand_chip *this;
  75. /* Allocate memory for MTD device structure and private data */
  76. spia_mtd = kmalloc (sizeof(struct mtd_info) + sizeof (struct nand_chip),
  77. GFP_KERNEL);
  78. if (!spia_mtd) {
  79. printk ("Unable to allocate SPIA NAND MTD device structure.n");
  80. return -ENOMEM;
  81. }
  82. /* Get pointer to private data */
  83. this = (struct nand_chip *) (&spia_mtd[1]);
  84. /* Initialize structures */
  85. memset((char *) spia_mtd, 0, sizeof(struct mtd_info));
  86. memset((char *) this, 0, sizeof(struct nand_chip));
  87. /* Link the private data with the MTD structure */
  88. spia_mtd->priv = this;
  89. /*
  90.  * Set GPIO Port E control register so that the pins are configured
  91.  * to be outputs for controlling the NAND flash.
  92.  */
  93. (*(volatile unsigned char *) (spia_io_base + spia_peddr)) = 0x07;
  94. /* Set address of NAND IO lines */
  95. this->IO_ADDR = spia_fio_base;
  96. this->CTRL_ADDR = spia_io_base + spia_pedr;
  97. this->CLE = 0x01;
  98. this->ALE = 0x02;
  99. this->NCE = 0x04;
  100. /* Scan to find existence of the device */
  101. if (nand_scan (spia_mtd)) {
  102. kfree (spia_mtd);
  103. return -ENXIO;
  104. }
  105. /* Allocate memory for internal data buffer */
  106. this->data_buf = kmalloc (sizeof(u_char) * (spia_mtd->oobblock + spia_mtd->oobsize), GFP_KERNEL);
  107. if (!this->data_buf) {
  108. printk ("Unable to allocate NAND data buffer for SPIA.n");
  109. kfree (spia_mtd);
  110. return -ENOMEM;
  111. }
  112. /* Register the partitions */
  113. add_mtd_partitions(spia_mtd, partition_info, NUM_PARTITIONS);
  114. /* Return happy */
  115. return 0;
  116. }
  117. module_init(spia_init);
  118. /*
  119.  * Clean up routine
  120.  */
  121. #ifdef MODULE
  122. static void __exit spia_cleanup (void)
  123. {
  124. struct nand_chip *this = (struct nand_chip *) &spia_mtd[1];
  125. /* Unregister the device */
  126. del_mtd_device (spia_mtd);
  127. /* Free internal data buffer */
  128. kfree (this->data_buf);
  129. /* Free the MTD device structure */
  130. kfree (spia_mtd);
  131. }
  132. module_exit(spia_cleanup);
  133. #endif
  134. MODULE_LICENSE("GPL");
  135. MODULE_AUTHOR("Steven J. Hill <sjhill@cotw.com");
  136. MODULE_DESCRIPTION("Board-specific glue layer for NAND flash on SPIA board");