4 * flash chip on alpha ds10...
7 #include <asm/core_tsunami.h>
8 #include <linux/init.h>
9 #include <linux/mtd/map.h>
10 #include <linux/mtd/mtd.h>
12 #define FLASH_ENABLE_PORT 0x00C00001
13 #define FLASH_ENABLE_BYTE 0x01
14 #define FLASH_DISABLE_BYTE 0x00
16 #define MAX_TIG_FLASH_SIZE (12*1024*1024)
17 static inline map_word
tsunami_flash_read8(struct map_info
*map
, unsigned long offset
)
20 val
.x
[0] = tsunami_tig_readb(offset
);
24 static void tsunami_flash_write8(struct map_info
*map
, map_word value
, unsigned long offset
)
26 tsunami_tig_writeb(value
.x
[0], offset
);
29 static void tsunami_flash_copy_from(
30 struct map_info
*map
, void *addr
, unsigned long offset
, ssize_t len
)
34 while(len
&& (offset
< MAX_TIG_FLASH_SIZE
)) {
35 *dest
= tsunami_tig_readb(offset
);
42 static void tsunami_flash_copy_to(
43 struct map_info
*map
, unsigned long offset
,
44 const void *addr
, ssize_t len
)
46 const unsigned char *src
;
48 while(len
&& (offset
< MAX_TIG_FLASH_SIZE
)) {
49 tsunami_tig_writeb(*src
, offset
);
57 * Deliberately don't provide operations wider than 8 bits. I don't
58 * have then and it scares me to think how you could mess up if
59 * you tried to use them. Buswidth is correctly so I'm safe.
61 static struct map_info tsunami_flash_map
= {
62 .name
= "flash chip on the Tsunami TIG bus",
63 .size
= MAX_TIG_FLASH_SIZE
,
66 .read
= tsunami_flash_read8
,
67 .copy_from
= tsunami_flash_copy_from
,
68 .write
= tsunami_flash_write8
,
69 .copy_to
= tsunami_flash_copy_to
,
72 static struct mtd_info
*tsunami_flash_mtd
;
74 static void __exit
cleanup_tsunami_flash(void)
77 mtd
= tsunami_flash_mtd
;
79 mtd_device_unregister(mtd
);
82 tsunami_flash_mtd
= 0;
86 static int __init
init_tsunami_flash(void)
88 static const char *rom_probe_types
[] = { "cfi_probe", "jedec_probe", "map_rom", NULL
};
91 tsunami_tig_writeb(FLASH_ENABLE_BYTE
, FLASH_ENABLE_PORT
);
93 tsunami_flash_mtd
= 0;
94 type
= rom_probe_types
;
95 for(; !tsunami_flash_mtd
&& *type
; type
++) {
96 tsunami_flash_mtd
= do_map_probe(*type
, &tsunami_flash_map
);
98 if (tsunami_flash_mtd
) {
99 tsunami_flash_mtd
->owner
= THIS_MODULE
;
100 mtd_device_register(tsunami_flash_mtd
, NULL
, 0);
106 module_init(init_tsunami_flash
);
107 module_exit(cleanup_tsunami_flash
);