2 * PS3 device registration routines.
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
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/delay.h>
22 #include <linux/freezer.h>
23 #include <linux/kernel.h>
24 #include <linux/kthread.h>
25 #include <linux/init.h>
26 #include <linux/reboot.h>
28 #include <asm/firmware.h>
29 #include <asm/lv1call.h>
30 #include <asm/ps3stor.h>
34 static int __init
ps3_register_lpm_devices(void)
39 struct ps3_system_bus_device
*dev
;
41 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
43 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
47 dev
->match_id
= PS3_MATCH_ID_LPM
;
48 dev
->dev_type
= PS3_DEVICE_TYPE_LPM
;
50 /* The current lpm driver only supports a single BE processor. */
52 result
= ps3_repository_read_be_node_id(0, &dev
->lpm
.node_id
);
55 pr_debug("%s:%d: ps3_repository_read_be_node_id failed \n",
60 result
= ps3_repository_read_lpm_privileges(dev
->lpm
.node_id
, &tmp1
,
64 pr_debug("%s:%d: ps3_repository_read_lpm_privleges failed \n",
69 lv1_get_logical_partition_id(&tmp2
);
72 pr_debug("%s:%d: wrong lpar\n",
78 if (!(dev
->lpm
.rights
& PS3_LPM_RIGHTS_USE_LPM
)) {
79 pr_debug("%s:%d: don't have rights to use lpm\n",
85 pr_debug("%s:%d: pu_id %lu, rights %lu(%lxh)\n",
86 __func__
, __LINE__
, dev
->lpm
.pu_id
, dev
->lpm
.rights
,
89 result
= ps3_repository_read_pu_id(0, &dev
->lpm
.pu_id
);
92 pr_debug("%s:%d: ps3_repository_read_pu_id failed \n",
97 result
= ps3_system_bus_device_register(dev
);
100 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
105 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
113 pr_debug(" <- %s:%d: failed\n", __func__
, __LINE__
);
118 * ps3_setup_gelic_device - Setup and register a gelic device instance.
120 * Allocates memory for a struct ps3_system_bus_device instance, initialises the
121 * structure members, and registers the device instance with the system bus.
124 static int __init
ps3_setup_gelic_device(
125 const struct ps3_repository_device
*repo
)
129 struct ps3_system_bus_device dev
;
130 struct ps3_dma_region d_region
;
133 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
135 BUG_ON(repo
->bus_type
!= PS3_BUS_TYPE_SB
);
136 BUG_ON(repo
->dev_type
!= PS3_DEV_TYPE_SB_GELIC
);
138 p
= kzalloc(sizeof(struct layout
), GFP_KERNEL
);
145 p
->dev
.match_id
= PS3_MATCH_ID_GELIC
;
146 p
->dev
.dev_type
= PS3_DEVICE_TYPE_SB
;
147 p
->dev
.bus_id
= repo
->bus_id
;
148 p
->dev
.dev_id
= repo
->dev_id
;
149 p
->dev
.d_region
= &p
->d_region
;
151 result
= ps3_repository_find_interrupt(repo
,
152 PS3_INTERRUPT_TYPE_EVENT_PORT
, &p
->dev
.interrupt_id
);
155 pr_debug("%s:%d ps3_repository_find_interrupt failed\n",
157 goto fail_find_interrupt
;
160 BUG_ON(p
->dev
.interrupt_id
!= 0);
162 result
= ps3_dma_region_init(&p
->dev
, p
->dev
.d_region
, PS3_DMA_64K
,
163 PS3_DMA_OTHER
, NULL
, 0);
166 pr_debug("%s:%d ps3_dma_region_init failed\n",
171 result
= ps3_system_bus_device_register(&p
->dev
);
174 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
176 goto fail_device_register
;
179 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
182 fail_device_register
:
187 pr_debug(" <- %s:%d: fail.\n", __func__
, __LINE__
);
191 static int __init_refok
ps3_setup_uhc_device(
192 const struct ps3_repository_device
*repo
, enum ps3_match_id match_id
,
193 enum ps3_interrupt_type interrupt_type
, enum ps3_reg_type reg_type
)
197 struct ps3_system_bus_device dev
;
198 struct ps3_dma_region d_region
;
199 struct ps3_mmio_region m_region
;
204 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
206 BUG_ON(repo
->bus_type
!= PS3_BUS_TYPE_SB
);
207 BUG_ON(repo
->dev_type
!= PS3_DEV_TYPE_SB_USB
);
209 p
= kzalloc(sizeof(struct layout
), GFP_KERNEL
);
216 p
->dev
.match_id
= match_id
;
217 p
->dev
.dev_type
= PS3_DEVICE_TYPE_SB
;
218 p
->dev
.bus_id
= repo
->bus_id
;
219 p
->dev
.dev_id
= repo
->dev_id
;
220 p
->dev
.d_region
= &p
->d_region
;
221 p
->dev
.m_region
= &p
->m_region
;
223 result
= ps3_repository_find_interrupt(repo
,
224 interrupt_type
, &p
->dev
.interrupt_id
);
227 pr_debug("%s:%d ps3_repository_find_interrupt failed\n",
229 goto fail_find_interrupt
;
232 result
= ps3_repository_find_reg(repo
, reg_type
,
236 pr_debug("%s:%d ps3_repository_find_reg failed\n",
241 result
= ps3_dma_region_init(&p
->dev
, p
->dev
.d_region
, PS3_DMA_64K
,
242 PS3_DMA_INTERNAL
, NULL
, 0);
245 pr_debug("%s:%d ps3_dma_region_init failed\n",
250 result
= ps3_mmio_region_init(&p
->dev
, p
->dev
.m_region
, bus_addr
, len
,
254 pr_debug("%s:%d ps3_mmio_region_init failed\n",
259 result
= ps3_system_bus_device_register(&p
->dev
);
262 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
264 goto fail_device_register
;
267 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
270 fail_device_register
:
277 pr_debug(" <- %s:%d: fail.\n", __func__
, __LINE__
);
281 static int __init
ps3_setup_ehci_device(
282 const struct ps3_repository_device
*repo
)
284 return ps3_setup_uhc_device(repo
, PS3_MATCH_ID_EHCI
,
285 PS3_INTERRUPT_TYPE_SB_EHCI
, PS3_REG_TYPE_SB_EHCI
);
288 static int __init
ps3_setup_ohci_device(
289 const struct ps3_repository_device
*repo
)
291 return ps3_setup_uhc_device(repo
, PS3_MATCH_ID_OHCI
,
292 PS3_INTERRUPT_TYPE_SB_OHCI
, PS3_REG_TYPE_SB_OHCI
);
295 static int __init
ps3_setup_vuart_device(enum ps3_match_id match_id
,
296 unsigned int port_number
)
300 struct ps3_system_bus_device dev
;
303 pr_debug(" -> %s:%d: match_id %u, port %u\n", __func__
, __LINE__
,
304 match_id
, port_number
);
306 p
= kzalloc(sizeof(struct layout
), GFP_KERNEL
);
311 p
->dev
.match_id
= match_id
;
312 p
->dev
.dev_type
= PS3_DEVICE_TYPE_VUART
;
313 p
->dev
.port_number
= port_number
;
315 result
= ps3_system_bus_device_register(&p
->dev
);
318 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
321 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
325 static int ps3_setup_storage_dev(const struct ps3_repository_device
*repo
,
326 enum ps3_match_id match_id
)
329 struct ps3_storage_device
*p
;
330 u64 port
, blk_size
, num_blocks
;
331 unsigned int num_regions
, i
;
333 pr_debug(" -> %s:%u: match_id %u\n", __func__
, __LINE__
, match_id
);
335 result
= ps3_repository_read_stor_dev_info(repo
->bus_index
,
336 repo
->dev_index
, &port
,
337 &blk_size
, &num_blocks
,
340 printk(KERN_ERR
"%s:%u: _read_stor_dev_info failed %d\n",
341 __func__
, __LINE__
, result
);
345 pr_debug("%s:%u: (%u:%u:%u): port %lu blk_size %lu num_blocks %lu "
346 "num_regions %u\n", __func__
, __LINE__
, repo
->bus_index
,
347 repo
->dev_index
, repo
->dev_type
, port
, blk_size
, num_blocks
,
350 p
= kzalloc(sizeof(struct ps3_storage_device
) +
351 num_regions
* sizeof(struct ps3_storage_region
),
358 p
->sbd
.match_id
= match_id
;
359 p
->sbd
.dev_type
= PS3_DEVICE_TYPE_SB
;
360 p
->sbd
.bus_id
= repo
->bus_id
;
361 p
->sbd
.dev_id
= repo
->dev_id
;
362 p
->sbd
.d_region
= &p
->dma_region
;
363 p
->blk_size
= blk_size
;
364 p
->num_regions
= num_regions
;
366 result
= ps3_repository_find_interrupt(repo
,
367 PS3_INTERRUPT_TYPE_EVENT_PORT
,
368 &p
->sbd
.interrupt_id
);
370 printk(KERN_ERR
"%s:%u: find_interrupt failed %d\n", __func__
,
373 goto fail_find_interrupt
;
376 for (i
= 0; i
< num_regions
; i
++) {
380 result
= ps3_repository_read_stor_dev_region(repo
->bus_index
,
386 "%s:%u: read_stor_dev_region failed %d\n",
387 __func__
, __LINE__
, result
);
389 goto fail_read_region
;
391 pr_debug("%s:%u: region %u: id %u start %lu size %lu\n",
392 __func__
, __LINE__
, i
, id
, start
, size
);
394 p
->regions
[i
].id
= id
;
395 p
->regions
[i
].start
= start
;
396 p
->regions
[i
].size
= size
;
399 result
= ps3_system_bus_device_register(&p
->sbd
);
401 pr_debug("%s:%u ps3_system_bus_device_register failed\n",
403 goto fail_device_register
;
406 pr_debug(" <- %s:%u\n", __func__
, __LINE__
);
409 fail_device_register
:
414 pr_debug(" <- %s:%u: fail.\n", __func__
, __LINE__
);
418 static int __init
ps3_register_vuart_devices(void)
421 unsigned int port_number
;
423 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
425 result
= ps3_repository_read_vuart_av_port(&port_number
);
427 port_number
= 0; /* av default */
429 result
= ps3_setup_vuart_device(PS3_MATCH_ID_AV_SETTINGS
, port_number
);
432 result
= ps3_repository_read_vuart_sysmgr_port(&port_number
);
434 port_number
= 2; /* sysmgr default */
436 result
= ps3_setup_vuart_device(PS3_MATCH_ID_SYSTEM_MANAGER
,
440 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
444 static int __init
ps3_register_sound_devices(void)
448 struct ps3_system_bus_device dev
;
449 struct ps3_dma_region d_region
;
450 struct ps3_mmio_region m_region
;
453 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
455 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
459 p
->dev
.match_id
= PS3_MATCH_ID_SOUND
;
460 p
->dev
.dev_type
= PS3_DEVICE_TYPE_IOC0
;
461 p
->dev
.d_region
= &p
->d_region
;
462 p
->dev
.m_region
= &p
->m_region
;
464 result
= ps3_system_bus_device_register(&p
->dev
);
467 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
470 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
474 static int __init
ps3_register_graphics_devices(void)
478 struct ps3_system_bus_device dev
;
481 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
483 p
= kzalloc(sizeof(struct layout
), GFP_KERNEL
);
488 p
->dev
.match_id
= PS3_MATCH_ID_GRAPHICS
;
489 p
->dev
.dev_type
= PS3_DEVICE_TYPE_IOC0
;
491 result
= ps3_system_bus_device_register(&p
->dev
);
494 pr_debug("%s:%d ps3_system_bus_device_register failed\n",
497 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
502 * ps3_setup_dynamic_device - Setup a dynamic device from the repository
505 static int ps3_setup_dynamic_device(const struct ps3_repository_device
*repo
)
509 switch (repo
->dev_type
) {
510 case PS3_DEV_TYPE_STOR_DISK
:
511 result
= ps3_setup_storage_dev(repo
, PS3_MATCH_ID_STOR_DISK
);
513 /* Some devices are not accessable from the Other OS lpar. */
514 if (result
== -ENODEV
) {
516 pr_debug("%s:%u: not accessable\n", __func__
,
521 pr_debug("%s:%u ps3_setup_storage_dev failed\n",
525 case PS3_DEV_TYPE_STOR_ROM
:
526 result
= ps3_setup_storage_dev(repo
, PS3_MATCH_ID_STOR_ROM
);
528 pr_debug("%s:%u ps3_setup_storage_dev failed\n",
532 case PS3_DEV_TYPE_STOR_FLASH
:
533 result
= ps3_setup_storage_dev(repo
, PS3_MATCH_ID_STOR_FLASH
);
535 pr_debug("%s:%u ps3_setup_storage_dev failed\n",
541 pr_debug("%s:%u: unsupported dev_type %u\n", __func__
, __LINE__
,
549 * ps3_setup_static_device - Setup a static device from the repository
552 static int __init
ps3_setup_static_device(const struct ps3_repository_device
*repo
)
556 switch (repo
->dev_type
) {
557 case PS3_DEV_TYPE_SB_GELIC
:
558 result
= ps3_setup_gelic_device(repo
);
560 pr_debug("%s:%d ps3_setup_gelic_device failed\n",
564 case PS3_DEV_TYPE_SB_USB
:
566 /* Each USB device has both an EHCI and an OHCI HC */
568 result
= ps3_setup_ehci_device(repo
);
571 pr_debug("%s:%d ps3_setup_ehci_device failed\n",
575 result
= ps3_setup_ohci_device(repo
);
578 pr_debug("%s:%d ps3_setup_ohci_device failed\n",
584 return ps3_setup_dynamic_device(repo
);
590 static void ps3_find_and_add_device(u64 bus_id
, u64 dev_id
)
592 struct ps3_repository_device repo
;
594 unsigned int retries
;
598 * On some firmware versions (e.g. 1.90), the device may not show up
599 * in the repository immediately
601 for (retries
= 0; retries
< 10; retries
++) {
602 res
= ps3_repository_find_device_by_id(&repo
, bus_id
, dev_id
);
606 rem
= msleep_interruptible(100);
610 pr_warning("%s:%u: device %lu:%lu not found\n", __func__
, __LINE__
,
616 pr_debug("%s:%u: device %lu:%lu found after %u retries\n",
617 __func__
, __LINE__
, bus_id
, dev_id
, retries
);
619 ps3_setup_dynamic_device(&repo
);
623 #define PS3_NOTIFICATION_DEV_ID ULONG_MAX
624 #define PS3_NOTIFICATION_INTERRUPT_ID 0
626 struct ps3_notification_device
{
627 struct ps3_system_bus_device sbd
;
631 struct completion done
;
634 enum ps3_notify_type
{
635 notify_device_ready
= 0,
636 notify_region_probe
= 1,
637 notify_region_update
= 2,
640 struct ps3_notify_cmd
{
641 u64 operation_code
; /* must be zero */
642 u64 event_mask
; /* OR of 1UL << enum ps3_notify_type */
645 struct ps3_notify_event
{
646 u64 event_type
; /* enum ps3_notify_type */
653 static irqreturn_t
ps3_notification_interrupt(int irq
, void *data
)
655 struct ps3_notification_device
*dev
= data
;
659 spin_lock(&dev
->lock
);
660 res
= lv1_storage_get_async_status(PS3_NOTIFICATION_DEV_ID
, &tag
,
663 pr_err("%s:%u: tag mismatch, got %lx, expected %lx\n",
664 __func__
, __LINE__
, tag
, dev
->tag
);
667 pr_err("%s:%u: res %d status 0x%lx\n", __func__
, __LINE__
, res
,
670 pr_debug("%s:%u: completed, status 0x%lx\n", __func__
,
672 dev
->lv1_status
= status
;
673 complete(&dev
->done
);
675 spin_unlock(&dev
->lock
);
679 static int ps3_notification_read_write(struct ps3_notification_device
*dev
,
682 const char *op
= write
? "write" : "read";
686 init_completion(&dev
->done
);
687 spin_lock_irqsave(&dev
->lock
, flags
);
688 res
= write
? lv1_storage_write(dev
->sbd
.dev_id
, 0, 0, 1, 0, lpar
,
690 : lv1_storage_read(dev
->sbd
.dev_id
, 0, 0, 1, 0, lpar
,
692 spin_unlock_irqrestore(&dev
->lock
, flags
);
694 pr_err("%s:%u: %s failed %d\n", __func__
, __LINE__
, op
, res
);
697 pr_debug("%s:%u: notification %s issued\n", __func__
, __LINE__
, op
);
699 res
= wait_event_interruptible(dev
->done
.wait
,
700 dev
->done
.done
|| kthread_should_stop());
701 if (kthread_should_stop())
704 pr_debug("%s:%u: interrupted %s\n", __func__
, __LINE__
, op
);
708 if (dev
->lv1_status
) {
709 pr_err("%s:%u: %s not completed, status 0x%lx\n", __func__
,
710 __LINE__
, op
, dev
->lv1_status
);
713 pr_debug("%s:%u: notification %s completed\n", __func__
, __LINE__
, op
);
718 static struct task_struct
*probe_task
;
721 * ps3_probe_thread - Background repository probing at system startup.
723 * This implementation only supports background probing on a single bus.
724 * It uses the hypervisor's storage device notification mechanism to wait until
725 * a storage device is ready. The device notification mechanism uses a
726 * pseudo device to asynchronously notify the guest when storage devices become
727 * ready. The notification device has a block size of 512 bytes.
730 static int ps3_probe_thread(void *data
)
732 struct ps3_notification_device dev
;
737 struct ps3_notify_cmd
*notify_cmd
;
738 struct ps3_notify_event
*notify_event
;
740 pr_debug(" -> %s:%u: kthread started\n", __func__
, __LINE__
);
742 buf
= kzalloc(512, GFP_KERNEL
);
746 lpar
= ps3_mm_phys_to_lpar(__pa(buf
));
750 /* dummy system bus device */
751 dev
.sbd
.bus_id
= (u64
)data
;
752 dev
.sbd
.dev_id
= PS3_NOTIFICATION_DEV_ID
;
753 dev
.sbd
.interrupt_id
= PS3_NOTIFICATION_INTERRUPT_ID
;
755 res
= lv1_open_device(dev
.sbd
.bus_id
, dev
.sbd
.dev_id
, 0);
757 pr_err("%s:%u: lv1_open_device failed %s\n", __func__
,
758 __LINE__
, ps3_result(res
));
762 res
= ps3_sb_event_receive_port_setup(&dev
.sbd
, PS3_BINDING_CPU_ANY
,
765 pr_err("%s:%u: ps3_sb_event_receive_port_setup failed %d\n",
766 __func__
, __LINE__
, res
);
767 goto fail_close_device
;
770 spin_lock_init(&dev
.lock
);
772 res
= request_irq(irq
, ps3_notification_interrupt
, IRQF_DISABLED
,
773 "ps3_notification", &dev
);
775 pr_err("%s:%u: request_irq failed %d\n", __func__
, __LINE__
,
777 goto fail_sb_event_receive_port_destroy
;
780 /* Setup and write the request for device notification. */
781 notify_cmd
->operation_code
= 0; /* must be zero */
782 notify_cmd
->event_mask
= 1UL << notify_region_probe
;
784 res
= ps3_notification_read_write(&dev
, lpar
, 1);
788 /* Loop here processing the requested notification events. */
792 memset(notify_event
, 0, sizeof(*notify_event
));
794 res
= ps3_notification_read_write(&dev
, lpar
, 0);
798 pr_debug("%s:%u: notify event type 0x%lx bus id %lu dev id %lu"
799 " type %lu port %lu\n", __func__
, __LINE__
,
800 notify_event
->event_type
, notify_event
->bus_id
,
801 notify_event
->dev_id
, notify_event
->dev_type
,
802 notify_event
->dev_port
);
804 if (notify_event
->event_type
!= notify_region_probe
||
805 notify_event
->bus_id
!= dev
.sbd
.bus_id
) {
806 pr_warning("%s:%u: bad notify_event: event %lu, "
807 "dev_id %lu, dev_type %lu\n",
808 __func__
, __LINE__
, notify_event
->event_type
,
809 notify_event
->dev_id
,
810 notify_event
->dev_type
);
814 ps3_find_and_add_device(dev
.sbd
.bus_id
, notify_event
->dev_id
);
816 } while (!kthread_should_stop());
820 fail_sb_event_receive_port_destroy
:
821 ps3_sb_event_receive_port_destroy(&dev
.sbd
, irq
);
823 lv1_close_device(dev
.sbd
.bus_id
, dev
.sbd
.dev_id
);
829 pr_debug(" <- %s:%u: kthread finished\n", __func__
, __LINE__
);
835 * ps3_stop_probe_thread - Stops the background probe thread.
839 static int ps3_stop_probe_thread(struct notifier_block
*nb
, unsigned long code
,
843 kthread_stop(probe_task
);
847 static struct notifier_block nb
= {
848 .notifier_call
= ps3_stop_probe_thread
852 * ps3_start_probe_thread - Starts the background probe thread.
856 static int __init
ps3_start_probe_thread(enum ps3_bus_type bus_type
)
859 struct task_struct
*task
;
860 struct ps3_repository_device repo
;
862 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
864 memset(&repo
, 0, sizeof(repo
));
866 repo
.bus_type
= bus_type
;
868 result
= ps3_repository_find_bus(repo
.bus_type
, 0, &repo
.bus_index
);
871 printk(KERN_ERR
"%s: Cannot find bus (%d)\n", __func__
, result
);
875 result
= ps3_repository_read_bus_id(repo
.bus_index
, &repo
.bus_id
);
878 printk(KERN_ERR
"%s: read_bus_id failed %d\n", __func__
,
883 task
= kthread_run(ps3_probe_thread
, (void *)repo
.bus_id
,
884 "ps3-probe-%u", bus_type
);
887 result
= PTR_ERR(task
);
888 printk(KERN_ERR
"%s: kthread_run failed %d\n", __func__
,
894 register_reboot_notifier(&nb
);
896 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
901 * ps3_register_devices - Probe the system and register devices found.
903 * A device_initcall() routine.
906 static int __init
ps3_register_devices(void)
910 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
913 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
915 /* ps3_repository_dump_bus_info(); */
917 result
= ps3_start_probe_thread(PS3_BUS_TYPE_STORAGE
);
919 ps3_register_vuart_devices();
921 ps3_register_graphics_devices();
923 ps3_repository_find_devices(PS3_BUS_TYPE_SB
, ps3_setup_static_device
);
925 ps3_register_sound_devices();
927 ps3_register_lpm_devices();
929 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
933 device_initcall(ps3_register_devices
);