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.
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 {
33 struct pismo_cs_block cs[PISMO_NUM_CS];
47 struct i2c_client *client;
48 void (*vpp)(void *, int);
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);
61 mutex_unlock(&pismo_mutex);
66 mutex_unlock(&pismo_mutex);
70 static void pismo_setvpp_remove_fix(struct pismo_data *pismo)
72 mutex_lock(&pismo_mutex);
73 if (vpp_pismo == pismo)
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);
87 static unsigned int __devinit pismo_width_to_bytes(unsigned int width)
95 static int __devinit pismo_eeprom_read(struct i2c_client *client, void *buf,
99 struct i2c_msg msg[] = {
101 .addr = client->addr,
105 .addr = client->addr,
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;
129 res.end = base + region->size - 1;
130 res.flags = IORESOURCE_MEM;
132 dev = platform_device_alloc(name, i);
135 dev->dev.parent = &pismo->client->dev;
138 ret = platform_device_add_resources(dev, &res, 1);
142 ret = platform_device_add_data(dev, pdata, psize);
146 ret = platform_device_add(dev);
154 platform_device_put(dev);
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,
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;
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);
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) {
217 pismo_add_nor(pismo, i, ®ion);
221 pismo_add_sram(pismo, i, ®ion);
226 static int __devexit pismo_remove(struct i2c_client *client)
228 struct pismo_data *pismo = i2c_get_clientdata(client);
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);
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;
251 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) {
252 dev_err(&client->dev, "functionality mismatch\n");
256 pismo = kzalloc(sizeof(*pismo), GFP_KERNEL);
260 /* FIXME: set_vpp needs saner arguments */
261 ret = pismo_setvpp_probe_fix(pismo);
265 pismo->client = client;
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));
274 dev_err(&client->dev, "error reading EEPROM: %d\n", ret);
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],
292 static const struct i2c_device_id pismo_id[] = {
296 MODULE_DEVICE_TABLE(i2c, pismo_id);
298 static struct i2c_driver pismo_driver = {
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");