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 static void pismo_set_vpp(struct platform_device *pdev, int on)
55 struct i2c_client *client = to_i2c_client(pdev->dev.parent);
56 struct pismo_data *pismo = i2c_get_clientdata(client);
58 pismo->vpp(pismo->vpp_data, on);
61 static unsigned int pismo_width_to_bytes(unsigned int width)
69 static int pismo_eeprom_read(struct i2c_client *client, void *buf, u8 addr,
73 struct i2c_msg msg[] = {
86 ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
88 return ret == ARRAY_SIZE(msg) ? size : -EIO;
91 static int pismo_add_device(struct pismo_data *pismo, int i,
92 struct pismo_mem *region, const char *name,
93 void *pdata, size_t psize)
95 struct platform_device *dev;
96 struct resource res = { };
97 phys_addr_t base = region->base;
104 res.end = base + region->size - 1;
105 res.flags = IORESOURCE_MEM;
107 dev = platform_device_alloc(name, i);
110 dev->dev.parent = &pismo->client->dev;
113 ret = platform_device_add_resources(dev, &res, 1);
117 ret = platform_device_add_data(dev, pdata, psize);
121 ret = platform_device_add(dev);
129 platform_device_put(dev);
133 static int pismo_add_nor(struct pismo_data *pismo, int i,
134 struct pismo_mem *region)
136 struct physmap_flash_data data = {
137 .width = region->width,
141 data.set_vpp = pismo_set_vpp;
143 return pismo_add_device(pismo, i, region, "physmap-flash",
144 &data, sizeof(data));
147 static int pismo_add_sram(struct pismo_data *pismo, int i,
148 struct pismo_mem *region)
150 struct platdata_mtd_ram data = {
151 .bankwidth = region->width,
154 return pismo_add_device(pismo, i, region, "mtd-ram",
155 &data, sizeof(data));
158 static void pismo_add_one(struct pismo_data *pismo, int i,
159 const struct pismo_cs_block *cs, phys_addr_t base)
161 struct device *dev = &pismo->client->dev;
162 struct pismo_mem region;
165 region.type = cs->type;
166 region.width = pismo_width_to_bytes(cs->width);
167 region.access = le16_to_cpu(cs->access);
168 region.size = le32_to_cpu(cs->size);
170 if (region.width == 0) {
171 dev_err(dev, "cs%u: bad width: %02x, ignoring\n", i, cs->width);
176 * FIXME: may need to the platforms memory controller here, but at
177 * the moment we assume that it has already been correctly setup.
178 * The memory controller can also tell us the base address as well.
181 dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n",
182 i, cs->device, region.type, region.access, region.size / 1024);
184 switch (region.type) {
192 pismo_add_nor(pismo, i, ®ion);
196 pismo_add_sram(pismo, i, ®ion);
201 static int pismo_remove(struct i2c_client *client)
203 struct pismo_data *pismo = i2c_get_clientdata(client);
206 for (i = 0; i < ARRAY_SIZE(pismo->dev); i++)
207 platform_device_unregister(pismo->dev[i]);
214 static int pismo_probe(struct i2c_client *client,
215 const struct i2c_device_id *id)
217 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
218 struct pismo_pdata *pdata = client->dev.platform_data;
219 struct pismo_eeprom eeprom;
220 struct pismo_data *pismo;
223 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) {
224 dev_err(&client->dev, "functionality mismatch\n");
228 pismo = kzalloc(sizeof(*pismo), GFP_KERNEL);
232 pismo->client = client;
234 pismo->vpp = pdata->set_vpp;
235 pismo->vpp_data = pdata->vpp_data;
237 i2c_set_clientdata(client, pismo);
239 ret = pismo_eeprom_read(client, &eeprom, 0, sizeof(eeprom));
241 dev_err(&client->dev, "error reading EEPROM: %d\n", ret);
245 dev_info(&client->dev, "%.15s board found\n", eeprom.board);
247 for (i = 0; i < ARRAY_SIZE(eeprom.cs); i++)
248 if (eeprom.cs[i].type != 0xff)
249 pismo_add_one(pismo, i, &eeprom.cs[i],
259 static const struct i2c_device_id pismo_id[] = {
263 MODULE_DEVICE_TABLE(i2c, pismo_id);
265 static struct i2c_driver pismo_driver = {
269 .probe = pismo_probe,
270 .remove = pismo_remove,
271 .id_table = pismo_id,
274 static int __init pismo_init(void)
276 BUILD_BUG_ON(sizeof(struct pismo_cs_block) != 48);
277 BUILD_BUG_ON(sizeof(struct pismo_eeprom) != 256);
279 return i2c_add_driver(&pismo_driver);
281 module_init(pismo_init);
283 static void __exit pismo_exit(void)
285 i2c_del_driver(&pismo_driver);
287 module_exit(pismo_exit);
290 MODULE_DESCRIPTION("PISMO memory driver");
291 MODULE_LICENSE("GPL");