1 // SPDX-License-Identifier: GPL-2.0-only
3 * ps3vram - Use extra PS3 video ram as block device.
5 * Copyright 2009 Sony Corporation
7 * Based on the MTD ps3vram driver, which is
8 * Copyright (c) 2007-2008 Jim Paris <jim@jtan.com>
9 * Added support RSX DMA Vivien Chappelier <vivien.chappelier@free.fr>
12 #include <linux/blkdev.h>
13 #include <linux/delay.h>
14 #include <linux/module.h>
15 #include <linux/proc_fs.h>
16 #include <linux/seq_file.h>
17 #include <linux/slab.h>
19 #include <asm/cell-regs.h>
20 #include <asm/firmware.h>
21 #include <asm/lv1call.h>
23 #include <asm/ps3gpu.h>
26 #define DEVICE_NAME "ps3vram"
29 #define XDR_BUF_SIZE (2 * 1024 * 1024) /* XDR buffer (must be 1MiB aligned) */
30 #define XDR_IOIF 0x0c000000
32 #define FIFO_BASE XDR_IOIF
33 #define FIFO_SIZE (64 * 1024)
35 #define DMA_PAGE_SIZE (4 * 1024)
37 #define CACHE_PAGE_SIZE (256 * 1024)
38 #define CACHE_PAGE_COUNT ((XDR_BUF_SIZE - FIFO_SIZE) / CACHE_PAGE_SIZE)
40 #define CACHE_OFFSET CACHE_PAGE_SIZE
47 #define UPLOAD_SUBCH 1
48 #define DOWNLOAD_SUBCH 2
50 #define NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN 0x0000030c
51 #define NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY 0x00000104
53 #define CACHE_PAGE_PRESENT 1
54 #define CACHE_PAGE_DIRTY 2
61 struct ps3vram_cache {
62 unsigned int page_count;
63 unsigned int page_size;
64 struct ps3vram_tag *tags;
70 struct gendisk *gendisk;
77 void __iomem *reports;
83 struct ps3vram_cache cache;
85 spinlock_t lock; /* protecting list of bios */
90 static int ps3vram_major;
92 #define DMA_NOTIFIER_HANDLE_BASE 0x66604200 /* first DMA notifier handle */
93 #define DMA_NOTIFIER_OFFSET_BASE 0x1000 /* first DMA notifier offset */
94 #define DMA_NOTIFIER_SIZE 0x40
95 #define NOTIFIER 7 /* notifier used for completion report */
97 static char *size = "256M";
98 module_param(size, charp, 0);
99 MODULE_PARM_DESC(size, "memory size");
101 static u32 __iomem *ps3vram_get_notifier(void __iomem *reports, int notifier)
103 return reports + DMA_NOTIFIER_OFFSET_BASE +
104 DMA_NOTIFIER_SIZE * notifier;
107 static void ps3vram_notifier_reset(struct ps3_system_bus_device *dev)
109 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
110 u32 __iomem *notify = ps3vram_get_notifier(priv->reports, NOTIFIER);
113 for (i = 0; i < 4; i++)
114 iowrite32be(0xffffffff, notify + i);
117 static int ps3vram_notifier_wait(struct ps3_system_bus_device *dev,
118 unsigned int timeout_ms)
120 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
121 u32 __iomem *notify = ps3vram_get_notifier(priv->reports, NOTIFIER);
122 unsigned long timeout;
124 for (timeout = 20; timeout; timeout--) {
125 if (!ioread32be(notify + 3))
130 timeout = jiffies + msecs_to_jiffies(timeout_ms);
133 if (!ioread32be(notify + 3))
136 } while (time_before(jiffies, timeout));
141 static void ps3vram_init_ring(struct ps3_system_bus_device *dev)
143 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
145 iowrite32be(FIFO_BASE + FIFO_OFFSET, priv->ctrl + CTRL_PUT);
146 iowrite32be(FIFO_BASE + FIFO_OFFSET, priv->ctrl + CTRL_GET);
149 static int ps3vram_wait_ring(struct ps3_system_bus_device *dev,
150 unsigned int timeout_ms)
152 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
153 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
156 if (ioread32be(priv->ctrl + CTRL_PUT) == ioread32be(priv->ctrl + CTRL_GET))
159 } while (time_before(jiffies, timeout));
161 dev_warn(&dev->core, "FIFO timeout (%08x/%08x/%08x)\n",
162 ioread32be(priv->ctrl + CTRL_PUT), ioread32be(priv->ctrl + CTRL_GET),
163 ioread32be(priv->ctrl + CTRL_TOP));
168 static void ps3vram_out_ring(struct ps3vram_priv *priv, u32 data)
170 *(priv->fifo_ptr)++ = data;
173 static void ps3vram_begin_ring(struct ps3vram_priv *priv, u32 chan, u32 tag,
176 ps3vram_out_ring(priv, (size << 18) | (chan << 13) | tag);
179 static void ps3vram_rewind_ring(struct ps3_system_bus_device *dev)
181 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
184 ps3vram_out_ring(priv, 0x20000000 | (FIFO_BASE + FIFO_OFFSET));
186 iowrite32be(FIFO_BASE + FIFO_OFFSET, priv->ctrl + CTRL_PUT);
188 /* asking the HV for a blit will kick the FIFO */
189 status = lv1_gpu_fb_blit(priv->context_handle, 0, 0, 0, 0);
191 dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n",
194 priv->fifo_ptr = priv->fifo_base;
197 static void ps3vram_fire_ring(struct ps3_system_bus_device *dev)
199 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
202 mutex_lock(&ps3_gpu_mutex);
204 iowrite32be(FIFO_BASE + FIFO_OFFSET + (priv->fifo_ptr - priv->fifo_base)
205 * sizeof(u32), priv->ctrl + CTRL_PUT);
207 /* asking the HV for a blit will kick the FIFO */
208 status = lv1_gpu_fb_blit(priv->context_handle, 0, 0, 0, 0);
210 dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n",
213 if ((priv->fifo_ptr - priv->fifo_base) * sizeof(u32) >
215 dev_dbg(&dev->core, "FIFO full, rewinding\n");
216 ps3vram_wait_ring(dev, 200);
217 ps3vram_rewind_ring(dev);
220 mutex_unlock(&ps3_gpu_mutex);
223 static void ps3vram_bind(struct ps3_system_bus_device *dev)
225 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
227 ps3vram_begin_ring(priv, UPLOAD_SUBCH, 0, 1);
228 ps3vram_out_ring(priv, 0x31337303);
229 ps3vram_begin_ring(priv, UPLOAD_SUBCH, 0x180, 3);
230 ps3vram_out_ring(priv, DMA_NOTIFIER_HANDLE_BASE + NOTIFIER);
231 ps3vram_out_ring(priv, 0xfeed0001); /* DMA system RAM instance */
232 ps3vram_out_ring(priv, 0xfeed0000); /* DMA video RAM instance */
234 ps3vram_begin_ring(priv, DOWNLOAD_SUBCH, 0, 1);
235 ps3vram_out_ring(priv, 0x3137c0de);
236 ps3vram_begin_ring(priv, DOWNLOAD_SUBCH, 0x180, 3);
237 ps3vram_out_ring(priv, DMA_NOTIFIER_HANDLE_BASE + NOTIFIER);
238 ps3vram_out_ring(priv, 0xfeed0000); /* DMA video RAM instance */
239 ps3vram_out_ring(priv, 0xfeed0001); /* DMA system RAM instance */
241 ps3vram_fire_ring(dev);
244 static int ps3vram_upload(struct ps3_system_bus_device *dev,
245 unsigned int src_offset, unsigned int dst_offset,
248 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
250 ps3vram_begin_ring(priv, UPLOAD_SUBCH,
251 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8);
252 ps3vram_out_ring(priv, XDR_IOIF + src_offset);
253 ps3vram_out_ring(priv, dst_offset);
254 ps3vram_out_ring(priv, len);
255 ps3vram_out_ring(priv, len);
256 ps3vram_out_ring(priv, len);
257 ps3vram_out_ring(priv, count);
258 ps3vram_out_ring(priv, (1 << 8) | 1);
259 ps3vram_out_ring(priv, 0);
261 ps3vram_notifier_reset(dev);
262 ps3vram_begin_ring(priv, UPLOAD_SUBCH,
263 NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY, 1);
264 ps3vram_out_ring(priv, 0);
265 ps3vram_begin_ring(priv, UPLOAD_SUBCH, 0x100, 1);
266 ps3vram_out_ring(priv, 0);
267 ps3vram_fire_ring(dev);
268 if (ps3vram_notifier_wait(dev, 200) < 0) {
269 dev_warn(&dev->core, "%s: Notifier timeout\n", __func__);
276 static int ps3vram_download(struct ps3_system_bus_device *dev,
277 unsigned int src_offset, unsigned int dst_offset,
280 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
282 ps3vram_begin_ring(priv, DOWNLOAD_SUBCH,
283 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8);
284 ps3vram_out_ring(priv, src_offset);
285 ps3vram_out_ring(priv, XDR_IOIF + dst_offset);
286 ps3vram_out_ring(priv, len);
287 ps3vram_out_ring(priv, len);
288 ps3vram_out_ring(priv, len);
289 ps3vram_out_ring(priv, count);
290 ps3vram_out_ring(priv, (1 << 8) | 1);
291 ps3vram_out_ring(priv, 0);
293 ps3vram_notifier_reset(dev);
294 ps3vram_begin_ring(priv, DOWNLOAD_SUBCH,
295 NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY, 1);
296 ps3vram_out_ring(priv, 0);
297 ps3vram_begin_ring(priv, DOWNLOAD_SUBCH, 0x100, 1);
298 ps3vram_out_ring(priv, 0);
299 ps3vram_fire_ring(dev);
300 if (ps3vram_notifier_wait(dev, 200) < 0) {
301 dev_warn(&dev->core, "%s: Notifier timeout\n", __func__);
308 static void ps3vram_cache_evict(struct ps3_system_bus_device *dev, int entry)
310 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
311 struct ps3vram_cache *cache = &priv->cache;
313 if (!(cache->tags[entry].flags & CACHE_PAGE_DIRTY))
316 dev_dbg(&dev->core, "Flushing %d: 0x%08x\n", entry,
317 cache->tags[entry].address);
318 if (ps3vram_upload(dev, CACHE_OFFSET + entry * cache->page_size,
319 cache->tags[entry].address, DMA_PAGE_SIZE,
320 cache->page_size / DMA_PAGE_SIZE) < 0) {
322 "Failed to upload from 0x%x to " "0x%x size 0x%x\n",
323 entry * cache->page_size, cache->tags[entry].address,
326 cache->tags[entry].flags &= ~CACHE_PAGE_DIRTY;
329 static void ps3vram_cache_load(struct ps3_system_bus_device *dev, int entry,
330 unsigned int address)
332 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
333 struct ps3vram_cache *cache = &priv->cache;
335 dev_dbg(&dev->core, "Fetching %d: 0x%08x\n", entry, address);
336 if (ps3vram_download(dev, address,
337 CACHE_OFFSET + entry * cache->page_size,
339 cache->page_size / DMA_PAGE_SIZE) < 0) {
341 "Failed to download from 0x%x to 0x%x size 0x%x\n",
342 address, entry * cache->page_size, cache->page_size);
345 cache->tags[entry].address = address;
346 cache->tags[entry].flags |= CACHE_PAGE_PRESENT;
350 static void ps3vram_cache_flush(struct ps3_system_bus_device *dev)
352 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
353 struct ps3vram_cache *cache = &priv->cache;
356 dev_dbg(&dev->core, "FLUSH\n");
357 for (i = 0; i < cache->page_count; i++) {
358 ps3vram_cache_evict(dev, i);
359 cache->tags[i].flags = 0;
363 static unsigned int ps3vram_cache_match(struct ps3_system_bus_device *dev,
366 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
367 struct ps3vram_cache *cache = &priv->cache;
373 offset = (unsigned int) (address & (cache->page_size - 1));
374 base = (unsigned int) (address - offset);
376 /* fully associative check */
377 for (i = 0; i < cache->page_count; i++) {
378 if ((cache->tags[i].flags & CACHE_PAGE_PRESENT) &&
379 cache->tags[i].address == base) {
381 dev_dbg(&dev->core, "Found entry %d: 0x%08x\n", i,
382 cache->tags[i].address);
387 /* choose a random entry */
388 i = (jiffies + (counter++)) % cache->page_count;
389 dev_dbg(&dev->core, "Using entry %d\n", i);
391 ps3vram_cache_evict(dev, i);
392 ps3vram_cache_load(dev, i, base);
398 static int ps3vram_cache_init(struct ps3_system_bus_device *dev)
400 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
402 priv->cache.page_count = CACHE_PAGE_COUNT;
403 priv->cache.page_size = CACHE_PAGE_SIZE;
404 priv->cache.tags = kcalloc(CACHE_PAGE_COUNT,
405 sizeof(struct ps3vram_tag),
407 if (!priv->cache.tags)
410 dev_info(&dev->core, "Created ram cache: %d entries, %d KiB each\n",
411 CACHE_PAGE_COUNT, CACHE_PAGE_SIZE / 1024);
416 static void ps3vram_cache_cleanup(struct ps3_system_bus_device *dev)
418 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
420 ps3vram_cache_flush(dev);
421 kfree(priv->cache.tags);
424 static blk_status_t ps3vram_read(struct ps3_system_bus_device *dev, loff_t from,
425 size_t len, size_t *retlen, u_char *buf)
427 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
428 unsigned int cached, count;
430 dev_dbg(&dev->core, "%s: from=0x%08x len=0x%zx\n", __func__,
431 (unsigned int)from, len);
433 if (from >= priv->size)
434 return BLK_STS_IOERR;
436 if (len > priv->size - from)
437 len = priv->size - from;
439 /* Copy from vram to buf */
442 unsigned int offset, avail;
445 offset = (unsigned int) (from & (priv->cache.page_size - 1));
446 avail = priv->cache.page_size - offset;
448 entry = ps3vram_cache_match(dev, from);
449 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset;
451 dev_dbg(&dev->core, "%s: from=%08x cached=%08x offset=%08x "
452 "avail=%08x count=%08x\n", __func__,
453 (unsigned int)from, cached, offset, avail, count);
457 memcpy(buf, priv->xdr_buf + cached, avail);
468 static blk_status_t ps3vram_write(struct ps3_system_bus_device *dev, loff_t to,
469 size_t len, size_t *retlen, const u_char *buf)
471 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
472 unsigned int cached, count;
474 if (to >= priv->size)
475 return BLK_STS_IOERR;
477 if (len > priv->size - to)
478 len = priv->size - to;
480 /* Copy from buf to vram */
483 unsigned int offset, avail;
486 offset = (unsigned int) (to & (priv->cache.page_size - 1));
487 avail = priv->cache.page_size - offset;
489 entry = ps3vram_cache_match(dev, to);
490 cached = CACHE_OFFSET + entry * priv->cache.page_size + offset;
492 dev_dbg(&dev->core, "%s: to=%08x cached=%08x offset=%08x "
493 "avail=%08x count=%08x\n", __func__, (unsigned int)to,
494 cached, offset, avail, count);
498 memcpy(priv->xdr_buf + cached, buf, avail);
500 priv->cache.tags[entry].flags |= CACHE_PAGE_DIRTY;
511 static int ps3vram_proc_show(struct seq_file *m, void *v)
513 struct ps3vram_priv *priv = m->private;
515 seq_printf(m, "hit:%u\nmiss:%u\n", priv->cache.hit, priv->cache.miss);
519 static void ps3vram_proc_init(struct ps3_system_bus_device *dev)
521 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
522 struct proc_dir_entry *pde;
524 pde = proc_create_single_data(DEVICE_NAME, 0444, NULL,
525 ps3vram_proc_show, priv);
527 dev_warn(&dev->core, "failed to create /proc entry\n");
530 static struct bio *ps3vram_do_bio(struct ps3_system_bus_device *dev,
533 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
534 int write = bio_data_dir(bio) == WRITE;
535 const char *op = write ? "write" : "read";
536 loff_t offset = bio->bi_iter.bi_sector << 9;
537 blk_status_t error = 0;
539 struct bvec_iter iter;
542 bio_for_each_segment(bvec, bio, iter) {
543 /* PS3 is ppc64, so we don't handle highmem */
544 char *ptr = bvec_virt(&bvec);
545 size_t len = bvec.bv_len, retlen;
547 dev_dbg(&dev->core, " %s %zu bytes at offset %llu\n", op,
550 error = ps3vram_write(dev, offset, len, &retlen, ptr);
552 error = ps3vram_read(dev, offset, len, &retlen, ptr);
555 dev_err(&dev->core, "%s failed\n", op);
560 dev_err(&dev->core, "Short %s\n", op);
561 error = BLK_STS_IOERR;
568 dev_dbg(&dev->core, "%s completed\n", op);
571 spin_lock_irq(&priv->lock);
572 bio_list_pop(&priv->list);
573 next = bio_list_peek(&priv->list);
574 spin_unlock_irq(&priv->lock);
576 bio->bi_status = error;
581 static blk_qc_t ps3vram_submit_bio(struct bio *bio)
583 struct ps3_system_bus_device *dev = bio->bi_bdev->bd_disk->private_data;
584 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
587 dev_dbg(&dev->core, "%s\n", __func__);
589 blk_queue_split(&bio);
591 return BLK_QC_T_NONE;
593 spin_lock_irq(&priv->lock);
594 busy = !bio_list_empty(&priv->list);
595 bio_list_add(&priv->list, bio);
596 spin_unlock_irq(&priv->lock);
599 return BLK_QC_T_NONE;
602 bio = ps3vram_do_bio(dev, bio);
605 return BLK_QC_T_NONE;
608 static const struct block_device_operations ps3vram_fops = {
609 .owner = THIS_MODULE,
610 .submit_bio = ps3vram_submit_bio,
613 static int ps3vram_probe(struct ps3_system_bus_device *dev)
615 struct ps3vram_priv *priv;
617 struct gendisk *gendisk;
618 u64 ddr_size, ddr_lpar, ctrl_lpar, info_lpar, reports_lpar,
619 reports_size, xdr_lpar;
622 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
628 spin_lock_init(&priv->lock);
629 bio_list_init(&priv->list);
630 ps3_system_bus_set_drvdata(dev, priv);
632 /* Allocate XDR buffer (1MiB aligned) */
633 priv->xdr_buf = (void *)__get_free_pages(GFP_KERNEL,
634 get_order(XDR_BUF_SIZE));
635 if (priv->xdr_buf == NULL) {
636 dev_err(&dev->core, "Could not allocate XDR buffer\n");
641 /* Put FIFO at begginning of XDR buffer */
642 priv->fifo_base = (u32 *) (priv->xdr_buf + FIFO_OFFSET);
643 priv->fifo_ptr = priv->fifo_base;
645 /* XXX: Need to open GPU, in case ps3fb or snd_ps3 aren't loaded */
646 if (ps3_open_hv_device(dev)) {
647 dev_err(&dev->core, "ps3_open_hv_device failed\n");
649 goto out_free_xdr_buf;
654 ddr_size = ALIGN(memparse(size, &rest), 1024*1024);
656 dev_err(&dev->core, "Specified size is too small\n");
661 while (ddr_size > 0) {
662 status = lv1_gpu_memory_allocate(ddr_size, 0, 0, 0, 0,
663 &priv->memory_handle,
667 ddr_size -= 1024*1024;
670 dev_err(&dev->core, "lv1_gpu_memory_allocate failed %d\n",
676 /* Request context */
677 status = lv1_gpu_context_allocate(priv->memory_handle, 0,
678 &priv->context_handle, &ctrl_lpar,
679 &info_lpar, &reports_lpar,
682 dev_err(&dev->core, "lv1_gpu_context_allocate failed %d\n",
685 goto out_free_memory;
688 /* Map XDR buffer to RSX */
689 xdr_lpar = ps3_mm_phys_to_lpar(__pa(priv->xdr_buf));
690 status = lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF,
691 xdr_lpar, XDR_BUF_SIZE,
692 CBE_IOPTE_PP_W | CBE_IOPTE_PP_R |
695 dev_err(&dev->core, "lv1_gpu_context_iomap failed %d\n",
698 goto out_free_context;
701 priv->ctrl = ioremap(ctrl_lpar, 64 * 1024);
703 dev_err(&dev->core, "ioremap CTRL failed\n");
705 goto out_unmap_context;
708 priv->reports = ioremap(reports_lpar, reports_size);
709 if (!priv->reports) {
710 dev_err(&dev->core, "ioremap REPORTS failed\n");
715 mutex_lock(&ps3_gpu_mutex);
716 ps3vram_init_ring(dev);
717 mutex_unlock(&ps3_gpu_mutex);
719 priv->size = ddr_size;
723 mutex_lock(&ps3_gpu_mutex);
724 error = ps3vram_wait_ring(dev, 100);
725 mutex_unlock(&ps3_gpu_mutex);
727 dev_err(&dev->core, "Failed to initialize channels\n");
729 goto out_unmap_reports;
732 error = ps3vram_cache_init(dev);
734 goto out_unmap_reports;
737 ps3vram_proc_init(dev);
739 gendisk = blk_alloc_disk(NUMA_NO_NODE);
741 dev_err(&dev->core, "blk_alloc_disk failed\n");
743 goto out_cache_cleanup;
746 priv->gendisk = gendisk;
747 gendisk->major = ps3vram_major;
749 gendisk->fops = &ps3vram_fops;
750 gendisk->private_data = dev;
751 strlcpy(gendisk->disk_name, DEVICE_NAME, sizeof(gendisk->disk_name));
752 set_capacity(gendisk, priv->size >> 9);
753 blk_queue_max_segments(gendisk->queue, BLK_MAX_SEGMENTS);
754 blk_queue_max_segment_size(gendisk->queue, BLK_MAX_SEGMENT_SIZE);
755 blk_queue_max_hw_sectors(gendisk->queue, BLK_SAFE_MAX_SECTORS);
757 dev_info(&dev->core, "%s: Using %llu MiB of GPU memory\n",
758 gendisk->disk_name, get_capacity(gendisk) >> 11);
760 device_add_disk(&dev->core, gendisk, NULL);
764 remove_proc_entry(DEVICE_NAME, NULL);
765 ps3vram_cache_cleanup(dev);
767 iounmap(priv->reports);
771 lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF, xdr_lpar,
772 XDR_BUF_SIZE, CBE_IOPTE_M);
774 lv1_gpu_context_free(priv->context_handle);
776 lv1_gpu_memory_free(priv->memory_handle);
778 ps3_close_hv_device(dev);
780 free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE));
783 ps3_system_bus_set_drvdata(dev, NULL);
788 static void ps3vram_remove(struct ps3_system_bus_device *dev)
790 struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
792 del_gendisk(priv->gendisk);
793 blk_cleanup_disk(priv->gendisk);
794 remove_proc_entry(DEVICE_NAME, NULL);
795 ps3vram_cache_cleanup(dev);
796 iounmap(priv->reports);
798 lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF,
799 ps3_mm_phys_to_lpar(__pa(priv->xdr_buf)),
800 XDR_BUF_SIZE, CBE_IOPTE_M);
801 lv1_gpu_context_free(priv->context_handle);
802 lv1_gpu_memory_free(priv->memory_handle);
803 ps3_close_hv_device(dev);
804 free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE));
806 ps3_system_bus_set_drvdata(dev, NULL);
809 static struct ps3_system_bus_driver ps3vram = {
810 .match_id = PS3_MATCH_ID_GPU,
811 .match_sub_id = PS3_MATCH_SUB_ID_GPU_RAMDISK,
812 .core.name = DEVICE_NAME,
813 .core.owner = THIS_MODULE,
814 .probe = ps3vram_probe,
815 .remove = ps3vram_remove,
816 .shutdown = ps3vram_remove,
820 static int __init ps3vram_init(void)
824 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
827 error = register_blkdev(0, DEVICE_NAME);
829 pr_err("%s: register_blkdev failed %d\n", DEVICE_NAME, error);
832 ps3vram_major = error;
834 pr_info("%s: registered block device major %d\n", DEVICE_NAME,
837 error = ps3_system_bus_driver_register(&ps3vram);
839 unregister_blkdev(ps3vram_major, DEVICE_NAME);
844 static void __exit ps3vram_exit(void)
846 ps3_system_bus_driver_unregister(&ps3vram);
847 unregister_blkdev(ps3vram_major, DEVICE_NAME);
850 module_init(ps3vram_init);
851 module_exit(ps3vram_exit);
853 MODULE_LICENSE("GPL");
854 MODULE_DESCRIPTION("PS3 Video RAM Storage Driver");
855 MODULE_AUTHOR("Sony Corporation");
856 MODULE_ALIAS(PS3_MODULE_ALIAS_GPU_RAMDISK);