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.
22 #include <linux/miscdevice.h>
23 #include <linux/slab.h>
24 #include <linux/uaccess.h>
25 #include <linux/module.h>
27 #include <asm/lv1call.h>
28 #include <asm/ps3stor.h>
31 #define DEVICE_NAME "ps3flash"
33 #define FLASH_BLOCK_SIZE (256*1024)
36 struct ps3flash_private {
37 struct mutex mutex; /* Bounce buffer mutex */
39 int tag; /* Start sector of buffer, -1 if invalid */
43 static struct ps3_storage_device *ps3flash_dev;
45 static int ps3flash_read_write_sectors(struct ps3_storage_device *dev,
46 u64 start_sector, int write)
48 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
49 u64 res = ps3stor_read_write_sectors(dev, dev->bounce_lpar,
50 start_sector, priv->chunk_sectors,
53 dev_err(&dev->sbd.core, "%s:%u: %s failed 0x%llx\n", __func__,
54 __LINE__, write ? "write" : "read", res);
60 static int ps3flash_writeback(struct ps3_storage_device *dev)
62 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
65 if (!priv->dirty || priv->tag < 0)
68 res = ps3flash_read_write_sectors(dev, priv->tag, 1);
76 static int ps3flash_fetch(struct ps3_storage_device *dev, u64 start_sector)
78 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
81 if (start_sector == priv->tag)
84 res = ps3flash_writeback(dev);
90 res = ps3flash_read_write_sectors(dev, start_sector, 0);
94 priv->tag = start_sector;
98 static loff_t ps3flash_llseek(struct file *file, loff_t offset, int origin)
100 struct ps3_storage_device *dev = ps3flash_dev;
103 mutex_lock(&file->f_mapping->host->i_mutex);
108 offset += file->f_pos;
111 offset += dev->regions[dev->region_idx].size*dev->blk_size;
121 file->f_pos = offset;
125 mutex_unlock(&file->f_mapping->host->i_mutex);
129 static ssize_t ps3flash_read(char __user *userbuf, void *kernelbuf,
130 size_t count, loff_t *pos)
132 struct ps3_storage_device *dev = ps3flash_dev;
133 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
134 u64 size, sector, offset;
139 dev_dbg(&dev->sbd.core,
140 "%s:%u: Reading %zu bytes at position %lld to U0x%p/K0x%p\n",
141 __func__, __LINE__, count, *pos, userbuf, kernelbuf);
143 size = dev->regions[dev->region_idx].size*dev->blk_size;
144 if (*pos >= size || !count)
147 if (*pos + count > size) {
148 dev_dbg(&dev->sbd.core,
149 "%s:%u Truncating count from %zu to %llu\n", __func__,
150 __LINE__, count, size - *pos);
154 sector = *pos / dev->bounce_size * priv->chunk_sectors;
155 offset = *pos % dev->bounce_size;
159 n = min_t(u64, remaining, dev->bounce_size - offset);
160 src = dev->bounce_buf + offset;
162 mutex_lock(&priv->mutex);
164 res = ps3flash_fetch(dev, sector);
168 dev_dbg(&dev->sbd.core,
169 "%s:%u: copy %lu bytes from 0x%p to U0x%p/K0x%p\n",
170 __func__, __LINE__, n, src, userbuf, kernelbuf);
172 if (copy_to_user(userbuf, src, n)) {
179 memcpy(kernelbuf, src, n);
183 mutex_unlock(&priv->mutex);
187 sector += priv->chunk_sectors;
189 } while (remaining > 0);
194 mutex_unlock(&priv->mutex);
198 static ssize_t ps3flash_write(const char __user *userbuf,
199 const void *kernelbuf, size_t count, loff_t *pos)
201 struct ps3_storage_device *dev = ps3flash_dev;
202 struct ps3flash_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
203 u64 size, sector, offset;
208 dev_dbg(&dev->sbd.core,
209 "%s:%u: Writing %zu bytes at position %lld from U0x%p/K0x%p\n",
210 __func__, __LINE__, count, *pos, userbuf, kernelbuf);
212 size = dev->regions[dev->region_idx].size*dev->blk_size;
213 if (*pos >= size || !count)
216 if (*pos + count > size) {
217 dev_dbg(&dev->sbd.core,
218 "%s:%u Truncating count from %zu to %llu\n", __func__,
219 __LINE__, count, size - *pos);
223 sector = *pos / dev->bounce_size * priv->chunk_sectors;
224 offset = *pos % dev->bounce_size;
228 n = min_t(u64, remaining, dev->bounce_size - offset);
229 dst = dev->bounce_buf + offset;
231 mutex_lock(&priv->mutex);
233 if (n != dev->bounce_size)
234 res = ps3flash_fetch(dev, sector);
235 else if (sector != priv->tag)
236 res = ps3flash_writeback(dev);
240 dev_dbg(&dev->sbd.core,
241 "%s:%u: copy %lu bytes from U0x%p/K0x%p to 0x%p\n",
242 __func__, __LINE__, n, userbuf, kernelbuf, dst);
244 if (copy_from_user(dst, userbuf, n)) {
251 memcpy(dst, kernelbuf, n);
258 mutex_unlock(&priv->mutex);
262 sector += priv->chunk_sectors;
264 } while (remaining > 0);
269 mutex_unlock(&priv->mutex);
273 static ssize_t ps3flash_user_read(struct file *file, char __user *buf,
274 size_t count, loff_t *pos)
276 return ps3flash_read(buf, NULL, count, pos);
279 static ssize_t ps3flash_user_write(struct file *file, const char __user *buf,
280 size_t count, loff_t *pos)
282 return ps3flash_write(buf, NULL, count, pos);
285 static ssize_t ps3flash_kernel_read(void *buf, size_t count, loff_t pos)
287 return ps3flash_read(NULL, buf, count, &pos);
290 static ssize_t ps3flash_kernel_write(const void *buf, size_t count,
296 res = ps3flash_write(NULL, buf, count, &pos);
300 /* Make kernel writes synchronous */
301 wb = ps3flash_writeback(ps3flash_dev);
308 static int ps3flash_flush(struct file *file, fl_owner_t id)
310 return ps3flash_writeback(ps3flash_dev);
313 static int ps3flash_fsync(struct file *file, loff_t start, loff_t end, int datasync)
315 struct inode *inode = file->f_path.dentry->d_inode;
317 mutex_lock(&inode->i_mutex);
318 err = ps3flash_writeback(ps3flash_dev);
319 mutex_unlock(&inode->i_mutex);
323 static irqreturn_t ps3flash_interrupt(int irq, void *data)
325 struct ps3_storage_device *dev = data;
329 res = lv1_storage_get_async_status(dev->sbd.dev_id, &tag, &status);
332 dev_err(&dev->sbd.core,
333 "%s:%u: tag mismatch, got %llx, expected %llx\n",
334 __func__, __LINE__, tag, dev->tag);
337 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n",
338 __func__, __LINE__, res, status);
340 dev->lv1_status = status;
341 complete(&dev->done);
346 static const struct file_operations ps3flash_fops = {
347 .owner = THIS_MODULE,
348 .llseek = ps3flash_llseek,
349 .read = ps3flash_user_read,
350 .write = ps3flash_user_write,
351 .flush = ps3flash_flush,
352 .fsync = ps3flash_fsync,
355 static const struct ps3_os_area_flash_ops ps3flash_kernel_ops = {
356 .read = ps3flash_kernel_read,
357 .write = ps3flash_kernel_write,
360 static struct miscdevice ps3flash_misc = {
361 .minor = MISC_DYNAMIC_MINOR,
363 .fops = &ps3flash_fops,
366 static int __devinit ps3flash_probe(struct ps3_system_bus_device *_dev)
368 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
369 struct ps3flash_private *priv;
373 tmp = dev->regions[dev->region_idx].start*dev->blk_size;
374 if (tmp % FLASH_BLOCK_SIZE) {
375 dev_err(&dev->sbd.core,
376 "%s:%u region start %lu is not aligned\n", __func__,
380 tmp = dev->regions[dev->region_idx].size*dev->blk_size;
381 if (tmp % FLASH_BLOCK_SIZE) {
382 dev_err(&dev->sbd.core,
383 "%s:%u region size %lu is not aligned\n", __func__,
388 /* use static buffer, kmalloc cannot allocate 256 KiB */
389 if (!ps3flash_bounce_buffer.address)
393 dev_err(&dev->sbd.core,
394 "Only one FLASH device is supported\n");
400 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
406 ps3_system_bus_set_drvdata(&dev->sbd, priv);
407 mutex_init(&priv->mutex);
410 dev->bounce_size = ps3flash_bounce_buffer.size;
411 dev->bounce_buf = ps3flash_bounce_buffer.address;
412 priv->chunk_sectors = dev->bounce_size / dev->blk_size;
414 error = ps3stor_setup(dev, ps3flash_interrupt);
418 ps3flash_misc.parent = &dev->sbd.core;
419 error = misc_register(&ps3flash_misc);
421 dev_err(&dev->sbd.core, "%s:%u: misc_register failed %d\n",
422 __func__, __LINE__, error);
426 dev_info(&dev->sbd.core, "%s:%u: registered misc device %d\n",
427 __func__, __LINE__, ps3flash_misc.minor);
429 ps3_os_area_flash_register(&ps3flash_kernel_ops);
433 ps3stor_teardown(dev);
436 ps3_system_bus_set_drvdata(&dev->sbd, NULL);
442 static int ps3flash_remove(struct ps3_system_bus_device *_dev)
444 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
446 ps3_os_area_flash_register(NULL);
447 misc_deregister(&ps3flash_misc);
448 ps3stor_teardown(dev);
449 kfree(ps3_system_bus_get_drvdata(&dev->sbd));
450 ps3_system_bus_set_drvdata(&dev->sbd, NULL);
456 static struct ps3_system_bus_driver ps3flash = {
457 .match_id = PS3_MATCH_ID_STOR_FLASH,
458 .core.name = DEVICE_NAME,
459 .core.owner = THIS_MODULE,
460 .probe = ps3flash_probe,
461 .remove = ps3flash_remove,
462 .shutdown = ps3flash_remove,
466 static int __init ps3flash_init(void)
468 return ps3_system_bus_driver_register(&ps3flash);
471 static void __exit ps3flash_exit(void)
473 ps3_system_bus_driver_unregister(&ps3flash);
476 module_init(ps3flash_init);
477 module_exit(ps3flash_exit);
479 MODULE_LICENSE("GPL");
480 MODULE_DESCRIPTION("PS3 FLASH ROM Storage Driver");
481 MODULE_AUTHOR("Sony Corporation");
482 MODULE_ALIAS(PS3_MODULE_ALIAS_STOR_FLASH);