2 * $Id: ebony.c,v 1.15 2004/12/09 18:39:54 holindho Exp $
4 * Mapping for Ebony user flash
6 * Matt Porter <mporter@kernel.crashing.org>
8 * Copyright 2002-2004 MontaVista Software Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/map.h>
22 #include <linux/mtd/partitions.h>
23 #include <linux/config.h>
24 #include <linux/version.h>
26 #include <asm/ibm44x.h>
27 #include <platforms/4xx/ebony.h>
29 static struct mtd_info
*flash
;
31 static struct map_info ebony_small_map
= {
32 .name
= "Ebony small flash",
33 .size
= EBONY_SMALL_FLASH_SIZE
,
37 static struct map_info ebony_large_map
= {
38 .name
= "Ebony large flash",
39 .size
= EBONY_LARGE_FLASH_SIZE
,
43 static struct mtd_partition ebony_small_partitions
[] = {
51 static struct mtd_partition ebony_large_partitions
[] = {
64 int __init
init_ebony(void)
67 u8 __iomem
*fpga0_adr
;
68 unsigned long long small_flash_base
, large_flash_base
;
70 fpga0_adr
= ioremap64(EBONY_FPGA_ADDR
, 16);
74 fpga0_reg
= readb(fpga0_adr
);
77 if (EBONY_BOOT_SMALL_FLASH(fpga0_reg
) &&
78 !EBONY_FLASH_SEL(fpga0_reg
))
79 small_flash_base
= EBONY_SMALL_FLASH_HIGH2
;
80 else if (EBONY_BOOT_SMALL_FLASH(fpga0_reg
) &&
81 EBONY_FLASH_SEL(fpga0_reg
))
82 small_flash_base
= EBONY_SMALL_FLASH_HIGH1
;
83 else if (!EBONY_BOOT_SMALL_FLASH(fpga0_reg
) &&
84 !EBONY_FLASH_SEL(fpga0_reg
))
85 small_flash_base
= EBONY_SMALL_FLASH_LOW2
;
87 small_flash_base
= EBONY_SMALL_FLASH_LOW1
;
89 if (EBONY_BOOT_SMALL_FLASH(fpga0_reg
) &&
90 !EBONY_ONBRD_FLASH_EN(fpga0_reg
))
91 large_flash_base
= EBONY_LARGE_FLASH_LOW
;
93 large_flash_base
= EBONY_LARGE_FLASH_HIGH
;
95 ebony_small_map
.phys
= small_flash_base
;
96 ebony_small_map
.virt
= ioremap64(small_flash_base
,
97 ebony_small_map
.size
);
99 if (!ebony_small_map
.virt
) {
100 printk("Failed to ioremap flash\n");
104 simple_map_init(&ebony_small_map
);
106 flash
= do_map_probe("jedec_probe", &ebony_small_map
);
108 flash
->owner
= THIS_MODULE
;
109 add_mtd_partitions(flash
, ebony_small_partitions
,
110 ARRAY_SIZE(ebony_small_partitions
));
112 printk("map probe failed for flash\n");
116 ebony_large_map
.phys
= large_flash_base
;
117 ebony_large_map
.virt
= ioremap64(large_flash_base
,
118 ebony_large_map
.size
);
120 if (!ebony_large_map
.virt
) {
121 printk("Failed to ioremap flash\n");
125 simple_map_init(&ebony_large_map
);
127 flash
= do_map_probe("jedec_probe", &ebony_large_map
);
129 flash
->owner
= THIS_MODULE
;
130 add_mtd_partitions(flash
, ebony_large_partitions
,
131 ARRAY_SIZE(ebony_large_partitions
));
133 printk("map probe failed for flash\n");
140 static void __exit
cleanup_ebony(void)
143 del_mtd_partitions(flash
);
147 if (ebony_small_map
.virt
) {
148 iounmap(ebony_small_map
.virt
);
149 ebony_small_map
.virt
= NULL
;
152 if (ebony_large_map
.virt
) {
153 iounmap(ebony_large_map
.virt
);
154 ebony_large_map
.virt
= NULL
;
158 module_init(init_ebony
);
159 module_exit(cleanup_ebony
);
161 MODULE_LICENSE("GPL");
162 MODULE_AUTHOR("Matt Porter <mporter@kernel.crashing.org>");
163 MODULE_DESCRIPTION("MTD map and partitions for IBM 440GP Ebony boards");