libata: fix oops when LPM is used with PMP
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / mtd / maps / pismo.c
blobf4ce273e93fd5e5888adbc73c9e684bd5568849c
1 /*
2 * PISMO memory driver - http://www.pismoworld.org/
4 * For ARM Realview and Versatile platforms
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.
9 */
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/i2c.h>
13 #include <linux/slab.h>
14 #include <linux/platform_device.h>
15 #include <linux/spinlock.h>
16 #include <linux/mutex.h>
17 #include <linux/mtd/physmap.h>
18 #include <linux/mtd/plat-ram.h>
19 #include <linux/mtd/pismo.h>
21 #define PISMO_NUM_CS 5
23 struct pismo_cs_block {
24 u8 type;
25 u8 width;
26 __le16 access;
27 __le32 size;
28 u32 reserved[2];
29 char device[32];
30 } __packed;
32 struct pismo_eeprom {
33 struct pismo_cs_block cs[PISMO_NUM_CS];
34 char board[15];
35 u8 sum;
36 } __packed;
38 struct pismo_mem {
39 phys_addr_t base;
40 u32 size;
41 u16 access;
42 u8 width;
43 u8 type;
46 struct pismo_data {
47 struct i2c_client *client;
48 void (*vpp)(void *, int);
49 void *vpp_data;
50 struct platform_device *dev[PISMO_NUM_CS];
53 /* FIXME: set_vpp could do with a better calling convention */
54 static struct pismo_data *vpp_pismo;
55 static DEFINE_MUTEX(pismo_mutex);
57 static int pismo_setvpp_probe_fix(struct pismo_data *pismo)
59 mutex_lock(&pismo_mutex);
60 if (vpp_pismo) {
61 mutex_unlock(&pismo_mutex);
62 kfree(pismo);
63 return -EBUSY;
65 vpp_pismo = pismo;
66 mutex_unlock(&pismo_mutex);
67 return 0;
70 static void pismo_setvpp_remove_fix(struct pismo_data *pismo)
72 mutex_lock(&pismo_mutex);
73 if (vpp_pismo == pismo)
74 vpp_pismo = NULL;
75 mutex_unlock(&pismo_mutex);
78 static void pismo_set_vpp(struct map_info *map, int on)
80 struct pismo_data *pismo = vpp_pismo;
82 pismo->vpp(pismo->vpp_data, on);
84 /* end of hack */
87 static unsigned int __devinit pismo_width_to_bytes(unsigned int width)
89 width &= 15;
90 if (width > 2)
91 return 0;
92 return 1 << width;
95 static int __devinit pismo_eeprom_read(struct i2c_client *client, void *buf,
96 u8 addr, size_t size)
98 int ret;
99 struct i2c_msg msg[] = {
101 .addr = client->addr,
102 .len = sizeof(addr),
103 .buf = &addr,
104 }, {
105 .addr = client->addr,
106 .flags = I2C_M_RD,
107 .len = size,
108 .buf = buf,
112 ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
114 return ret == ARRAY_SIZE(msg) ? size : -EIO;
117 static int __devinit pismo_add_device(struct pismo_data *pismo, int i,
118 struct pismo_mem *region, const char *name, void *pdata, size_t psize)
120 struct platform_device *dev;
121 struct resource res = { };
122 phys_addr_t base = region->base;
123 int ret;
125 if (base == ~0)
126 return -ENXIO;
128 res.start = base;
129 res.end = base + region->size - 1;
130 res.flags = IORESOURCE_MEM;
132 dev = platform_device_alloc(name, i);
133 if (!dev)
134 return -ENOMEM;
135 dev->dev.parent = &pismo->client->dev;
137 do {
138 ret = platform_device_add_resources(dev, &res, 1);
139 if (ret)
140 break;
142 ret = platform_device_add_data(dev, pdata, psize);
143 if (ret)
144 break;
146 ret = platform_device_add(dev);
147 if (ret)
148 break;
150 pismo->dev[i] = dev;
151 return 0;
152 } while (0);
154 platform_device_put(dev);
155 return ret;
158 static int __devinit pismo_add_nor(struct pismo_data *pismo, int i,
159 struct pismo_mem *region)
161 struct physmap_flash_data data = {
162 .width = region->width,
165 if (pismo->vpp)
166 data.set_vpp = pismo_set_vpp;
168 return pismo_add_device(pismo, i, region, "physmap-flash",
169 &data, sizeof(data));
172 static int __devinit pismo_add_sram(struct pismo_data *pismo, int i,
173 struct pismo_mem *region)
175 struct platdata_mtd_ram data = {
176 .bankwidth = region->width,
179 return pismo_add_device(pismo, i, region, "mtd-ram",
180 &data, sizeof(data));
183 static void __devinit pismo_add_one(struct pismo_data *pismo, int i,
184 const struct pismo_cs_block *cs, phys_addr_t base)
186 struct device *dev = &pismo->client->dev;
187 struct pismo_mem region;
189 region.base = base;
190 region.type = cs->type;
191 region.width = pismo_width_to_bytes(cs->width);
192 region.access = le16_to_cpu(cs->access);
193 region.size = le32_to_cpu(cs->size);
195 if (region.width == 0) {
196 dev_err(dev, "cs%u: bad width: %02x, ignoring\n", i, cs->width);
197 return;
201 * FIXME: may need to the platforms memory controller here, but at
202 * the moment we assume that it has already been correctly setup.
203 * The memory controller can also tell us the base address as well.
206 dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n",
207 i, cs->device, region.type, region.access, region.size / 1024);
209 switch (region.type) {
210 case 0:
211 break;
212 case 1:
213 /* static DOC */
214 break;
215 case 2:
216 /* static NOR */
217 pismo_add_nor(pismo, i, &region);
218 break;
219 case 3:
220 /* static RAM */
221 pismo_add_sram(pismo, i, &region);
222 break;
226 static int __devexit pismo_remove(struct i2c_client *client)
228 struct pismo_data *pismo = i2c_get_clientdata(client);
229 int i;
231 for (i = 0; i < ARRAY_SIZE(pismo->dev); i++)
232 platform_device_unregister(pismo->dev[i]);
234 /* FIXME: set_vpp needs saner arguments */
235 pismo_setvpp_remove_fix(pismo);
237 kfree(pismo);
239 return 0;
242 static int __devinit pismo_probe(struct i2c_client *client,
243 const struct i2c_device_id *id)
245 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
246 struct pismo_pdata *pdata = client->dev.platform_data;
247 struct pismo_eeprom eeprom;
248 struct pismo_data *pismo;
249 int ret, i;
251 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) {
252 dev_err(&client->dev, "functionality mismatch\n");
253 return -EIO;
256 pismo = kzalloc(sizeof(*pismo), GFP_KERNEL);
257 if (!pismo)
258 return -ENOMEM;
260 /* FIXME: set_vpp needs saner arguments */
261 ret = pismo_setvpp_probe_fix(pismo);
262 if (ret)
263 return ret;
265 pismo->client = client;
266 if (pdata) {
267 pismo->vpp = pdata->set_vpp;
268 pismo->vpp_data = pdata->vpp_data;
270 i2c_set_clientdata(client, pismo);
272 ret = pismo_eeprom_read(client, &eeprom, 0, sizeof(eeprom));
273 if (ret < 0) {
274 dev_err(&client->dev, "error reading EEPROM: %d\n", ret);
275 goto exit_free;
278 dev_info(&client->dev, "%.15s board found\n", eeprom.board);
280 for (i = 0; i < ARRAY_SIZE(eeprom.cs); i++)
281 if (eeprom.cs[i].type != 0xff)
282 pismo_add_one(pismo, i, &eeprom.cs[i],
283 pdata->cs_addrs[i]);
285 return 0;
287 exit_free:
288 kfree(pismo);
289 return ret;
292 static const struct i2c_device_id pismo_id[] = {
293 { "pismo" },
294 { },
296 MODULE_DEVICE_TABLE(i2c, pismo_id);
298 static struct i2c_driver pismo_driver = {
299 .driver = {
300 .name = "pismo",
301 .owner = THIS_MODULE,
303 .probe = pismo_probe,
304 .remove = __devexit_p(pismo_remove),
305 .id_table = pismo_id,
308 static int __init pismo_init(void)
310 BUILD_BUG_ON(sizeof(struct pismo_cs_block) != 48);
311 BUILD_BUG_ON(sizeof(struct pismo_eeprom) != 256);
313 return i2c_add_driver(&pismo_driver);
315 module_init(pismo_init);
317 static void __exit pismo_exit(void)
319 i2c_del_driver(&pismo_driver);
321 module_exit(pismo_exit);
323 MODULE_AUTHOR("Russell King <linux@arm.linux.org.uk>");
324 MODULE_DESCRIPTION("PISMO memory driver");
325 MODULE_LICENSE("GPL");