2 * PS3 Disk 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/ata.h>
22 #include <linux/blkdev.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
26 #include <asm/lv1call.h>
27 #include <asm/ps3stor.h>
28 #include <asm/firmware.h>
31 #define DEVICE_NAME "ps3disk"
33 #define BOUNCE_SIZE (64*1024)
35 #define PS3DISK_MAX_DISKS 16
36 #define PS3DISK_MINORS 16
39 #define PS3DISK_NAME "ps3d%c"
42 struct ps3disk_private {
43 spinlock_t lock; /* Request queue spinlock */
44 struct request_queue *queue;
45 struct gendisk *gendisk;
46 unsigned int blocking_factor;
49 unsigned char model[ATA_ID_PROD_LEN+1];
53 #define LV1_STORAGE_SEND_ATA_COMMAND (2)
54 #define LV1_STORAGE_ATA_HDDOUT (0x23)
56 struct lv1_ata_cmnd_block {
74 PIO_DATA_IN_PROTO = 1,
75 PIO_DATA_OUT_PROTO = 2,
80 DIR_WRITE = 0, /* memory -> device */
81 DIR_READ = 1 /* device -> memory */
84 static int ps3disk_major;
87 static const struct block_device_operations ps3disk_fops = {
92 static void ps3disk_scatter_gather(struct ps3_storage_device *dev,
93 struct request *req, int gather)
95 unsigned int offset = 0;
96 struct req_iterator iter;
102 rq_for_each_segment(bvec, req, iter) {
104 dev_dbg(&dev->sbd.core,
105 "%s:%u: bio %u: %u segs %u sectors from %lu\n",
106 __func__, __LINE__, i, bio_segments(iter.bio),
107 bio_sectors(iter.bio), iter.bio->bi_sector);
110 buf = bvec_kmap_irq(bvec, &flags);
112 memcpy(dev->bounce_buf+offset, buf, size);
114 memcpy(buf, dev->bounce_buf+offset, size);
116 flush_kernel_dcache_page(bvec->bv_page);
117 bvec_kunmap_irq(buf, &flags);
122 static int ps3disk_submit_request_sg(struct ps3_storage_device *dev,
125 struct ps3disk_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
126 int write = rq_data_dir(req), res;
127 const char *op = write ? "write" : "read";
128 u64 start_sector, sectors;
129 unsigned int region_id = dev->regions[dev->region_idx].id;
134 struct req_iterator iter;
136 rq_for_each_segment(bv, req, iter)
138 dev_dbg(&dev->sbd.core,
139 "%s:%u: %s req has %u bvecs for %u sectors\n",
140 __func__, __LINE__, op, n, blk_rq_sectors(req));
143 start_sector = blk_rq_pos(req) * priv->blocking_factor;
144 sectors = blk_rq_sectors(req) * priv->blocking_factor;
145 dev_dbg(&dev->sbd.core, "%s:%u: %s %llu sectors starting at %llu\n",
146 __func__, __LINE__, op, sectors, start_sector);
149 ps3disk_scatter_gather(dev, req, 1);
151 res = lv1_storage_write(dev->sbd.dev_id, region_id,
152 start_sector, sectors, 0,
153 dev->bounce_lpar, &dev->tag);
155 res = lv1_storage_read(dev->sbd.dev_id, region_id,
156 start_sector, sectors, 0,
157 dev->bounce_lpar, &dev->tag);
160 dev_err(&dev->sbd.core, "%s:%u: %s failed %d\n", __func__,
162 __blk_end_request_all(req, -EIO);
170 static int ps3disk_submit_flush_request(struct ps3_storage_device *dev,
173 struct ps3disk_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
176 dev_dbg(&dev->sbd.core, "%s:%u: flush request\n", __func__, __LINE__);
178 res = lv1_storage_send_device_command(dev->sbd.dev_id,
179 LV1_STORAGE_ATA_HDDOUT, 0, 0, 0,
182 dev_err(&dev->sbd.core, "%s:%u: sync cache failed 0x%llx\n",
183 __func__, __LINE__, res);
184 __blk_end_request_all(req, -EIO);
192 static void ps3disk_do_request(struct ps3_storage_device *dev,
193 struct request_queue *q)
197 dev_dbg(&dev->sbd.core, "%s:%u\n", __func__, __LINE__);
199 while ((req = blk_fetch_request(q))) {
200 if (req->cmd_flags & REQ_FLUSH) {
201 if (ps3disk_submit_flush_request(dev, req))
203 } else if (req->cmd_type == REQ_TYPE_FS) {
204 if (ps3disk_submit_request_sg(dev, req))
207 blk_dump_rq_flags(req, DEVICE_NAME " bad request");
208 __blk_end_request_all(req, -EIO);
214 static void ps3disk_request(struct request_queue *q)
216 struct ps3_storage_device *dev = q->queuedata;
217 struct ps3disk_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
220 dev_dbg(&dev->sbd.core, "%s:%u busy\n", __func__, __LINE__);
224 ps3disk_do_request(dev, q);
227 static irqreturn_t ps3disk_interrupt(int irq, void *data)
229 struct ps3_storage_device *dev = data;
230 struct ps3disk_private *priv;
232 int res, read, error;
236 res = lv1_storage_get_async_status(dev->sbd.dev_id, &tag, &status);
239 dev_err(&dev->sbd.core,
240 "%s:%u: tag mismatch, got %llx, expected %llx\n",
241 __func__, __LINE__, tag, dev->tag);
244 dev_err(&dev->sbd.core, "%s:%u: res=%d status=0x%llx\n",
245 __func__, __LINE__, res, status);
249 priv = ps3_system_bus_get_drvdata(&dev->sbd);
252 dev_dbg(&dev->sbd.core,
253 "%s:%u non-block layer request completed\n", __func__,
255 dev->lv1_status = status;
256 complete(&dev->done);
260 if (req->cmd_flags & REQ_FLUSH) {
264 read = !rq_data_dir(req);
265 op = read ? "read" : "write";
268 dev_dbg(&dev->sbd.core, "%s:%u: %s failed 0x%llx\n", __func__,
269 __LINE__, op, status);
272 dev_dbg(&dev->sbd.core, "%s:%u: %s completed\n", __func__,
276 ps3disk_scatter_gather(dev, req, 0);
279 spin_lock(&priv->lock);
280 __blk_end_request_all(req, error);
282 ps3disk_do_request(dev, priv->queue);
283 spin_unlock(&priv->lock);
288 static int ps3disk_sync_cache(struct ps3_storage_device *dev)
292 dev_dbg(&dev->sbd.core, "%s:%u: sync cache\n", __func__, __LINE__);
294 res = ps3stor_send_command(dev, LV1_STORAGE_ATA_HDDOUT, 0, 0, 0, 0);
296 dev_err(&dev->sbd.core, "%s:%u: sync cache failed 0x%llx\n",
297 __func__, __LINE__, res);
304 /* ATA helpers copied from drivers/ata/libata-core.c */
306 static void swap_buf_le16(u16 *buf, unsigned int buf_words)
311 for (i = 0; i < buf_words; i++)
312 buf[i] = le16_to_cpu(buf[i]);
313 #endif /* __BIG_ENDIAN */
316 static u64 ata_id_n_sectors(const u16 *id)
318 if (ata_id_has_lba(id)) {
319 if (ata_id_has_lba48(id))
320 return ata_id_u64(id, 100);
322 return ata_id_u32(id, 60);
324 if (ata_id_current_chs_valid(id))
325 return ata_id_u32(id, 57);
327 return id[1] * id[3] * id[6];
331 static void ata_id_string(const u16 *id, unsigned char *s, unsigned int ofs,
350 static void ata_id_c_string(const u16 *id, unsigned char *s, unsigned int ofs,
357 ata_id_string(id, s, ofs, len - 1);
359 p = s + strnlen(s, len - 1);
360 while (p > s && p[-1] == ' ')
365 static int ps3disk_identify(struct ps3_storage_device *dev)
367 struct ps3disk_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
368 struct lv1_ata_cmnd_block ata_cmnd;
369 u16 *id = dev->bounce_buf;
372 dev_dbg(&dev->sbd.core, "%s:%u: identify disk\n", __func__, __LINE__);
374 memset(&ata_cmnd, 0, sizeof(struct lv1_ata_cmnd_block));
375 ata_cmnd.command = ATA_CMD_ID_ATA;
376 ata_cmnd.sector_count = 1;
377 ata_cmnd.size = ata_cmnd.arglen = ATA_ID_WORDS * 2;
378 ata_cmnd.buffer = dev->bounce_lpar;
379 ata_cmnd.proto = PIO_DATA_IN_PROTO;
380 ata_cmnd.in_out = DIR_READ;
382 res = ps3stor_send_command(dev, LV1_STORAGE_SEND_ATA_COMMAND,
383 ps3_mm_phys_to_lpar(__pa(&ata_cmnd)),
384 sizeof(ata_cmnd), ata_cmnd.buffer,
387 dev_err(&dev->sbd.core, "%s:%u: identify disk failed 0x%llx\n",
388 __func__, __LINE__, res);
392 swap_buf_le16(id, ATA_ID_WORDS);
394 /* All we're interested in are raw capacity and model name */
395 priv->raw_capacity = ata_id_n_sectors(id);
396 ata_id_c_string(id, priv->model, ATA_ID_PROD, sizeof(priv->model));
400 static unsigned long ps3disk_mask;
402 static DEFINE_MUTEX(ps3disk_mask_mutex);
404 static int ps3disk_probe(struct ps3_system_bus_device *_dev)
406 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
407 struct ps3disk_private *priv;
410 struct request_queue *queue;
411 struct gendisk *gendisk;
413 if (dev->blk_size < 512) {
414 dev_err(&dev->sbd.core,
415 "%s:%u: cannot handle block size %llu\n", __func__,
416 __LINE__, dev->blk_size);
420 BUILD_BUG_ON(PS3DISK_MAX_DISKS > BITS_PER_LONG);
421 mutex_lock(&ps3disk_mask_mutex);
422 devidx = find_first_zero_bit(&ps3disk_mask, PS3DISK_MAX_DISKS);
423 if (devidx >= PS3DISK_MAX_DISKS) {
424 dev_err(&dev->sbd.core, "%s:%u: Too many disks\n", __func__,
426 mutex_unlock(&ps3disk_mask_mutex);
429 __set_bit(devidx, &ps3disk_mask);
430 mutex_unlock(&ps3disk_mask_mutex);
432 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
438 ps3_system_bus_set_drvdata(_dev, priv);
439 spin_lock_init(&priv->lock);
441 dev->bounce_size = BOUNCE_SIZE;
442 dev->bounce_buf = kmalloc(BOUNCE_SIZE, GFP_DMA);
443 if (!dev->bounce_buf) {
448 error = ps3stor_setup(dev, ps3disk_interrupt);
450 goto fail_free_bounce;
452 ps3disk_identify(dev);
454 queue = blk_init_queue(ps3disk_request, &priv->lock);
456 dev_err(&dev->sbd.core, "%s:%u: blk_init_queue failed\n",
463 queue->queuedata = dev;
465 blk_queue_bounce_limit(queue, BLK_BOUNCE_HIGH);
467 blk_queue_max_hw_sectors(queue, dev->bounce_size >> 9);
468 blk_queue_segment_boundary(queue, -1UL);
469 blk_queue_dma_alignment(queue, dev->blk_size-1);
470 blk_queue_logical_block_size(queue, dev->blk_size);
472 blk_queue_flush(queue, REQ_FLUSH);
474 blk_queue_max_segments(queue, -1);
475 blk_queue_max_segment_size(queue, dev->bounce_size);
477 gendisk = alloc_disk(PS3DISK_MINORS);
479 dev_err(&dev->sbd.core, "%s:%u: alloc_disk failed\n", __func__,
482 goto fail_cleanup_queue;
485 priv->gendisk = gendisk;
486 gendisk->major = ps3disk_major;
487 gendisk->first_minor = devidx * PS3DISK_MINORS;
488 gendisk->fops = &ps3disk_fops;
489 gendisk->queue = queue;
490 gendisk->private_data = dev;
491 gendisk->driverfs_dev = &dev->sbd.core;
492 snprintf(gendisk->disk_name, sizeof(gendisk->disk_name), PS3DISK_NAME,
494 priv->blocking_factor = dev->blk_size >> 9;
495 set_capacity(gendisk,
496 dev->regions[dev->region_idx].size*priv->blocking_factor);
498 dev_info(&dev->sbd.core,
499 "%s is a %s (%llu MiB total, %lu MiB for OtherOS)\n",
500 gendisk->disk_name, priv->model, priv->raw_capacity >> 11,
501 get_capacity(gendisk) >> 11);
507 blk_cleanup_queue(queue);
509 ps3stor_teardown(dev);
511 kfree(dev->bounce_buf);
514 ps3_system_bus_set_drvdata(_dev, NULL);
516 mutex_lock(&ps3disk_mask_mutex);
517 __clear_bit(devidx, &ps3disk_mask);
518 mutex_unlock(&ps3disk_mask_mutex);
522 static int ps3disk_remove(struct ps3_system_bus_device *_dev)
524 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core);
525 struct ps3disk_private *priv = ps3_system_bus_get_drvdata(&dev->sbd);
527 mutex_lock(&ps3disk_mask_mutex);
528 __clear_bit(MINOR(disk_devt(priv->gendisk)) / PS3DISK_MINORS,
530 mutex_unlock(&ps3disk_mask_mutex);
531 del_gendisk(priv->gendisk);
532 blk_cleanup_queue(priv->queue);
533 put_disk(priv->gendisk);
534 dev_notice(&dev->sbd.core, "Synchronizing disk cache\n");
535 ps3disk_sync_cache(dev);
536 ps3stor_teardown(dev);
537 kfree(dev->bounce_buf);
539 ps3_system_bus_set_drvdata(_dev, NULL);
543 static struct ps3_system_bus_driver ps3disk = {
544 .match_id = PS3_MATCH_ID_STOR_DISK,
545 .core.name = DEVICE_NAME,
546 .core.owner = THIS_MODULE,
547 .probe = ps3disk_probe,
548 .remove = ps3disk_remove,
549 .shutdown = ps3disk_remove,
553 static int __init ps3disk_init(void)
557 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
560 error = register_blkdev(0, DEVICE_NAME);
562 printk(KERN_ERR "%s:%u: register_blkdev failed %d\n", __func__,
566 ps3disk_major = error;
568 pr_info("%s:%u: registered block device major %d\n", __func__,
569 __LINE__, ps3disk_major);
571 error = ps3_system_bus_driver_register(&ps3disk);
573 unregister_blkdev(ps3disk_major, DEVICE_NAME);
578 static void __exit ps3disk_exit(void)
580 ps3_system_bus_driver_unregister(&ps3disk);
581 unregister_blkdev(ps3disk_major, DEVICE_NAME);
584 module_init(ps3disk_init);
585 module_exit(ps3disk_exit);
587 MODULE_LICENSE("GPL");
588 MODULE_DESCRIPTION("PS3 Disk Storage Driver");
589 MODULE_AUTHOR("Sony Corporation");
590 MODULE_ALIAS(PS3_MODULE_ALIAS_STOR_DISK);