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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * MTD driver for the 28F160F3 Flash Memory (non-CFI) on LART.
  3.  *
  4.  * $Id: lart.c,v 1.2 2001/10/02 15:05:13 dwmw2 Exp $
  5.  *
  6.  * Author: Abraham vd Merwe <abraham@2d3d.co.za>
  7.  *
  8.  * Copyright (c) 2001, 2d3D, Inc.
  9.  *
  10.  * This code is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License version 2 as
  12.  * published by the Free Software Foundation.
  13.  *
  14.  * References:
  15.  *
  16.  *    [1] 3 Volt Fast Boot Block Flash Memory" Intel Datasheet
  17.  *           - Order Number: 290644-005
  18.  *           - January 2000
  19.  *
  20.  *    [2] MTD internal API documentation
  21.  *           - http://www.linux-mtd.infradead.org/tech/
  22.  *
  23.  * Limitations:
  24.  *
  25.  *    Even though this driver is written for 3 Volt Fast Boot
  26.  *    Block Flash Memory, it is rather specific to LART. With
  27.  *    Minor modifications, notably the without data/address line
  28.  *    mangling and different bus settings, etc. it should be
  29.  *    trivial to adapt to other platforms.
  30.  *
  31.  *    If somebody would sponsor me a different board, I'll
  32.  *    adapt the driver (:
  33.  */
  34. /* debugging */
  35. //#define LART_DEBUG
  36. /* partition support */
  37. #define HAVE_PARTITIONS
  38. #include <linux/kernel.h>
  39. #include <linux/module.h>
  40. #include <linux/types.h>
  41. #include <linux/version.h>
  42. #include <linux/errno.h>
  43. #include <linux/mtd/mtd.h>
  44. #ifdef HAVE_PARTITIONS
  45. #include <linux/mtd/partitions.h>
  46. #endif
  47. #ifndef CONFIG_SA1100_LART
  48. #error This is for LART architecture only
  49. #endif
  50. static char module_name[] = "lart";
  51. /*
  52.  * These values is specific to 28Fxxxx3 flash memory.
  53.  * See section 2.3.1 in "3 Volt Fast Boot Block Flash Memory" Intel Datasheet
  54.  */
  55. #define FLASH_BLOCKSIZE_PARAM (4096 * BUSWIDTH)
  56. #define FLASH_NUMBLOCKS_16m_PARAM 8
  57. #define FLASH_NUMBLOCKS_8m_PARAM 8
  58. /*
  59.  * These values is specific to 28Fxxxx3 flash memory.
  60.  * See section 2.3.2 in "3 Volt Fast Boot Block Flash Memory" Intel Datasheet
  61.  */
  62. #define FLASH_BLOCKSIZE_MAIN (32768 * BUSWIDTH)
  63. #define FLASH_NUMBLOCKS_16m_MAIN 31
  64. #define FLASH_NUMBLOCKS_8m_MAIN 15
  65. /*
  66.  * These values are specific to LART
  67.  */
  68. /* general */
  69. #define BUSWIDTH 4 /* don't change this - a lot of the code _will_ break if you change this */
  70. #define FLASH_OFFSET 0xe8000000 /* see linux/arch/arm/mach-sa1100/lart.c */
  71. /* blob */
  72. #define NUM_BLOB_BLOCKS FLASH_NUMBLOCKS_16m_PARAM
  73. #define BLOB_START 0x00000000
  74. #define BLOB_LEN (NUM_BLOB_BLOCKS * FLASH_BLOCKSIZE_PARAM)
  75. /* kernel */
  76. #define NUM_KERNEL_BLOCKS 7
  77. #define KERNEL_START (BLOB_START + BLOB_LEN)
  78. #define KERNEL_LEN (NUM_KERNEL_BLOCKS * FLASH_BLOCKSIZE_MAIN)
  79. /* initial ramdisk */
  80. #define NUM_INITRD_BLOCKS 24
  81. #define INITRD_START (KERNEL_START + KERNEL_LEN)
  82. #define INITRD_LEN (NUM_INITRD_BLOCKS * FLASH_BLOCKSIZE_MAIN)
  83. /*
  84.  * See section 4.0 in "3 Volt Fast Boot Block Flash Memory" Intel Datasheet
  85.  */
  86. #define READ_ARRAY 0x00FF00FF /* Read Array/Reset */
  87. #define READ_ID_CODES 0x00900090 /* Read Identifier Codes */
  88. #define ERASE_SETUP 0x00200020 /* Block Erase */
  89. #define ERASE_CONFIRM 0x00D000D0 /* Block Erase and Program Resume */
  90. #define PGM_SETUP 0x00400040 /* Program */
  91. #define STATUS_READ 0x00700070 /* Read Status Register */
  92. #define STATUS_CLEAR 0x00500050 /* Clear Status Register */
  93. #define STATUS_BUSY 0x00800080 /* Write State Machine Status (WSMS) */
  94. #define STATUS_ERASE_ERR 0x00200020 /* Erase Status (ES) */
  95. #define STATUS_PGM_ERR 0x00100010 /* Program Status (PS) */
  96. /*
  97.  * See section 4.2 in "3 Volt Fast Boot Block Flash Memory" Intel Datasheet
  98.  */
  99. #define FLASH_MANUFACTURER 0x00890089
  100. #define FLASH_DEVICE_8mbit_TOP 0x88f188f1
  101. #define FLASH_DEVICE_8mbit_BOTTOM 0x88f288f2
  102. #define FLASH_DEVICE_16mbit_TOP 0x88f388f3
  103. #define FLASH_DEVICE_16mbit_BOTTOM 0x88f488f4
  104. /***************************************************************************************************/
  105. /*
  106.  * The data line mapping on LART is as follows:
  107.  * 
  108.  *     U2  CPU |   U3  CPU
  109.  *     -------------------
  110.  *      0  20  |   0   12
  111.  *      1  22  |   1   14
  112.  *      2  19  |   2   11
  113.  *      3  17  |   3   9
  114.  *      4  24  |   4   0
  115.  *      5  26  |   5   2
  116.  *      6  31  |   6   7
  117.  *      7  29  |   7   5
  118.  *      8  21  |   8   13
  119.  *      9  23  |   9   15
  120.  *      10 18  |   10  10
  121.  *      11 16  |   11  8
  122.  *      12 25  |   12  1
  123.  *      13 27  |   13  3
  124.  *      14 30  |   14  6
  125.  *      15 28  |   15  4
  126.  */
  127. /* Mangle data (x) */
  128. #define DATA_TO_FLASH(x)
  129. (
  130. (((x) & 0x08009000) >> 11) +
  131. (((x) & 0x00002000) >> 10) +
  132. (((x) & 0x04004000) >> 8) +
  133. (((x) & 0x00000010) >> 4) +
  134. (((x) & 0x91000820) >> 3) +
  135. (((x) & 0x22080080) >> 2) +
  136. ((x) & 0x40000400) +
  137. (((x) & 0x00040040) << 1) +
  138. (((x) & 0x00110000) << 4) +
  139. (((x) & 0x00220100) << 5) +
  140. (((x) & 0x00800208) << 6) +
  141. (((x) & 0x00400004) << 9) +
  142. (((x) & 0x00000001) << 12) +
  143. (((x) & 0x00000002) << 13)
  144. )
  145. /* Unmangle data (x) */
  146. #define FLASH_TO_DATA(x)
  147. (
  148. (((x) & 0x00010012) << 11) +
  149. (((x) & 0x00000008) << 10) +
  150. (((x) & 0x00040040) << 8) +
  151. (((x) & 0x00000001) << 4) +
  152. (((x) & 0x12200104) << 3) +
  153. (((x) & 0x08820020) << 2) +
  154. ((x) & 0x40000400) +
  155. (((x) & 0x00080080) >> 1) +
  156. (((x) & 0x01100000) >> 4) +
  157. (((x) & 0x04402000) >> 5) +
  158. (((x) & 0x20008200) >> 6) +
  159. (((x) & 0x80000800) >> 9) +
  160. (((x) & 0x00001000) >> 12) +
  161. (((x) & 0x00004000) >> 13)
  162. )
  163. /* 
  164.  * The address line mapping on LART is as follows:
  165.  *
  166.  *     U3  CPU |   U2  CPU
  167.  *     -------------------
  168.  *      0  2   |   0   2
  169.  *      1  3   |   1   3
  170.  *      2  9   |   2   9
  171.  *      3  13  |   3   8
  172.  *      4  8   |   4   7
  173.  *      5  12  |   5   6
  174.  *      6  11  |   6   5
  175.  *      7  10  |   7   4
  176.  *      8  4   |   8   10
  177.  *      9  5   |   9   11
  178.  *     10  6   |   10  12
  179.  *     11  7   |   11  13
  180.  *
  181.  *     BOOT BLOCK BOUNDARY
  182.  *
  183.  *     12  15  |   12  15
  184.  *     13  14  |   13  14
  185.  *     14  16  |   14  16
  186.  * 
  187.  *     MAIN BLOCK BOUNDARY
  188.  *
  189.  *     15  17  |   15  18
  190.  *     16  18  |   16  17
  191.  *     17  20  |   17  20
  192.  *     18  19  |   18  19
  193.  *     19  21  |   19  21
  194.  *
  195.  * As we can see from above, the addresses aren't mangled across
  196.  * block boundaries, so we don't need to worry about address
  197.  * translations except for sending/reading commands during
  198.  * initialization
  199.  */
  200. /* Mangle address (x) on chip U2 */
  201. #define ADDR_TO_FLASH_U2(x)
  202. (
  203. (((x) & 0x00000f00) >> 4) +
  204. (((x) & 0x00042000) << 1) +
  205. (((x) & 0x0009c003) << 2) +
  206. (((x) & 0x00021080) << 3) +
  207. (((x) & 0x00000010) << 4) +
  208. (((x) & 0x00000040) << 5) +
  209. (((x) & 0x00000024) << 7) +
  210. (((x) & 0x00000008) << 10)
  211. )
  212. /* Unmangle address (x) on chip U2 */
  213. #define FLASH_U2_TO_ADDR(x)
  214. (
  215. (((x) << 4) & 0x00000f00) +
  216. (((x) >> 1) & 0x00042000) +
  217. (((x) >> 2) & 0x0009c003) +
  218. (((x) >> 3) & 0x00021080) +
  219. (((x) >> 4) & 0x00000010) +
  220. (((x) >> 5) & 0x00000040) +
  221. (((x) >> 7) & 0x00000024) +
  222. (((x) >> 10) & 0x00000008)
  223. )
  224. /* Mangle address (x) on chip U3 */
  225. #define ADDR_TO_FLASH_U3(x)
  226. (
  227. (((x) & 0x00000080) >> 3) +
  228. (((x) & 0x00000040) >> 1) +
  229. (((x) & 0x00052020) << 1) +
  230. (((x) & 0x00084f03) << 2) +
  231. (((x) & 0x00029010) << 3) +
  232. (((x) & 0x00000008) << 5) +
  233. (((x) & 0x00000004) << 7)
  234. )
  235. /* Unmangle address (x) on chip U3 */
  236. #define FLASH_U3_TO_ADDR(x)
  237. (
  238. (((x) << 3) & 0x00000080) +
  239. (((x) << 1) & 0x00000040) +
  240. (((x) >> 1) & 0x00052020) +
  241. (((x) >> 2) & 0x00084f03) +
  242. (((x) >> 3) & 0x00029010) +
  243. (((x) >> 5) & 0x00000008) +
  244. (((x) >> 7) & 0x00000004)
  245. )
  246. /***************************************************************************************************/
  247. static __u8 read8 (__u32 offset)
  248. {
  249.    volatile __u8 *data = (__u8 *) (FLASH_OFFSET + offset);
  250. #ifdef LART_DEBUG
  251.    printk (KERN_DEBUG "%s(): 0x%.8x -> 0x%.2xn",__FUNCTION__,offset,*data);
  252. #endif
  253.    return (*data);
  254. }
  255. static __u32 read32 (__u32 offset)
  256. {
  257.    volatile __u32 *data = (__u32 *) (FLASH_OFFSET + offset);
  258. #ifdef LART_DEBUG
  259.    printk (KERN_DEBUG "%s(): 0x%.8x -> 0x%.8xn",__FUNCTION__,offset,*data);
  260. #endif
  261.    return (*data);
  262. }
  263. static void write32 (__u32 x,__u32 offset)
  264. {
  265.    volatile __u32 *data = (__u32 *) (FLASH_OFFSET + offset);
  266.    *data = x;
  267. #ifdef LART_DEBUG
  268.    printk (KERN_DEBUG "%s(): 0x%.8x <- 0x%.8xn",__FUNCTION__,offset,*data);
  269. #endif
  270. }
  271. /***************************************************************************************************/
  272. /*
  273.  * Probe for 16mbit flash memory on a LART board without doing
  274.  * too much damage. Since we need to write 1 dword to memory,
  275.  * we're f**cked if this happens to be DRAM since we can't
  276.  * restore the memory (otherwise we might exit Read Array mode).
  277.  *
  278.  * Returns 1 if we found 16mbit flash memory on LART, 0 otherwise.
  279.  */
  280. static int flash_probe (void)
  281. {
  282.    __u32 manufacturer,devtype;
  283.    /* setup "Read Identifier Codes" mode */
  284.    write32 (DATA_TO_FLASH (READ_ID_CODES),0x00000000);
  285.    /* probe U2. U2/U3 returns the same data since the first 3
  286. * address lines is mangled in the same way */
  287.    manufacturer = FLASH_TO_DATA (read32 (ADDR_TO_FLASH_U2 (0x00000000)));
  288.    devtype = FLASH_TO_DATA (read32 (ADDR_TO_FLASH_U2 (0x00000001)));
  289.    /* put the flash back into command mode */
  290.    write32 (DATA_TO_FLASH (READ_ARRAY),0x00000000);
  291.    return (manufacturer == FLASH_MANUFACTURER && (devtype == FLASH_DEVICE_16mbit_TOP || FLASH_DEVICE_16mbit_BOTTOM));
  292. }
  293. /*
  294.  * Erase one block of flash memory at offset ``offset'' which is any
  295.  * address within the block which should be erased.
  296.  *
  297.  * Returns 1 if successful, 0 otherwise.
  298.  */
  299. static inline int erase_block (__u32 offset)
  300. {
  301.    __u32 status;
  302. #ifdef LART_DEBUG
  303.    printk (KERN_DEBUG "%s(): 0x%.8xn",__FUNCTION__,offset);
  304. #endif
  305.    /* erase and confirm */
  306.    write32 (DATA_TO_FLASH (ERASE_SETUP),offset);
  307.    write32 (DATA_TO_FLASH (ERASE_CONFIRM),offset);
  308.    /* wait for block erase to finish */
  309.    do
  310.  {
  311. write32 (DATA_TO_FLASH (STATUS_READ),offset);
  312. status = FLASH_TO_DATA (read32 (offset));
  313.  }
  314.    while ((~status & STATUS_BUSY) != 0);
  315.    /* put the flash back into command mode */
  316.    write32 (DATA_TO_FLASH (READ_ARRAY),offset);
  317.    /* was the erase successfull? */
  318.    if ((status & STATUS_ERASE_ERR))
  319.  {
  320. printk (KERN_WARNING "%s: erase error at address 0x%.8x.n",module_name,offset);
  321. return (0);
  322.  }
  323.    return (1);
  324. }
  325. static int flash_erase (struct mtd_info *mtd,struct erase_info *instr)
  326. {
  327.    __u32 addr,len;
  328.    int i,first;
  329. #ifdef LART_DEBUG
  330.    printk (KERN_DEBUG "%s(addr = 0x%.8x, len = %d)n",__FUNCTION__,instr->addr,instr->len);
  331. #endif
  332.    /* sanity checks */
  333.    if (instr->addr + instr->len > mtd->size) return (-EINVAL);
  334.    /*
  335. * check that both start and end of the requested erase are
  336. * aligned with the erasesize at the appropriate addresses.
  337. *
  338. * skip all erase regions which are ended before the start of
  339. * the requested erase. Actually, to save on the calculations,
  340. * we skip to the first erase region which starts after the
  341. * start of the requested erase, and then go back one.
  342. */
  343.    for (i = 0; i < mtd->numeraseregions && instr->addr >= mtd->eraseregions[i].offset; i++) ;
  344.    i--;
  345.    /*
  346. * ok, now i is pointing at the erase region in which this
  347. * erase request starts. Check the start of the requested
  348. * erase range is aligned with the erase size which is in
  349. * effect here.
  350. */
  351.    if (instr->addr & (mtd->eraseregions[i].erasesize - 1)) return (-EINVAL);
  352.    /* Remember the erase region we start on */
  353.    first = i;
  354.    /*
  355. * next, check that the end of the requested erase is aligned
  356. * with the erase region at that address.
  357. *
  358. * as before, drop back one to point at the region in which
  359. * the address actually falls
  360. */
  361.    for (; i < mtd->numeraseregions && instr->addr + instr->len >= mtd->eraseregions[i].offset; i++) ;
  362.    i--;
  363.    /* is the end aligned on a block boundary? */
  364.    if ((instr->addr + instr->len) & (mtd->eraseregions[i].erasesize - 1)) return (-EINVAL);
  365.    addr = instr->addr;
  366.    len = instr->len;
  367.    i = first;
  368.    /* now erase those blocks */
  369.    while (len)
  370.  {
  371. if (!erase_block (addr))
  372.   {
  373.  instr->state = MTD_ERASE_FAILED;
  374.  return (-EIO);
  375.   }
  376. addr += mtd->eraseregions[i].erasesize;
  377. len -= mtd->eraseregions[i].erasesize;
  378. if (addr == mtd->eraseregions[i].offset + (mtd->eraseregions[i].erasesize * mtd->eraseregions[i].numblocks)) i++;
  379.  }
  380.    instr->state = MTD_ERASE_DONE;
  381.    if (instr->callback) instr->callback (instr);
  382.    return (0);
  383. }
  384. static int flash_read (struct mtd_info *mtd,loff_t from,size_t len,size_t *retlen,u_char *buf)
  385. {
  386. #ifdef LART_DEBUG
  387.    printk (KERN_DEBUG "%s(from = 0x%.8x, len = %d)n",__FUNCTION__,(__u32) from,len);
  388. #endif
  389.    /* sanity checks */
  390.    if (!len) return (0);
  391.    if (from + len > mtd->size) return (-EINVAL);
  392.    /* we always read len bytes */
  393.    *retlen = len;
  394.    /* first, we read bytes until we reach a dword boundary */
  395.    if (from & (BUSWIDTH - 1))
  396.  {
  397. int gap = BUSWIDTH - (from & (BUSWIDTH - 1));
  398. while (len && gap--) *buf++ = read8 (from++), len--;
  399.  }
  400.    /* now we read dwords until we reach a non-dword boundary */
  401.    while (len >= BUSWIDTH)
  402.  {
  403. *((__u32 *) buf) = read32 (from);
  404. buf += BUSWIDTH;
  405. from += BUSWIDTH;
  406. len -= BUSWIDTH;
  407.  }
  408.    /* top up the last unaligned bytes */
  409.    if (len & (BUSWIDTH - 1))
  410.  while (len--) *buf++ = read8 (from++);
  411.    return (0);
  412. }
  413. /*
  414.  * Write one dword ``x'' to flash memory at offset ``offset''. ``offset''
  415.  * must be 32 bits, i.e. it must be on a dword boundary.
  416.  *
  417.  * Returns 1 if successful, 0 otherwise.
  418.  */
  419. static inline int write_dword (__u32 offset,__u32 x)
  420. {
  421.    __u32 status;
  422. #ifdef LART_DEBUG
  423.    printk (KERN_DEBUG "%s(): 0x%.8x <- 0x%.8xn",__FUNCTION__,offset,x);
  424. #endif
  425.    /* setup writing */
  426.    write32 (DATA_TO_FLASH (PGM_SETUP),offset);
  427.    /* write the data */
  428.    write32 (x,offset);
  429.    /* wait for the write to finish */
  430.    do
  431.  {
  432. write32 (DATA_TO_FLASH (STATUS_READ),offset);
  433. status = FLASH_TO_DATA (read32 (offset));
  434.  }
  435.    while ((~status & STATUS_BUSY) != 0);
  436.    /* put the flash back into command mode */
  437.    write32 (DATA_TO_FLASH (READ_ARRAY),offset);
  438.    /* was the write successfull? */
  439.    if ((status & STATUS_PGM_ERR) || read32 (offset) != x)
  440.  {
  441. printk (KERN_WARNING "%s: write error at address 0x%.8x.n",module_name,offset);
  442. return (0);
  443.  }
  444.    return (1);
  445. }
  446. static int flash_write (struct mtd_info *mtd,loff_t to,size_t len,size_t *retlen,const u_char *buf)
  447. {
  448.    __u8 tmp[4];
  449.    int i,n;
  450. #ifdef LART_DEBUG
  451.    printk (KERN_DEBUG "%s(to = 0x%.8x, len = %d)n",__FUNCTION__,(__u32) to,len);
  452. #endif
  453.    *retlen = 0;
  454.    /* sanity checks */
  455.    if (!len) return (0);
  456.    if (to + len > mtd->size) return (-EINVAL);
  457.    /* first, we write a 0xFF.... padded byte until we reach a dword boundary */
  458.    if (to & (BUSWIDTH - 1))
  459.  {
  460. __u32 aligned = to & ~(BUSWIDTH - 1);
  461. int gap = to - aligned;
  462. i = n = 0;
  463. while (gap--) tmp[i++] = 0xFF;
  464. while (len && i < BUSWIDTH) tmp[i++] = buf[n++], len--;
  465. while (i < BUSWIDTH) tmp[i++] = 0xFF;
  466. if (!write_dword (aligned,*((__u32 *) tmp))) return (-EIO);
  467. to += n;
  468. buf += n;
  469. *retlen += n;
  470.  }
  471.    /* now we write dwords until we reach a non-dword boundary */
  472.    while (len >= BUSWIDTH)
  473.  {
  474. if (!write_dword (to,*((__u32 *) buf))) return (-EIO);
  475. to += BUSWIDTH;
  476. buf += BUSWIDTH;
  477. *retlen += BUSWIDTH;
  478. len -= BUSWIDTH;
  479.  }
  480.    /* top up the last unaligned bytes, padded with 0xFF.... */
  481.    if (len & (BUSWIDTH - 1))
  482.  {
  483. i = n = 0;
  484. while (len--) tmp[i++] = buf[n++];
  485. while (i < BUSWIDTH) tmp[i++] = 0xFF;
  486. if (!write_dword (to,*((__u32 *) tmp))) return (-EIO);
  487. *retlen += n;
  488.  }
  489.    return (0);
  490. }
  491. /***************************************************************************************************/
  492. #define NB_OF(x) (sizeof (x) / sizeof (x[0]))
  493. static struct mtd_info mtd;
  494. static struct mtd_erase_region_info erase_regions[] =
  495. {
  496.    /* parameter blocks */
  497.    {
  498.      offset: 0x00000000,
  499.   erasesize: FLASH_BLOCKSIZE_PARAM,
  500.   numblocks: FLASH_NUMBLOCKS_16m_PARAM
  501.    },
  502.    /* main blocks */
  503.    {
  504.      offset: FLASH_BLOCKSIZE_PARAM * FLASH_NUMBLOCKS_16m_PARAM,
  505.   erasesize: FLASH_BLOCKSIZE_MAIN,
  506.   numblocks: FLASH_NUMBLOCKS_16m_MAIN
  507.    }
  508. };
  509. #ifdef HAVE_PARTITIONS
  510. static struct mtd_partition lart_partitions[] =
  511. {
  512.    /* blob */
  513.    {
  514.        name: "blob",
  515.      offset: BLOB_START,
  516.        size: BLOB_LEN,
  517.  mask_flags: 0
  518.    },
  519.    /* kernel */
  520.    {
  521.        name: "kernel",
  522.      offset: KERNEL_START, /* MTDPART_OFS_APPEND */
  523.        size: KERNEL_LEN,
  524.  mask_flags: 0
  525.    },
  526.    /* initial ramdisk / file system */
  527.    {
  528.        name: "file system",
  529.      offset: INITRD_START, /* MTDPART_OFS_APPEND */
  530.        size: INITRD_LEN, /* MTDPART_SIZ_FULL */
  531.  mask_flags: 0
  532.    }
  533. };
  534. #endif
  535. int __init lart_flash_init (void)
  536. {
  537.    int result;
  538.    memset (&mtd,0,sizeof (mtd));
  539.    printk ("MTD driver for LART. Written by Abraham vd Merwe <abraham@2d3d.co.za>n");
  540.    printk ("%s: Probing for 28F160x3 flash on LART...n",module_name);
  541.    if (!flash_probe ())
  542.  {
  543. printk (KERN_WARNING "%s: Found no LART compatible flash devicen",module_name);
  544. return (-ENXIO);
  545.  }
  546.    printk ("%s: This looks like a LART board to me.n",module_name);
  547.    mtd.name = module_name;
  548.    mtd.type = MTD_NORFLASH;
  549.    mtd.flags = MTD_CAP_NORFLASH;
  550.    mtd.size = FLASH_BLOCKSIZE_PARAM * FLASH_NUMBLOCKS_16m_PARAM + FLASH_BLOCKSIZE_MAIN * FLASH_NUMBLOCKS_16m_MAIN;
  551.    mtd.erasesize = FLASH_BLOCKSIZE_MAIN;
  552.    mtd.numeraseregions = NB_OF (erase_regions);
  553.    mtd.eraseregions = erase_regions;
  554.    mtd.module = THIS_MODULE;
  555.    mtd.erase = flash_erase;
  556.    mtd.read = flash_read;
  557.    mtd.write = flash_write;
  558. #ifdef LART_DEBUG
  559.    printk (KERN_DEBUG
  560.    "mtd.name = %sn"
  561.    "mtd.size = 0x%.8x (%uM)n"
  562.    "mtd.erasesize = 0x%.8x (%uK)n"
  563.    "mtd.numeraseregions = %dn",
  564.    mtd.name,
  565.    mtd.size,mtd.size / (1024*1024),
  566.    mtd.erasesize,mtd.erasesize / 1024,
  567.    mtd.numeraseregions);
  568.    if (mtd.numeraseregions)
  569.  for (result = 0; result < mtd.numeraseregions; result++)
  570.    printk (KERN_DEBUG
  571.    "nn"
  572.    "mtd.eraseregions[%d].offset = 0x%.8xn"
  573.    "mtd.eraseregions[%d].erasesize = 0x%.8x (%uK)n"
  574.    "mtd.eraseregions[%d].numblocks = %dn",
  575.    result,mtd.eraseregions[result].offset,
  576.    result,mtd.eraseregions[result].erasesize,mtd.eraseregions[result].erasesize / 1024,
  577.    result,mtd.eraseregions[result].numblocks);
  578. #ifdef HAVE_PARTITIONS
  579.    printk ("npartitions = %dn",NB_OF (lart_partitions));
  580.    for (result = 0; result < NB_OF (lart_partitions); result++)
  581.  printk (KERN_DEBUG
  582.  "nn"
  583.  "lart_partitions[%d].name = %sn"
  584.  "lart_partitions[%d].offset = 0x%.8xn"
  585.  "lart_partitions[%d].size = 0x%.8x (%uK)n",
  586.  result,lart_partitions[result].name,
  587.  result,lart_partitions[result].offset,
  588.  result,lart_partitions[result].size,lart_partitions[result].size / 1024);
  589. #endif
  590. #endif
  591. #ifndef HAVE_PARTITIONS
  592.    result = add_mtd_device (&mtd);
  593. #else
  594.    result = add_mtd_partitions (&mtd,lart_partitions,NB_OF (lart_partitions));
  595. #endif
  596.    return (result);
  597. }
  598. void __exit lart_flash_exit (void)
  599. {
  600. #ifndef HAVE_PARTITIONS
  601.    del_mtd_device (&mtd);
  602. #else
  603.    del_mtd_partitions (&mtd);
  604. #endif
  605. }
  606. module_init (lart_flash_init);
  607. module_exit (lart_flash_exit);
  608. MODULE_LICENSE("GPL");
  609. MODULE_AUTHOR("Abraham vd Merwe <abraham@2d3d.co.za>");
  610. MODULE_DESCRIPTION("MTD driver for Intel 28F160F3 on LART board");