RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / char / ps3flash.c
blob85c004a518ee1d9196aebb28a75e5464fce6354b
1 /*
2 * PS3 FLASH ROM Storage Driver
4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2007 Sony Corp.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; version 2 of the License.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <linux/fs.h>
22 #include <linux/miscdevice.h>
23 #include <linux/slab.h>
24 #include <linux/uaccess.h>
26 #include <asm/lv1call.h>
27 #include <asm/ps3stor.h>
30 #define DEVICE_NAME "ps3flash"
32 #define FLASH_BLOCK_SIZE (256*1024)
35 struct ps3flash_private {
36 struct mutex mutex; /* Bounce buffer mutex */
37 u64 chunk_sectors;
38 int tag; /* Start sector of buffer, -1 if invalid */
39 bool dirty;
42 static struct ps3_storage_device *ps3flash_dev;
44 static int ps3flash_read_write_sectors(struct ps3_storage_device *dev,
45 u64 start_sector, int write)
47 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
48 u64 res = ps3stor_read_write_sectors(dev, dev->bounce_lpar,
49 start_sector, priv->chunk_sectors,
50 write);
51 if (res) {
52 dev_err(&dev->sbd.core, "%s:%u: %s failed 0x%llx\n", __func__,
53 __LINE__, write ? "write" : "read", res);
54 return -EIO;
56 return 0;
59 static int ps3flash_writeback(struct ps3_storage_device *dev)
61 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
62 int res;
64 if (!priv->dirty || priv->tag < 0)
65 return 0;
67 res = ps3flash_read_write_sectors(dev, priv->tag, 1);
68 if (res)
69 return res;
71 priv->dirty = false;
72 return 0;
75 static int ps3flash_fetch(struct ps3_storage_device *dev, u64 start_sector)
77 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
78 int res;
80 if (start_sector == priv->tag)
81 return 0;
83 res = ps3flash_writeback(dev);
84 if (res)
85 return res;
87 priv->tag = -1;
89 res = ps3flash_read_write_sectors(dev, start_sector, 0);
90 if (res)
91 return res;
93 priv->tag = start_sector;
94 return 0;
97 static loff_t ps3flash_llseek(struct file *file, loff_t offset, int origin)
99 struct ps3_storage_device *dev = ps3flash_dev;
100 loff_t res;
102 mutex_lock(&file->f_mapping->host->i_mutex);
103 switch (origin) {
104 case 1:
105 offset += file->f_pos;
106 break;
107 case 2:
108 offset += dev->regions[dev->region_idx].size*dev->blk_size;
109 break;
111 if (offset < 0) {
112 res = -EINVAL;
113 goto out;
116 file->f_pos = offset;
117 res = file->f_pos;
119 out:
120 mutex_unlock(&file->f_mapping->host->i_mutex);
121 return res;
124 static ssize_t ps3flash_read(char __user *userbuf, void *kernelbuf,
125 size_t count, loff_t *pos)
127 struct ps3_storage_device *dev = ps3flash_dev;
128 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
129 u64 size, sector, offset;
130 int res;
131 size_t remaining, n;
132 const void *src;
134 dev_dbg(&dev->sbd.core,
135 "%s:%u: Reading %zu bytes at position %lld to U0x%p/K0x%p\n",
136 __func__, __LINE__, count, *pos, userbuf, kernelbuf);
138 size = dev->regions[dev->region_idx].size*dev->blk_size;
139 if (*pos >= size || !count)
140 return 0;
142 if (*pos + count > size) {
143 dev_dbg(&dev->sbd.core,
144 "%s:%u Truncating count from %zu to %llu\n", __func__,
145 __LINE__, count, size - *pos);
146 count = size - *pos;
149 sector = *pos / dev->bounce_size * priv->chunk_sectors;
150 offset = *pos % dev->bounce_size;
152 remaining = count;
153 do {
154 n = min_t(u64, remaining, dev->bounce_size - offset);
155 src = dev->bounce_buf + offset;
157 mutex_lock(&priv->mutex);
159 res = ps3flash_fetch(dev, sector);
160 if (res)
161 goto fail;
163 dev_dbg(&dev->sbd.core,
164 "%s:%u: copy %lu bytes from 0x%p to U0x%p/K0x%p\n",
165 __func__, __LINE__, n, src, userbuf, kernelbuf);
166 if (userbuf) {
167 if (copy_to_user(userbuf, src, n)) {
168 res = -EFAULT;
169 goto fail;
171 userbuf += n;
173 if (kernelbuf) {
174 memcpy(kernelbuf, src, n);
175 kernelbuf += n;
178 mutex_unlock(&priv->mutex);
180 *pos += n;
181 remaining -= n;
182 sector += priv->chunk_sectors;
183 offset = 0;
184 } while (remaining > 0);
186 return count;
188 fail:
189 mutex_unlock(&priv->mutex);
190 return res;
193 static ssize_t ps3flash_write(const char __user *userbuf,
194 const void *kernelbuf, size_t count, loff_t *pos)
196 struct ps3_storage_device *dev = ps3flash_dev;
197 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
198 u64 size, sector, offset;
199 int res = 0;
200 size_t remaining, n;
201 void *dst;
203 dev_dbg(&dev->sbd.core,
204 "%s:%u: Writing %zu bytes at position %lld from U0x%p/K0x%p\n",
205 __func__, __LINE__, count, *pos, userbuf, kernelbuf);
207 size = dev->regions[dev->region_idx].size*dev->blk_size;
208 if (*pos >= size || !count)
209 return 0;
211 if (*pos + count > size) {
212 dev_dbg(&dev->sbd.core,
213 "%s:%u Truncating count from %zu to %llu\n", __func__,
214 __LINE__, count, size - *pos);
215 count = size - *pos;
218 sector = *pos / dev->bounce_size * priv->chunk_sectors;
219 offset = *pos % dev->bounce_size;
221 remaining = count;
222 do {
223 n = min_t(u64, remaining, dev->bounce_size - offset);
224 dst = dev->bounce_buf + offset;
226 mutex_lock(&priv->mutex);
228 if (n != dev->bounce_size)
229 res = ps3flash_fetch(dev, sector);
230 else if (sector != priv->tag)
231 res = ps3flash_writeback(dev);
232 if (res)
233 goto fail;
235 dev_dbg(&dev->sbd.core,
236 "%s:%u: copy %lu bytes from U0x%p/K0x%p to 0x%p\n",
237 __func__, __LINE__, n, userbuf, kernelbuf, dst);
238 if (userbuf) {
239 if (copy_from_user(dst, userbuf, n)) {
240 res = -EFAULT;
241 goto fail;
243 userbuf += n;
245 if (kernelbuf) {
246 memcpy(dst, kernelbuf, n);
247 kernelbuf += n;
250 priv->tag = sector;
251 priv->dirty = true;
253 mutex_unlock(&priv->mutex);
255 *pos += n;
256 remaining -= n;
257 sector += priv->chunk_sectors;
258 offset = 0;
259 } while (remaining > 0);
261 return count;
263 fail:
264 mutex_unlock(&priv->mutex);
265 return res;
268 static ssize_t ps3flash_user_read(struct file *file, char __user *buf,
269 size_t count, loff_t *pos)
271 return ps3flash_read(buf, NULL, count, pos);
274 static ssize_t ps3flash_user_write(struct file *file, const char __user *buf,
275 size_t count, loff_t *pos)
277 return ps3flash_write(buf, NULL, count, pos);
280 static ssize_t ps3flash_kernel_read(void *buf, size_t count, loff_t pos)
282 return ps3flash_read(NULL, buf, count, &pos);
285 static ssize_t ps3flash_kernel_write(const void *buf, size_t count,
286 loff_t pos)
288 ssize_t res;
289 int wb;
291 res = ps3flash_write(NULL, buf, count, &pos);
292 if (res < 0)
293 return res;
295 /* Make kernel writes synchronous */
296 wb = ps3flash_writeback(ps3flash_dev);
297 if (wb)
298 return wb;
300 return res;
303 static int ps3flash_flush(struct file *file, fl_owner_t id)
305 return ps3flash_writeback(ps3flash_dev);
308 static int ps3flash_fsync(struct file *file, int datasync)
310 return ps3flash_writeback(ps3flash_dev);
313 static irqreturn_t ps3flash_interrupt(int irq, void *data)
315 struct ps3_storage_device *dev = data;
316 int res;
317 u64 tag, status;
319 res = lv1_storage_get_async_status(dev->sbd.dev_id, &tag, &status);
321 if (tag != dev->tag)
322 dev_err(&dev->sbd.core,
323 "%s:%u: tag mismatch, got %llx, expected %llx\n",
324 __func__, __LINE__, tag, dev->tag);
326 if (res) {
327 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n",
328 __func__, __LINE__, res, status);
329 } else {
330 dev->lv1_status = status;
331 complete(&dev->done);
333 return IRQ_HANDLED;
336 static const struct file_operations ps3flash_fops = {
337 .owner = THIS_MODULE,
338 .llseek = ps3flash_llseek,
339 .read = ps3flash_user_read,
340 .write = ps3flash_user_write,
341 .flush = ps3flash_flush,
342 .fsync = ps3flash_fsync,
345 static const struct ps3_os_area_flash_ops ps3flash_kernel_ops = {
346 .read = ps3flash_kernel_read,
347 .write = ps3flash_kernel_write,
350 static struct miscdevice ps3flash_misc = {
351 .minor = MISC_DYNAMIC_MINOR,
352 .name = DEVICE_NAME,
353 .fops = &ps3flash_fops,
356 static int __devinit ps3flash_probe(struct ps3_system_bus_device *_dev)
358 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
359 struct ps3flash_private *priv;
360 int error;
361 unsigned long tmp;
363 tmp = dev->regions[dev->region_idx].start*dev->blk_size;
364 if (tmp % FLASH_BLOCK_SIZE) {
365 dev_err(&dev->sbd.core,
366 "%s:%u region start %lu is not aligned\n", __func__,
367 __LINE__, tmp);
368 return -EINVAL;
370 tmp = dev->regions[dev->region_idx].size*dev->blk_size;
371 if (tmp % FLASH_BLOCK_SIZE) {
372 dev_err(&dev->sbd.core,
373 "%s:%u region size %lu is not aligned\n", __func__,
374 __LINE__, tmp);
375 return -EINVAL;
378 /* use static buffer, kmalloc cannot allocate 256 KiB */
379 if (!ps3flash_bounce_buffer.address)
380 return -ENODEV;
382 if (ps3flash_dev) {
383 dev_err(&dev->sbd.core,
384 "Only one FLASH device is supported\n");
385 return -EBUSY;
388 ps3flash_dev = dev;
390 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
391 if (!priv) {
392 error = -ENOMEM;
393 goto fail;
396 ps3_system_bus_set_drvdata(&dev->sbd, priv);
397 mutex_init(&priv->mutex);
398 priv->tag = -1;
400 dev->bounce_size = ps3flash_bounce_buffer.size;
401 dev->bounce_buf = ps3flash_bounce_buffer.address;
402 priv->chunk_sectors = dev->bounce_size / dev->blk_size;
404 error = ps3stor_setup(dev, ps3flash_interrupt);
405 if (error)
406 goto fail_free_priv;
408 ps3flash_misc.parent = &dev->sbd.core;
409 error = misc_register(&ps3flash_misc);
410 if (error) {
411 dev_err(&dev->sbd.core, "%s:%u: misc_register failed %d\n",
412 __func__, __LINE__, error);
413 goto fail_teardown;
416 dev_info(&dev->sbd.core, "%s:%u: registered misc device %d\n",
417 __func__, __LINE__, ps3flash_misc.minor);
419 ps3_os_area_flash_register(&ps3flash_kernel_ops);
420 return 0;
422 fail_teardown:
423 ps3stor_teardown(dev);
424 fail_free_priv:
425 kfree(priv);
426 ps3_system_bus_set_drvdata(&dev->sbd, NULL);
427 fail:
428 ps3flash_dev = NULL;
429 return error;
432 static int ps3flash_remove(struct ps3_system_bus_device *_dev)
434 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
436 ps3_os_area_flash_register(NULL);
437 misc_deregister(&ps3flash_misc);
438 ps3stor_teardown(dev);
439 kfree(ps3_system_bus_get_drvdata(&dev->sbd));
440 ps3_system_bus_set_drvdata(&dev->sbd, NULL);
441 ps3flash_dev = NULL;
442 return 0;
446 static struct ps3_system_bus_driver ps3flash = {
447 .match_id = PS3_MATCH_ID_STOR_FLASH,
448 .core.name = DEVICE_NAME,
449 .core.owner = THIS_MODULE,
450 .probe = ps3flash_probe,
451 .remove = ps3flash_remove,
452 .shutdown = ps3flash_remove,
456 static int __init ps3flash_init(void)
458 return ps3_system_bus_driver_register(&ps3flash);
461 static void __exit ps3flash_exit(void)
463 ps3_system_bus_driver_unregister(&ps3flash);
466 module_init(ps3flash_init);
467 module_exit(ps3flash_exit);
469 MODULE_LICENSE("GPL");
470 MODULE_DESCRIPTION("PS3 FLASH ROM Storage Driver");
471 MODULE_AUTHOR("Sony Corporation");
472 MODULE_ALIAS(PS3_MODULE_ALIAS_STOR_FLASH);