cstm_mips_ixx.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: cstm_mips_ixx.c,v 1.5 2001/10/02 15:05:14 dwmw2 Exp $
  3.  *
  4.  * Mapping of a custom board with both AMD CFI and JEDEC flash in partitions.
  5.  * Config with both CFI and JEDEC device support.
  6.  *
  7.  * Basically physmap.c with the addition of partitions and 
  8.  * an array of mapping info to accomodate more than one flash type per board.
  9.  *
  10.  * Copyright 2000 MontaVista Software Inc.
  11.  *
  12.  *  This program is free software; you can redistribute  it and/or modify it
  13.  *  under  the terms of  the GNU General  Public License as published by the
  14.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  15.  *  option) any later version.
  16.  *
  17.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  18.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  19.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  20.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  21.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  23.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  24.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  25.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  *
  28.  *  You should have received a copy of the  GNU General Public License along
  29.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  30.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  31.  */
  32. #include <linux/module.h>
  33. #include <linux/types.h>
  34. #include <linux/kernel.h>
  35. #include <asm/io.h>
  36. #include <linux/mtd/mtd.h>
  37. #include <linux/mtd/map.h>
  38. #include <linux/mtd/partitions.h>
  39. #include <linux/config.h>
  40. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  41. #include <linux/delay.h>
  42. #endif
  43. __u8 cstm_mips_ixx_read8(struct map_info *map, unsigned long ofs)
  44. {
  45. return *(__u8 *)(map->map_priv_1 + ofs);
  46. }
  47. __u16 cstm_mips_ixx_read16(struct map_info *map, unsigned long ofs)
  48. {
  49. return *(__u16 *)(map->map_priv_1 + ofs);
  50. }
  51. __u32 cstm_mips_ixx_read32(struct map_info *map, unsigned long ofs)
  52. {
  53. return *(__u32 *)(map->map_priv_1 + ofs);
  54. }
  55. void cstm_mips_ixx_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  56. {
  57. memcpy_fromio(to, map->map_priv_1 + from, len);
  58. }
  59. void cstm_mips_ixx_write8(struct map_info *map, __u8 d, unsigned long adr)
  60. {
  61. *(__u8 *)(map->map_priv_1 + adr) = d;
  62. }
  63. void cstm_mips_ixx_write16(struct map_info *map, __u16 d, unsigned long adr)
  64. {
  65. *(__u16 *)(map->map_priv_1 + adr) = d;
  66. }
  67. void cstm_mips_ixx_write32(struct map_info *map, __u32 d, unsigned long adr)
  68. {
  69. *(__u32 *)(map->map_priv_1 + adr) = d;
  70. }
  71. void cstm_mips_ixx_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  72. {
  73. memcpy_toio(map->map_priv_1 + to, from, len);
  74. }
  75. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  76. #define CC_GCR             0xB4013818
  77. #define CC_GPBCR           0xB401380A
  78. #define CC_GPBDR           0xB4013808
  79. #define CC_M68K_DEVICE     1
  80. #define CC_M68K_FUNCTION   6
  81. #define CC_CONFADDR        0xB8004000
  82. #define CC_CONFDATA        0xB8004004
  83. #define CC_FC_FCR          0xB8002004
  84. #define CC_FC_DCR          0xB8002008
  85. #define CC_GPACR           0xB4013802
  86. #define CC_GPAICR          0xB4013804
  87. #endif /* defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR) */
  88. void cstm_mips_ixx_set_vpp(struct map_info *map,int vpp)
  89. {
  90.   if (vpp) {
  91. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  92.         __u16 data;
  93.         __u8 data1;
  94. static u8 first = 1;
  95. // Set GPIO port B pin3 to high
  96. data = *(__u16 *)(CC_GPBCR);
  97. data = (data & 0xff0f) | 0x0040;
  98. *(__u16 *)CC_GPBCR = data;
  99. *(__u8 *)CC_GPBDR = (*(__u8*)CC_GPBDR) | 0x08;
  100. if (first) {
  101. first = 0;
  102. /* need to have this delay for first
  103.    enabling vpp after powerup */
  104. udelay(40);
  105. }
  106. #endif /* CONFIG_MIPS_ITE8172 */
  107.   }
  108.   else {
  109. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  110.         __u16 data;
  111. // Set GPIO port B pin3 to high
  112. data = *(__u16 *)(CC_GPBCR);
  113. data = (data & 0xff3f) | 0x0040;
  114. *(__u16 *)CC_GPBCR = data;
  115. *(__u8 *)CC_GPBDR = (*(__u8*)CC_GPBDR) & 0xf7;
  116. #endif /* CONFIG_MIPS_ITE8172 */
  117.   }
  118. }
  119. const struct map_info basic_cstm_mips_ixx_map = {
  120. NULL,
  121. 0,
  122. 0,
  123. cstm_mips_ixx_read8,
  124. cstm_mips_ixx_read16,
  125. cstm_mips_ixx_read32,
  126. cstm_mips_ixx_copy_from,
  127. cstm_mips_ixx_write8,
  128. cstm_mips_ixx_write16,
  129. cstm_mips_ixx_write32,
  130. cstm_mips_ixx_copy_to,
  131.         cstm_mips_ixx_set_vpp,
  132. 0,
  133. 0
  134. };
  135. /* board and partition description */
  136. #define MAX_PHYSMAP_PARTITIONS    8
  137. struct cstm_mips_ixx_info {
  138. char *name;
  139. unsigned long window_addr;
  140. unsigned long window_size;
  141. int buswidth;
  142. int num_partitions;
  143. };
  144. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  145. #define PHYSMAP_NUMBER  1  // number of board desc structs needed, one per contiguous flash type 
  146. const struct cstm_mips_ixx_info cstm_mips_ixx_board_desc[PHYSMAP_NUMBER] = 
  147. {
  148.     {   // 28F128J3A in 2x16 configuration
  149.         "big flash",     // name
  150. 0x08000000,      // window_addr
  151. 0x02000000,      // window_size
  152.         4,               // buswidth
  153. 1,               // num_partitions
  154.     }
  155. };
  156. static struct mtd_partition cstm_mips_ixx_partitions[PHYSMAP_NUMBER][MAX_PHYSMAP_PARTITIONS] = {
  157. {   // 28F128J3A in 2x16 configuration
  158. {
  159. name: "main partition ",
  160. size: 0x02000000, // 128 x 2 x 128k byte sectors
  161. offset: 0,
  162. },
  163. },
  164. };
  165. #else /* defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR) */
  166. #define PHYSMAP_NUMBER  1  // number of board desc structs needed, one per contiguous flash type 
  167. const struct cstm_mips_ixx_info cstm_mips_ixx_board_desc[PHYSMAP_NUMBER] = 
  168. {
  169.     {  
  170.         "MTD flash",                   // name
  171. CONFIG_MTD_CSTM_MIPS_IXX_START,      // window_addr
  172. CONFIG_MTD_CSTM_MIPS_IXX_LEN,        // window_size
  173.         CONFIG_MTD_CSTM_MIPS_IXX_BUSWIDTH,   // buswidth
  174. 1,                             // num_partitions
  175.     },
  176. };
  177. static struct mtd_partition cstm_mips_ixx_partitions[PHYSMAP_NUMBER][MAX_PHYSMAP_PARTITIONS] = {
  178. {
  179. name: "main partition",
  180. size:  CONFIG_MTD_CSTM_MIPS_IXX_LEN,
  181. offset: 0,
  182. },
  183. },
  184. };
  185. #endif /* defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR) */
  186. struct map_info cstm_mips_ixx_map[PHYSMAP_NUMBER];
  187. int __init init_cstm_mips_ixx(void)
  188. {
  189. int i;
  190. int jedec;
  191.         struct mtd_info *mymtd;
  192.         struct mtd_partition *parts;
  193. /* Initialize mapping */
  194. for (i=0;i<PHYSMAP_NUMBER;i++) {
  195. printk(KERN_NOTICE "cstm_mips_ixx flash device: %lx at %lxn", cstm_mips_ixx_board_desc[i].window_size, cstm_mips_ixx_board_desc[i].window_addr);
  196.                 memcpy((char *)&cstm_mips_ixx_map[i],(char *)&basic_cstm_mips_ixx_map,sizeof(struct map_info));
  197. cstm_mips_ixx_map[i].map_priv_1 = (unsigned long)ioremap(cstm_mips_ixx_board_desc[i].window_addr, cstm_mips_ixx_board_desc[i].window_size);
  198. if (!cstm_mips_ixx_map[i].map_priv_1) {
  199. printk(KERN_WARNING "Failed to ioremapn");
  200. return -EIO;
  201.         }
  202. cstm_mips_ixx_map[i].name = cstm_mips_ixx_board_desc[i].name;
  203. cstm_mips_ixx_map[i].size = cstm_mips_ixx_board_desc[i].window_size;
  204. cstm_mips_ixx_map[i].buswidth = cstm_mips_ixx_board_desc[i].buswidth;
  205. //printk(KERN_NOTICE "cstm_mips_ixx: ioremap is %xn",(unsigned int)(cstm_mips_ixx_map[i].map_priv_1));
  206. }
  207. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  208.         setup_ITE_IVR_flash();
  209. #endif /* defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR) */
  210. for (i=0;i<PHYSMAP_NUMBER;i++) {
  211.                 parts = &cstm_mips_ixx_partitions[i][0];
  212. jedec = 0;
  213. mymtd = (struct mtd_info *)do_map_probe("cfi_probe", &cstm_mips_ixx_map[i]);
  214. //printk(KERN_NOTICE "phymap %d cfi_probe: mymtd is %xn",i,(unsigned int)mymtd);
  215. if (!mymtd) {
  216. jedec = 1;
  217. mymtd = (struct mtd_info *)do_map_probe("jedec", &cstm_mips_ixx_map[i]);
  218.         printk(KERN_NOTICE "cstm_mips_ixx %d jedec: mymtd is %xn",i,(unsigned int)mymtd);
  219. }
  220. if (mymtd) {
  221. mymtd->module = THIS_MODULE;
  222.                 cstm_mips_ixx_map[i].map_priv_2 = (unsigned long)mymtd;
  223.         add_mtd_partitions(mymtd, parts, cstm_mips_ixx_board_desc[i].num_partitions);
  224. }
  225. else
  226.            return -ENXIO;
  227. }
  228. return 0;
  229. }
  230. static void __exit cleanup_cstm_mips_ixx(void)
  231. {
  232. int i;
  233.         struct mtd_info *mymtd;
  234. for (i=0;i<PHYSMAP_NUMBER;i++) {
  235.         mymtd = (struct mtd_info *)cstm_mips_ixx_map[i].map_priv_2;
  236. if (mymtd) {
  237. del_mtd_partitions(mymtd);
  238. map_destroy(mymtd);
  239. }
  240. if (cstm_mips_ixx_map[i].map_priv_1) {
  241. iounmap((void *)cstm_mips_ixx_map[i].map_priv_1);
  242. cstm_mips_ixx_map[i].map_priv_1 = 0;
  243. }
  244. }
  245. }
  246. #if defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR)
  247. void PCISetULongByOffset(__u32 DevNumber, __u32 FuncNumber, __u32 Offset, __u32 data)
  248. {
  249. __u32 offset;
  250. offset = ( unsigned long )( 0x80000000 | ( DevNumber << 11 ) + ( FuncNumber << 8 ) + Offset) ;
  251. *(__u32 *)CC_CONFADDR = offset;
  252. *(__u32 *)CC_CONFDATA = data;
  253. }
  254. void setup_ITE_IVR_flash()
  255. {
  256. __u32 size, base;
  257. size = 0x0e000000; // 32MiB
  258. base = (0x08000000) >> 8 >>1; // Bug: we must shift one more bit
  259. /* need to set ITE flash to 32 bits instead of default 8 */
  260. #ifdef CONFIG_MIPS_IVR
  261. *(__u32 *)CC_FC_FCR = 0x55;
  262. *(__u32 *)CC_GPACR = 0xfffc;
  263. #else
  264. *(__u32 *)CC_FC_FCR = 0x77;
  265. #endif
  266. /* turn bursting off */
  267. *(__u32 *)CC_FC_DCR = 0x0;
  268. /* setup for one chip 4 byte PCI access */
  269. PCISetULongByOffset(CC_M68K_DEVICE, CC_M68K_FUNCTION, 0x60, size | base);
  270. PCISetULongByOffset(CC_M68K_DEVICE, CC_M68K_FUNCTION, 0x64, 0x02);
  271. }
  272. #endif /* defined(CONFIG_MIPS_ITE8172) || defined(CONFIG_MIPS_IVR) */
  273. module_init(init_cstm_mips_ixx);
  274. module_exit(cleanup_cstm_mips_ixx);
  275. MODULE_LICENSE("GPL");
  276. MODULE_AUTHOR("Alice Hennessy <ahennessy@mvista.com>");
  277. MODULE_DESCRIPTION("MTD map driver for ITE 8172G and Globespan IVR boards");