2 * ps3vram - Use extra PS3 video ram as MTD block device.
4 * Copyright 2009 Sony Corporation
6 * Based on the MTD ps3vram driver, which is
7 * Copyright (c) 2007-2008 Jim Paris <jim@jtan.com>
8 * Added support RSX DMA Vivien Chappelier <vivien.chappelier@free.fr>
11 #include <linux/blkdev.h>
12 #include <linux/delay.h>
13 #include <linux/module.h>
14 #include <linux/proc_fs.h>
15 #include <linux/seq_file.h>
16 #include <linux/slab.h>
18 #include <asm/cell-regs.h>
19 #include <asm/firmware.h>
20 #include <asm/lv1call.h>
22 #include <asm/ps3gpu.h>
25 #define DEVICE_NAME "ps3vram"
28 #define XDR_BUF_SIZE (2 * 1024 * 1024) /* XDR buffer (must be 1MiB aligned) */
29 #define XDR_IOIF 0x0c000000
31 #define FIFO_BASE XDR_IOIF
32 #define FIFO_SIZE (64 * 1024)
34 #define DMA_PAGE_SIZE (4 * 1024)
36 #define CACHE_PAGE_SIZE (256 * 1024)
37 #define CACHE_PAGE_COUNT ((XDR_BUF_SIZE - FIFO_SIZE) / CACHE_PAGE_SIZE)
39 #define CACHE_OFFSET CACHE_PAGE_SIZE
46 #define UPLOAD_SUBCH 1
47 #define DOWNLOAD_SUBCH 2
49 #define NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN 0x0000030c
50 #define NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY 0x00000104
52 #define CACHE_PAGE_PRESENT 1
53 #define CACHE_PAGE_DIRTY 2
60 struct ps3vram_cache
{
61 unsigned int page_count
;
62 unsigned int page_size
;
63 struct ps3vram_tag
*tags
;
69 struct request_queue
*queue
;
70 struct gendisk
*gendisk
;
83 struct ps3vram_cache cache
;
85 spinlock_t lock
; /* protecting list of bios */
90 static int ps3vram_major
;
93 static const struct block_device_operations ps3vram_fops
= {
98 #define DMA_NOTIFIER_HANDLE_BASE 0x66604200 /* first DMA notifier handle */
99 #define DMA_NOTIFIER_OFFSET_BASE 0x1000 /* first DMA notifier offset */
100 #define DMA_NOTIFIER_SIZE 0x40
101 #define NOTIFIER 7 /* notifier used for completion report */
103 static char *size
= "256M";
104 module_param(size
, charp
, 0);
105 MODULE_PARM_DESC(size
, "memory size");
107 static u32
*ps3vram_get_notifier(void *reports
, int notifier
)
109 return reports
+ DMA_NOTIFIER_OFFSET_BASE
+
110 DMA_NOTIFIER_SIZE
* notifier
;
113 static void ps3vram_notifier_reset(struct ps3_system_bus_device
*dev
)
115 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
116 u32
*notify
= ps3vram_get_notifier(priv
->reports
, NOTIFIER
);
119 for (i
= 0; i
< 4; i
++)
120 notify
[i
] = 0xffffffff;
123 static int ps3vram_notifier_wait(struct ps3_system_bus_device
*dev
,
124 unsigned int timeout_ms
)
126 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
127 u32
*notify
= ps3vram_get_notifier(priv
->reports
, NOTIFIER
);
128 unsigned long timeout
;
130 for (timeout
= 20; timeout
; timeout
--) {
136 timeout
= jiffies
+ msecs_to_jiffies(timeout_ms
);
142 } while (time_before(jiffies
, timeout
));
147 static void ps3vram_init_ring(struct ps3_system_bus_device
*dev
)
149 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
151 priv
->ctrl
[CTRL_PUT
] = FIFO_BASE
+ FIFO_OFFSET
;
152 priv
->ctrl
[CTRL_GET
] = FIFO_BASE
+ FIFO_OFFSET
;
155 static int ps3vram_wait_ring(struct ps3_system_bus_device
*dev
,
156 unsigned int timeout_ms
)
158 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
159 unsigned long timeout
= jiffies
+ msecs_to_jiffies(timeout_ms
);
162 if (priv
->ctrl
[CTRL_PUT
] == priv
->ctrl
[CTRL_GET
])
165 } while (time_before(jiffies
, timeout
));
167 dev_warn(&dev
->core
, "FIFO timeout (%08x/%08x/%08x)\n",
168 priv
->ctrl
[CTRL_PUT
], priv
->ctrl
[CTRL_GET
],
169 priv
->ctrl
[CTRL_TOP
]);
174 static void ps3vram_out_ring(struct ps3vram_priv
*priv
, u32 data
)
176 *(priv
->fifo_ptr
)++ = data
;
179 static void ps3vram_begin_ring(struct ps3vram_priv
*priv
, u32 chan
, u32 tag
,
182 ps3vram_out_ring(priv
, (size
<< 18) | (chan
<< 13) | tag
);
185 static void ps3vram_rewind_ring(struct ps3_system_bus_device
*dev
)
187 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
190 ps3vram_out_ring(priv
, 0x20000000 | (FIFO_BASE
+ FIFO_OFFSET
));
192 priv
->ctrl
[CTRL_PUT
] = FIFO_BASE
+ FIFO_OFFSET
;
194 /* asking the HV for a blit will kick the FIFO */
195 status
= lv1_gpu_fb_blit(priv
->context_handle
, 0, 0, 0, 0);
197 dev_err(&dev
->core
, "%s: lv1_gpu_fb_blit failed %d\n",
200 priv
->fifo_ptr
= priv
->fifo_base
;
203 static void ps3vram_fire_ring(struct ps3_system_bus_device
*dev
)
205 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
208 mutex_lock(&ps3_gpu_mutex
);
210 priv
->ctrl
[CTRL_PUT
] = FIFO_BASE
+ FIFO_OFFSET
+
211 (priv
->fifo_ptr
- priv
->fifo_base
) * sizeof(u32
);
213 /* asking the HV for a blit will kick the FIFO */
214 status
= lv1_gpu_fb_blit(priv
->context_handle
, 0, 0, 0, 0);
216 dev_err(&dev
->core
, "%s: lv1_gpu_fb_blit failed %d\n",
219 if ((priv
->fifo_ptr
- priv
->fifo_base
) * sizeof(u32
) >
221 dev_dbg(&dev
->core
, "FIFO full, rewinding\n");
222 ps3vram_wait_ring(dev
, 200);
223 ps3vram_rewind_ring(dev
);
226 mutex_unlock(&ps3_gpu_mutex
);
229 static void ps3vram_bind(struct ps3_system_bus_device
*dev
)
231 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
233 ps3vram_begin_ring(priv
, UPLOAD_SUBCH
, 0, 1);
234 ps3vram_out_ring(priv
, 0x31337303);
235 ps3vram_begin_ring(priv
, UPLOAD_SUBCH
, 0x180, 3);
236 ps3vram_out_ring(priv
, DMA_NOTIFIER_HANDLE_BASE
+ NOTIFIER
);
237 ps3vram_out_ring(priv
, 0xfeed0001); /* DMA system RAM instance */
238 ps3vram_out_ring(priv
, 0xfeed0000); /* DMA video RAM instance */
240 ps3vram_begin_ring(priv
, DOWNLOAD_SUBCH
, 0, 1);
241 ps3vram_out_ring(priv
, 0x3137c0de);
242 ps3vram_begin_ring(priv
, DOWNLOAD_SUBCH
, 0x180, 3);
243 ps3vram_out_ring(priv
, DMA_NOTIFIER_HANDLE_BASE
+ NOTIFIER
);
244 ps3vram_out_ring(priv
, 0xfeed0000); /* DMA video RAM instance */
245 ps3vram_out_ring(priv
, 0xfeed0001); /* DMA system RAM instance */
247 ps3vram_fire_ring(dev
);
250 static int ps3vram_upload(struct ps3_system_bus_device
*dev
,
251 unsigned int src_offset
, unsigned int dst_offset
,
254 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
256 ps3vram_begin_ring(priv
, UPLOAD_SUBCH
,
257 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN
, 8);
258 ps3vram_out_ring(priv
, XDR_IOIF
+ src_offset
);
259 ps3vram_out_ring(priv
, dst_offset
);
260 ps3vram_out_ring(priv
, len
);
261 ps3vram_out_ring(priv
, len
);
262 ps3vram_out_ring(priv
, len
);
263 ps3vram_out_ring(priv
, count
);
264 ps3vram_out_ring(priv
, (1 << 8) | 1);
265 ps3vram_out_ring(priv
, 0);
267 ps3vram_notifier_reset(dev
);
268 ps3vram_begin_ring(priv
, UPLOAD_SUBCH
,
269 NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY
, 1);
270 ps3vram_out_ring(priv
, 0);
271 ps3vram_begin_ring(priv
, UPLOAD_SUBCH
, 0x100, 1);
272 ps3vram_out_ring(priv
, 0);
273 ps3vram_fire_ring(dev
);
274 if (ps3vram_notifier_wait(dev
, 200) < 0) {
275 dev_warn(&dev
->core
, "%s: Notifier timeout\n", __func__
);
282 static int ps3vram_download(struct ps3_system_bus_device
*dev
,
283 unsigned int src_offset
, unsigned int dst_offset
,
286 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
288 ps3vram_begin_ring(priv
, DOWNLOAD_SUBCH
,
289 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN
, 8);
290 ps3vram_out_ring(priv
, src_offset
);
291 ps3vram_out_ring(priv
, XDR_IOIF
+ dst_offset
);
292 ps3vram_out_ring(priv
, len
);
293 ps3vram_out_ring(priv
, len
);
294 ps3vram_out_ring(priv
, len
);
295 ps3vram_out_ring(priv
, count
);
296 ps3vram_out_ring(priv
, (1 << 8) | 1);
297 ps3vram_out_ring(priv
, 0);
299 ps3vram_notifier_reset(dev
);
300 ps3vram_begin_ring(priv
, DOWNLOAD_SUBCH
,
301 NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY
, 1);
302 ps3vram_out_ring(priv
, 0);
303 ps3vram_begin_ring(priv
, DOWNLOAD_SUBCH
, 0x100, 1);
304 ps3vram_out_ring(priv
, 0);
305 ps3vram_fire_ring(dev
);
306 if (ps3vram_notifier_wait(dev
, 200) < 0) {
307 dev_warn(&dev
->core
, "%s: Notifier timeout\n", __func__
);
314 static void ps3vram_cache_evict(struct ps3_system_bus_device
*dev
, int entry
)
316 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
317 struct ps3vram_cache
*cache
= &priv
->cache
;
319 if (!(cache
->tags
[entry
].flags
& CACHE_PAGE_DIRTY
))
322 dev_dbg(&dev
->core
, "Flushing %d: 0x%08x\n", entry
,
323 cache
->tags
[entry
].address
);
324 if (ps3vram_upload(dev
, CACHE_OFFSET
+ entry
* cache
->page_size
,
325 cache
->tags
[entry
].address
, DMA_PAGE_SIZE
,
326 cache
->page_size
/ DMA_PAGE_SIZE
) < 0) {
328 "Failed to upload from 0x%x to " "0x%x size 0x%x\n",
329 entry
* cache
->page_size
, cache
->tags
[entry
].address
,
332 cache
->tags
[entry
].flags
&= ~CACHE_PAGE_DIRTY
;
335 static void ps3vram_cache_load(struct ps3_system_bus_device
*dev
, int entry
,
336 unsigned int address
)
338 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
339 struct ps3vram_cache
*cache
= &priv
->cache
;
341 dev_dbg(&dev
->core
, "Fetching %d: 0x%08x\n", entry
, address
);
342 if (ps3vram_download(dev
, address
,
343 CACHE_OFFSET
+ entry
* cache
->page_size
,
345 cache
->page_size
/ DMA_PAGE_SIZE
) < 0) {
347 "Failed to download from 0x%x to 0x%x size 0x%x\n",
348 address
, entry
* cache
->page_size
, cache
->page_size
);
351 cache
->tags
[entry
].address
= address
;
352 cache
->tags
[entry
].flags
|= CACHE_PAGE_PRESENT
;
356 static void ps3vram_cache_flush(struct ps3_system_bus_device
*dev
)
358 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
359 struct ps3vram_cache
*cache
= &priv
->cache
;
362 dev_dbg(&dev
->core
, "FLUSH\n");
363 for (i
= 0; i
< cache
->page_count
; i
++) {
364 ps3vram_cache_evict(dev
, i
);
365 cache
->tags
[i
].flags
= 0;
369 static unsigned int ps3vram_cache_match(struct ps3_system_bus_device
*dev
,
372 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
373 struct ps3vram_cache
*cache
= &priv
->cache
;
379 offset
= (unsigned int) (address
& (cache
->page_size
- 1));
380 base
= (unsigned int) (address
- offset
);
382 /* fully associative check */
383 for (i
= 0; i
< cache
->page_count
; i
++) {
384 if ((cache
->tags
[i
].flags
& CACHE_PAGE_PRESENT
) &&
385 cache
->tags
[i
].address
== base
) {
387 dev_dbg(&dev
->core
, "Found entry %d: 0x%08x\n", i
,
388 cache
->tags
[i
].address
);
393 /* choose a random entry */
394 i
= (jiffies
+ (counter
++)) % cache
->page_count
;
395 dev_dbg(&dev
->core
, "Using entry %d\n", i
);
397 ps3vram_cache_evict(dev
, i
);
398 ps3vram_cache_load(dev
, i
, base
);
404 static int ps3vram_cache_init(struct ps3_system_bus_device
*dev
)
406 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
408 priv
->cache
.page_count
= CACHE_PAGE_COUNT
;
409 priv
->cache
.page_size
= CACHE_PAGE_SIZE
;
410 priv
->cache
.tags
= kzalloc(sizeof(struct ps3vram_tag
) *
411 CACHE_PAGE_COUNT
, GFP_KERNEL
);
412 if (priv
->cache
.tags
== NULL
) {
413 dev_err(&dev
->core
, "Could not allocate cache tags\n");
417 dev_info(&dev
->core
, "Created ram cache: %d entries, %d KiB each\n",
418 CACHE_PAGE_COUNT
, CACHE_PAGE_SIZE
/ 1024);
423 static void ps3vram_cache_cleanup(struct ps3_system_bus_device
*dev
)
425 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
427 ps3vram_cache_flush(dev
);
428 kfree(priv
->cache
.tags
);
431 static int ps3vram_read(struct ps3_system_bus_device
*dev
, loff_t from
,
432 size_t len
, size_t *retlen
, u_char
*buf
)
434 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
435 unsigned int cached
, count
;
437 dev_dbg(&dev
->core
, "%s: from=0x%08x len=0x%zx\n", __func__
,
438 (unsigned int)from
, len
);
440 if (from
>= priv
->size
)
443 if (len
> priv
->size
- from
)
444 len
= priv
->size
- from
;
446 /* Copy from vram to buf */
449 unsigned int offset
, avail
;
452 offset
= (unsigned int) (from
& (priv
->cache
.page_size
- 1));
453 avail
= priv
->cache
.page_size
- offset
;
455 entry
= ps3vram_cache_match(dev
, from
);
456 cached
= CACHE_OFFSET
+ entry
* priv
->cache
.page_size
+ offset
;
458 dev_dbg(&dev
->core
, "%s: from=%08x cached=%08x offset=%08x "
459 "avail=%08x count=%08x\n", __func__
,
460 (unsigned int)from
, cached
, offset
, avail
, count
);
464 memcpy(buf
, priv
->xdr_buf
+ cached
, avail
);
475 static int ps3vram_write(struct ps3_system_bus_device
*dev
, loff_t to
,
476 size_t len
, size_t *retlen
, const u_char
*buf
)
478 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
479 unsigned int cached
, count
;
481 if (to
>= priv
->size
)
484 if (len
> priv
->size
- to
)
485 len
= priv
->size
- to
;
487 /* Copy from buf to vram */
490 unsigned int offset
, avail
;
493 offset
= (unsigned int) (to
& (priv
->cache
.page_size
- 1));
494 avail
= priv
->cache
.page_size
- offset
;
496 entry
= ps3vram_cache_match(dev
, to
);
497 cached
= CACHE_OFFSET
+ entry
* priv
->cache
.page_size
+ offset
;
499 dev_dbg(&dev
->core
, "%s: to=%08x cached=%08x offset=%08x "
500 "avail=%08x count=%08x\n", __func__
, (unsigned int)to
,
501 cached
, offset
, avail
, count
);
505 memcpy(priv
->xdr_buf
+ cached
, buf
, avail
);
507 priv
->cache
.tags
[entry
].flags
|= CACHE_PAGE_DIRTY
;
518 static int ps3vram_proc_show(struct seq_file
*m
, void *v
)
520 struct ps3vram_priv
*priv
= m
->private;
522 seq_printf(m
, "hit:%u\nmiss:%u\n", priv
->cache
.hit
, priv
->cache
.miss
);
526 static int ps3vram_proc_open(struct inode
*inode
, struct file
*file
)
528 return single_open(file
, ps3vram_proc_show
, PDE_DATA(inode
));
531 static const struct file_operations ps3vram_proc_fops
= {
532 .owner
= THIS_MODULE
,
533 .open
= ps3vram_proc_open
,
536 .release
= single_release
,
539 static void ps3vram_proc_init(struct ps3_system_bus_device
*dev
)
541 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
542 struct proc_dir_entry
*pde
;
544 pde
= proc_create_data(DEVICE_NAME
, 0444, NULL
, &ps3vram_proc_fops
,
547 dev_warn(&dev
->core
, "failed to create /proc entry\n");
550 static struct bio
*ps3vram_do_bio(struct ps3_system_bus_device
*dev
,
553 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
554 int write
= bio_data_dir(bio
) == WRITE
;
555 const char *op
= write
? "write" : "read";
556 loff_t offset
= bio
->bi_iter
.bi_sector
<< 9;
559 struct bvec_iter iter
;
562 bio_for_each_segment(bvec
, bio
, iter
) {
563 /* PS3 is ppc64, so we don't handle highmem */
564 char *ptr
= page_address(bvec
.bv_page
) + bvec
.bv_offset
;
565 size_t len
= bvec
.bv_len
, retlen
;
567 dev_dbg(&dev
->core
, " %s %zu bytes at offset %llu\n", op
,
570 error
= ps3vram_write(dev
, offset
, len
, &retlen
, ptr
);
572 error
= ps3vram_read(dev
, offset
, len
, &retlen
, ptr
);
575 dev_err(&dev
->core
, "%s failed\n", op
);
580 dev_err(&dev
->core
, "Short %s\n", op
);
588 dev_dbg(&dev
->core
, "%s completed\n", op
);
591 spin_lock_irq(&priv
->lock
);
592 bio_list_pop(&priv
->list
);
593 next
= bio_list_peek(&priv
->list
);
594 spin_unlock_irq(&priv
->lock
);
596 bio_endio(bio
, error
);
600 static void ps3vram_make_request(struct request_queue
*q
, struct bio
*bio
)
602 struct ps3_system_bus_device
*dev
= q
->queuedata
;
603 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
606 dev_dbg(&dev
->core
, "%s\n", __func__
);
608 spin_lock_irq(&priv
->lock
);
609 busy
= !bio_list_empty(&priv
->list
);
610 bio_list_add(&priv
->list
, bio
);
611 spin_unlock_irq(&priv
->lock
);
617 bio
= ps3vram_do_bio(dev
, bio
);
621 static int ps3vram_probe(struct ps3_system_bus_device
*dev
)
623 struct ps3vram_priv
*priv
;
625 struct request_queue
*queue
;
626 struct gendisk
*gendisk
;
627 u64 ddr_size
, ddr_lpar
, ctrl_lpar
, info_lpar
, reports_lpar
,
628 reports_size
, xdr_lpar
;
631 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
637 spin_lock_init(&priv
->lock
);
638 bio_list_init(&priv
->list
);
639 ps3_system_bus_set_drvdata(dev
, priv
);
641 /* Allocate XDR buffer (1MiB aligned) */
642 priv
->xdr_buf
= (void *)__get_free_pages(GFP_KERNEL
,
643 get_order(XDR_BUF_SIZE
));
644 if (priv
->xdr_buf
== NULL
) {
645 dev_err(&dev
->core
, "Could not allocate XDR buffer\n");
650 /* Put FIFO at begginning of XDR buffer */
651 priv
->fifo_base
= (u32
*) (priv
->xdr_buf
+ FIFO_OFFSET
);
652 priv
->fifo_ptr
= priv
->fifo_base
;
654 /* XXX: Need to open GPU, in case ps3fb or snd_ps3 aren't loaded */
655 if (ps3_open_hv_device(dev
)) {
656 dev_err(&dev
->core
, "ps3_open_hv_device failed\n");
658 goto out_free_xdr_buf
;
663 ddr_size
= ALIGN(memparse(size
, &rest
), 1024*1024);
665 dev_err(&dev
->core
, "Specified size is too small\n");
670 while (ddr_size
> 0) {
671 status
= lv1_gpu_memory_allocate(ddr_size
, 0, 0, 0, 0,
672 &priv
->memory_handle
,
676 ddr_size
-= 1024*1024;
679 dev_err(&dev
->core
, "lv1_gpu_memory_allocate failed %d\n",
685 /* Request context */
686 status
= lv1_gpu_context_allocate(priv
->memory_handle
, 0,
687 &priv
->context_handle
, &ctrl_lpar
,
688 &info_lpar
, &reports_lpar
,
691 dev_err(&dev
->core
, "lv1_gpu_context_allocate failed %d\n",
694 goto out_free_memory
;
697 /* Map XDR buffer to RSX */
698 xdr_lpar
= ps3_mm_phys_to_lpar(__pa(priv
->xdr_buf
));
699 status
= lv1_gpu_context_iomap(priv
->context_handle
, XDR_IOIF
,
700 xdr_lpar
, XDR_BUF_SIZE
,
701 CBE_IOPTE_PP_W
| CBE_IOPTE_PP_R
|
704 dev_err(&dev
->core
, "lv1_gpu_context_iomap failed %d\n",
707 goto out_free_context
;
710 priv
->ctrl
= ioremap(ctrl_lpar
, 64 * 1024);
712 dev_err(&dev
->core
, "ioremap CTRL failed\n");
714 goto out_unmap_context
;
717 priv
->reports
= ioremap(reports_lpar
, reports_size
);
718 if (!priv
->reports
) {
719 dev_err(&dev
->core
, "ioremap REPORTS failed\n");
724 mutex_lock(&ps3_gpu_mutex
);
725 ps3vram_init_ring(dev
);
726 mutex_unlock(&ps3_gpu_mutex
);
728 priv
->size
= ddr_size
;
732 mutex_lock(&ps3_gpu_mutex
);
733 error
= ps3vram_wait_ring(dev
, 100);
734 mutex_unlock(&ps3_gpu_mutex
);
736 dev_err(&dev
->core
, "Failed to initialize channels\n");
738 goto out_unmap_reports
;
741 ps3vram_cache_init(dev
);
742 ps3vram_proc_init(dev
);
744 queue
= blk_alloc_queue(GFP_KERNEL
);
746 dev_err(&dev
->core
, "blk_alloc_queue failed\n");
748 goto out_cache_cleanup
;
752 queue
->queuedata
= dev
;
753 blk_queue_make_request(queue
, ps3vram_make_request
);
754 blk_queue_max_segments(queue
, BLK_MAX_SEGMENTS
);
755 blk_queue_max_segment_size(queue
, BLK_MAX_SEGMENT_SIZE
);
756 blk_queue_max_hw_sectors(queue
, BLK_SAFE_MAX_SECTORS
);
758 gendisk
= alloc_disk(1);
760 dev_err(&dev
->core
, "alloc_disk failed\n");
762 goto fail_cleanup_queue
;
765 priv
->gendisk
= gendisk
;
766 gendisk
->major
= ps3vram_major
;
767 gendisk
->first_minor
= 0;
768 gendisk
->fops
= &ps3vram_fops
;
769 gendisk
->queue
= queue
;
770 gendisk
->private_data
= dev
;
771 gendisk
->driverfs_dev
= &dev
->core
;
772 strlcpy(gendisk
->disk_name
, DEVICE_NAME
, sizeof(gendisk
->disk_name
));
773 set_capacity(gendisk
, priv
->size
>> 9);
775 dev_info(&dev
->core
, "%s: Using %lu MiB of GPU memory\n",
776 gendisk
->disk_name
, get_capacity(gendisk
) >> 11);
782 blk_cleanup_queue(queue
);
784 remove_proc_entry(DEVICE_NAME
, NULL
);
785 ps3vram_cache_cleanup(dev
);
787 iounmap(priv
->reports
);
791 lv1_gpu_context_iomap(priv
->context_handle
, XDR_IOIF
, xdr_lpar
,
792 XDR_BUF_SIZE
, CBE_IOPTE_M
);
794 lv1_gpu_context_free(priv
->context_handle
);
796 lv1_gpu_memory_free(priv
->memory_handle
);
798 ps3_close_hv_device(dev
);
800 free_pages((unsigned long) priv
->xdr_buf
, get_order(XDR_BUF_SIZE
));
803 ps3_system_bus_set_drvdata(dev
, NULL
);
808 static int ps3vram_remove(struct ps3_system_bus_device
*dev
)
810 struct ps3vram_priv
*priv
= ps3_system_bus_get_drvdata(dev
);
812 del_gendisk(priv
->gendisk
);
813 put_disk(priv
->gendisk
);
814 blk_cleanup_queue(priv
->queue
);
815 remove_proc_entry(DEVICE_NAME
, NULL
);
816 ps3vram_cache_cleanup(dev
);
817 iounmap(priv
->reports
);
819 lv1_gpu_context_iomap(priv
->context_handle
, XDR_IOIF
,
820 ps3_mm_phys_to_lpar(__pa(priv
->xdr_buf
)),
821 XDR_BUF_SIZE
, CBE_IOPTE_M
);
822 lv1_gpu_context_free(priv
->context_handle
);
823 lv1_gpu_memory_free(priv
->memory_handle
);
824 ps3_close_hv_device(dev
);
825 free_pages((unsigned long) priv
->xdr_buf
, get_order(XDR_BUF_SIZE
));
827 ps3_system_bus_set_drvdata(dev
, NULL
);
831 static struct ps3_system_bus_driver ps3vram
= {
832 .match_id
= PS3_MATCH_ID_GPU
,
833 .match_sub_id
= PS3_MATCH_SUB_ID_GPU_RAMDISK
,
834 .core
.name
= DEVICE_NAME
,
835 .core
.owner
= THIS_MODULE
,
836 .probe
= ps3vram_probe
,
837 .remove
= ps3vram_remove
,
838 .shutdown
= ps3vram_remove
,
842 static int __init
ps3vram_init(void)
846 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
849 error
= register_blkdev(0, DEVICE_NAME
);
851 pr_err("%s: register_blkdev failed %d\n", DEVICE_NAME
, error
);
854 ps3vram_major
= error
;
856 pr_info("%s: registered block device major %d\n", DEVICE_NAME
,
859 error
= ps3_system_bus_driver_register(&ps3vram
);
861 unregister_blkdev(ps3vram_major
, DEVICE_NAME
);
866 static void __exit
ps3vram_exit(void)
868 ps3_system_bus_driver_unregister(&ps3vram
);
869 unregister_blkdev(ps3vram_major
, DEVICE_NAME
);
872 module_init(ps3vram_init
);
873 module_exit(ps3vram_exit
);
875 MODULE_LICENSE("GPL");
876 MODULE_DESCRIPTION("PS3 Video RAM Storage Driver");
877 MODULE_AUTHOR("Sony Corporation");
878 MODULE_ALIAS(PS3_MODULE_ALIAS_GPU_RAMDISK
);