]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/mtd/maps/lantiq-flash.c
mtd: lantiq-flash don't specify default parsing options
[karo-tx-linux.git] / drivers / mtd / maps / lantiq-flash.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify it
3  *  under the terms of the GNU General Public License version 2 as published
4  *  by the Free Software Foundation.
5  *
6  *  Copyright (C) 2004 Liu Peng Infineon IFAP DC COM CPE
7  *  Copyright (C) 2010 John Crispin <blogic@openwrt.org>
8  */
9
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/kernel.h>
13 #include <linux/io.h>
14 #include <linux/slab.h>
15 #include <linux/init.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/map.h>
18 #include <linux/mtd/partitions.h>
19 #include <linux/mtd/cfi.h>
20 #include <linux/platform_device.h>
21 #include <linux/mtd/physmap.h>
22
23 #include <lantiq_soc.h>
24 #include <lantiq_platform.h>
25
26 /*
27  * The NOR flash is connected to the same external bus unit (EBU) as PCI.
28  * To make PCI work we need to enable the endianness swapping for the address
29  * written to the EBU. This endianness swapping works for PCI correctly but
30  * fails for attached NOR devices. To workaround this we need to use a complex
31  * map. The workaround involves swapping all addresses whilst probing the chip.
32  * Once probing is complete we stop swapping the addresses but swizzle the
33  * unlock addresses to ensure that access to the NOR device works correctly.
34  */
35
36 enum {
37         LTQ_NOR_PROBING,
38         LTQ_NOR_NORMAL
39 };
40
41 struct ltq_mtd {
42         struct resource *res;
43         struct mtd_info *mtd;
44         struct map_info *map;
45 };
46
47 static char ltq_map_name[] = "ltq_nor";
48
49 static map_word
50 ltq_read16(struct map_info *map, unsigned long adr)
51 {
52         unsigned long flags;
53         map_word temp;
54
55         if (map->map_priv_1 == LTQ_NOR_PROBING)
56                 adr ^= 2;
57         spin_lock_irqsave(&ebu_lock, flags);
58         temp.x[0] = *(u16 *)(map->virt + adr);
59         spin_unlock_irqrestore(&ebu_lock, flags);
60         return temp;
61 }
62
63 static void
64 ltq_write16(struct map_info *map, map_word d, unsigned long adr)
65 {
66         unsigned long flags;
67
68         if (map->map_priv_1 == LTQ_NOR_PROBING)
69                 adr ^= 2;
70         spin_lock_irqsave(&ebu_lock, flags);
71         *(u16 *)(map->virt + adr) = d.x[0];
72         spin_unlock_irqrestore(&ebu_lock, flags);
73 }
74
75 /*
76  * The following 2 functions copy data between iomem and a cached memory
77  * section. As memcpy() makes use of pre-fetching we cannot use it here.
78  * The normal alternative of using memcpy_{to,from}io also makes use of
79  * memcpy() on MIPS so it is not applicable either. We are therefore stuck
80  * with having to use our own loop.
81  */
82 static void
83 ltq_copy_from(struct map_info *map, void *to,
84         unsigned long from, ssize_t len)
85 {
86         unsigned char *f = (unsigned char *)map->virt + from;
87         unsigned char *t = (unsigned char *)to;
88         unsigned long flags;
89
90         spin_lock_irqsave(&ebu_lock, flags);
91         while (len--)
92                 *t++ = *f++;
93         spin_unlock_irqrestore(&ebu_lock, flags);
94 }
95
96 static void
97 ltq_copy_to(struct map_info *map, unsigned long to,
98         const void *from, ssize_t len)
99 {
100         unsigned char *f = (unsigned char *)from;
101         unsigned char *t = (unsigned char *)map->virt + to;
102         unsigned long flags;
103
104         spin_lock_irqsave(&ebu_lock, flags);
105         while (len--)
106                 *t++ = *f++;
107         spin_unlock_irqrestore(&ebu_lock, flags);
108 }
109
110 static int __init
111 ltq_mtd_probe(struct platform_device *pdev)
112 {
113         struct physmap_flash_data *ltq_mtd_data = dev_get_platdata(&pdev->dev);
114         struct ltq_mtd *ltq_mtd;
115         struct mtd_partition *parts;
116         struct resource *res;
117         int nr_parts = 0;
118         struct cfi_private *cfi;
119         int err;
120
121         ltq_mtd = kzalloc(sizeof(struct ltq_mtd), GFP_KERNEL);
122         platform_set_drvdata(pdev, ltq_mtd);
123
124         ltq_mtd->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
125         if (!ltq_mtd->res) {
126                 dev_err(&pdev->dev, "failed to get memory resource");
127                 err = -ENOENT;
128                 goto err_out;
129         }
130
131         res = devm_request_mem_region(&pdev->dev, ltq_mtd->res->start,
132                 resource_size(ltq_mtd->res), dev_name(&pdev->dev));
133         if (!ltq_mtd->res) {
134                 dev_err(&pdev->dev, "failed to request mem resource");
135                 err = -EBUSY;
136                 goto err_out;
137         }
138
139         ltq_mtd->map = kzalloc(sizeof(struct map_info), GFP_KERNEL);
140         ltq_mtd->map->phys = res->start;
141         ltq_mtd->map->size = resource_size(res);
142         ltq_mtd->map->virt = devm_ioremap_nocache(&pdev->dev,
143                                 ltq_mtd->map->phys, ltq_mtd->map->size);
144         if (!ltq_mtd->map->virt) {
145                 dev_err(&pdev->dev, "failed to ioremap!\n");
146                 err = -ENOMEM;
147                 goto err_free;
148         }
149
150         ltq_mtd->map->name = ltq_map_name;
151         ltq_mtd->map->bankwidth = 2;
152         ltq_mtd->map->read = ltq_read16;
153         ltq_mtd->map->write = ltq_write16;
154         ltq_mtd->map->copy_from = ltq_copy_from;
155         ltq_mtd->map->copy_to = ltq_copy_to;
156
157         ltq_mtd->map->map_priv_1 = LTQ_NOR_PROBING;
158         ltq_mtd->mtd = do_map_probe("cfi_probe", ltq_mtd->map);
159         ltq_mtd->map->map_priv_1 = LTQ_NOR_NORMAL;
160
161         if (!ltq_mtd->mtd) {
162                 dev_err(&pdev->dev, "probing failed\n");
163                 err = -ENXIO;
164                 goto err_unmap;
165         }
166
167         ltq_mtd->mtd->owner = THIS_MODULE;
168
169         cfi = ltq_mtd->map->fldrv_priv;
170         cfi->addr_unlock1 ^= 1;
171         cfi->addr_unlock2 ^= 1;
172
173         nr_parts = parse_mtd_partitions(ltq_mtd->mtd, NULL, &parts, 0);
174         if (nr_parts > 0) {
175                 dev_info(&pdev->dev,
176                         "using %d partitions from cmdline", nr_parts);
177         } else {
178                 nr_parts = ltq_mtd_data->nr_parts;
179                 parts = ltq_mtd_data->parts;
180         }
181
182         err = add_mtd_partitions(ltq_mtd->mtd, parts, nr_parts);
183         if (err) {
184                 dev_err(&pdev->dev, "failed to add partitions\n");
185                 goto err_destroy;
186         }
187
188         return 0;
189
190 err_destroy:
191         map_destroy(ltq_mtd->mtd);
192 err_unmap:
193         iounmap(ltq_mtd->map->virt);
194 err_free:
195         kfree(ltq_mtd->map);
196 err_out:
197         kfree(ltq_mtd);
198         return err;
199 }
200
201 static int __devexit
202 ltq_mtd_remove(struct platform_device *pdev)
203 {
204         struct ltq_mtd *ltq_mtd = platform_get_drvdata(pdev);
205
206         if (ltq_mtd) {
207                 if (ltq_mtd->mtd) {
208                         del_mtd_partitions(ltq_mtd->mtd);
209                         map_destroy(ltq_mtd->mtd);
210                 }
211                 if (ltq_mtd->map->virt)
212                         iounmap(ltq_mtd->map->virt);
213                 kfree(ltq_mtd->map);
214                 kfree(ltq_mtd);
215         }
216         return 0;
217 }
218
219 static struct platform_driver ltq_mtd_driver = {
220         .remove = __devexit_p(ltq_mtd_remove),
221         .driver = {
222                 .name = "ltq_nor",
223                 .owner = THIS_MODULE,
224         },
225 };
226
227 static int __init
228 init_ltq_mtd(void)
229 {
230         int ret = platform_driver_probe(&ltq_mtd_driver, ltq_mtd_probe);
231
232         if (ret)
233                 pr_err("ltq_nor: error registering platform driver");
234         return ret;
235 }
236
237 static void __exit
238 exit_ltq_mtd(void)
239 {
240         platform_driver_unregister(&ltq_mtd_driver);
241 }
242
243 module_init(init_ltq_mtd);
244 module_exit(exit_ltq_mtd);
245
246 MODULE_LICENSE("GPL");
247 MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
248 MODULE_DESCRIPTION("Lantiq SoC NOR");