2 * drivers/mtd/maps/bfin-async-flash.c
4 * Handle the case where flash memory and ethernet mac/phy are
5 * mapped onto the same async bank. The BF533-STAMP does this
6 * for example. All board-specific configuration goes in your
7 * board resources file.
9 * Copyright 2000 Nicolas Pitre <nico@fluxnic.net>
10 * Copyright 2005-2008 Analog Devices Inc.
12 * Enter bugs at http://blackfin.uclinux.org/
14 * Licensed under the GPL-2 or later.
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/map.h>
22 #include <linux/mtd/partitions.h>
23 #include <linux/mtd/physmap.h>
24 #include <linux/platform_device.h>
25 #include <linux/types.h>
27 #include <asm/blackfin.h>
28 #include <linux/gpio.h>
30 #include <asm/unaligned.h>
32 #define pr_devinit(fmt, args...) ({ static const __devinitconst char __fmt[] = fmt; printk(__fmt, ## args); })
34 #define DRIVER_NAME "bfin-async-flash"
40 uint32_t flash_ambctl0
, flash_ambctl1
;
41 uint32_t save_ambctl0
, save_ambctl1
;
42 unsigned long irq_flags
;
43 #ifdef CONFIG_MTD_PARTITIONS
44 struct mtd_partition
*parts
;
48 static void switch_to_flash(struct async_state
*state
)
50 local_irq_save(state
->irq_flags
);
52 gpio_set_value(state
->enet_flash_pin
, 0);
54 state
->save_ambctl0
= bfin_read_EBIU_AMBCTL0();
55 state
->save_ambctl1
= bfin_read_EBIU_AMBCTL1();
56 bfin_write_EBIU_AMBCTL0(state
->flash_ambctl0
);
57 bfin_write_EBIU_AMBCTL1(state
->flash_ambctl1
);
61 static void switch_back(struct async_state
*state
)
63 bfin_write_EBIU_AMBCTL0(state
->save_ambctl0
);
64 bfin_write_EBIU_AMBCTL1(state
->save_ambctl1
);
67 gpio_set_value(state
->enet_flash_pin
, 1);
69 local_irq_restore(state
->irq_flags
);
72 static map_word
bfin_read(struct map_info
*map
, unsigned long ofs
)
74 struct async_state
*state
= (struct async_state
*)map
->map_priv_1
;
78 switch_to_flash(state
);
80 word
= readw(map
->virt
+ ofs
);
88 static void bfin_copy_from(struct map_info
*map
, void *to
, unsigned long from
, ssize_t len
)
90 struct async_state
*state
= (struct async_state
*)map
->map_priv_1
;
92 switch_to_flash(state
);
94 memcpy(to
, map
->virt
+ from
, len
);
99 static void bfin_write(struct map_info
*map
, map_word d1
, unsigned long ofs
)
101 struct async_state
*state
= (struct async_state
*)map
->map_priv_1
;
106 switch_to_flash(state
);
108 writew(d
, map
->virt
+ ofs
);
114 static void bfin_copy_to(struct map_info
*map
, unsigned long to
, const void *from
, ssize_t len
)
116 struct async_state
*state
= (struct async_state
*)map
->map_priv_1
;
118 switch_to_flash(state
);
120 memcpy(map
->virt
+ to
, from
, len
);
126 #ifdef CONFIG_MTD_PARTITIONS
127 static const char *part_probe_types
[] = { "cmdlinepart", "RedBoot", NULL
};
130 static int __devinit
bfin_flash_probe(struct platform_device
*pdev
)
133 struct physmap_flash_data
*pdata
= pdev
->dev
.platform_data
;
134 struct resource
*memory
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
135 struct resource
*flash_ambctl
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
136 struct async_state
*state
;
138 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
142 state
->map
.name
= DRIVER_NAME
;
143 state
->map
.read
= bfin_read
;
144 state
->map
.copy_from
= bfin_copy_from
;
145 state
->map
.write
= bfin_write
;
146 state
->map
.copy_to
= bfin_copy_to
;
147 state
->map
.bankwidth
= pdata
->width
;
148 state
->map
.size
= memory
->end
- memory
->start
+ 1;
149 state
->map
.virt
= (void __iomem
*)memory
->start
;
150 state
->map
.phys
= memory
->start
;
151 state
->map
.map_priv_1
= (unsigned long)state
;
152 state
->enet_flash_pin
= platform_get_irq(pdev
, 0);
153 state
->flash_ambctl0
= flash_ambctl
->start
;
154 state
->flash_ambctl1
= flash_ambctl
->end
;
156 if (gpio_request(state
->enet_flash_pin
, DRIVER_NAME
)) {
157 pr_devinit(KERN_ERR DRIVER_NAME
": Failed to request gpio %d\n", state
->enet_flash_pin
);
161 gpio_direction_output(state
->enet_flash_pin
, 1);
163 pr_devinit(KERN_NOTICE DRIVER_NAME
": probing %d-bit flash bus\n", state
->map
.bankwidth
* 8);
164 state
->mtd
= do_map_probe(memory
->name
, &state
->map
);
166 gpio_free(state
->enet_flash_pin
);
171 #ifdef CONFIG_MTD_PARTITIONS
172 ret
= parse_mtd_partitions(state
->mtd
, part_probe_types
, &pdata
->parts
, 0);
174 pr_devinit(KERN_NOTICE DRIVER_NAME
": Using commandline partition definition\n");
175 add_mtd_partitions(state
->mtd
, pdata
->parts
, ret
);
176 state
->parts
= pdata
->parts
;
178 } else if (pdata
->nr_parts
) {
179 pr_devinit(KERN_NOTICE DRIVER_NAME
": Using board partition definition\n");
180 add_mtd_partitions(state
->mtd
, pdata
->parts
, pdata
->nr_parts
);
185 pr_devinit(KERN_NOTICE DRIVER_NAME
": no partition info available, registering whole flash at once\n");
186 add_mtd_device(state
->mtd
);
189 platform_set_drvdata(pdev
, state
);
194 static int __devexit
bfin_flash_remove(struct platform_device
*pdev
)
196 struct async_state
*state
= platform_get_drvdata(pdev
);
197 gpio_free(state
->enet_flash_pin
);
198 #ifdef CONFIG_MTD_PARTITIONS
199 del_mtd_partitions(state
->mtd
);
202 map_destroy(state
->mtd
);
207 static struct platform_driver bfin_flash_driver
= {
208 .probe
= bfin_flash_probe
,
209 .remove
= __devexit_p(bfin_flash_remove
),
215 static int __init
bfin_flash_init(void)
217 return platform_driver_register(&bfin_flash_driver
);
219 module_init(bfin_flash_init
);
221 static void __exit
bfin_flash_exit(void)
223 platform_driver_unregister(&bfin_flash_driver
);
225 module_exit(bfin_flash_exit
);
227 MODULE_LICENSE("GPL");
228 MODULE_DESCRIPTION("MTD map driver for Blackfins with flash/ethernet on same async bank");