1 // SPDX-License-Identifier: GPL-2.0-only
3 * PS3 system bus driver.
5 * Copyright (C) 2006 Sony Computer Entertainment Inc.
6 * Copyright 2006 Sony Corp.
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/export.h>
12 #include <linux/dma-map-ops.h>
13 #include <linux/err.h>
14 #include <linux/slab.h>
17 #include <asm/lv1call.h>
18 #include <asm/firmware.h>
19 #include <asm/cell-regs.h>
23 static struct device ps3_system_bus
= {
24 .init_name
= "ps3_system",
27 /* FIXME: need device usage counters! */
30 int sb_11
; /* usb 0 */
31 int sb_12
; /* usb 0 */
35 static int ps3_is_device(struct ps3_system_bus_device
*dev
, u64 bus_id
,
38 return dev
->bus_id
== bus_id
&& dev
->dev_id
== dev_id
;
41 static int ps3_open_hv_device_sb(struct ps3_system_bus_device
*dev
)
46 mutex_lock(&usage_hack
.mutex
);
48 if (ps3_is_device(dev
, 1, 1)) {
50 if (usage_hack
.sb_11
> 1) {
56 if (ps3_is_device(dev
, 1, 2)) {
58 if (usage_hack
.sb_12
> 1) {
64 result
= lv1_open_device(dev
->bus_id
, dev
->dev_id
, 0);
67 pr_debug("%s:%d: lv1_open_device failed: %s\n", __func__
,
68 __LINE__
, ps3_result(result
));
73 mutex_unlock(&usage_hack
.mutex
);
77 static int ps3_close_hv_device_sb(struct ps3_system_bus_device
*dev
)
82 mutex_lock(&usage_hack
.mutex
);
84 if (ps3_is_device(dev
, 1, 1)) {
86 if (usage_hack
.sb_11
) {
92 if (ps3_is_device(dev
, 1, 2)) {
94 if (usage_hack
.sb_12
) {
100 result
= lv1_close_device(dev
->bus_id
, dev
->dev_id
);
104 mutex_unlock(&usage_hack
.mutex
);
108 static int ps3_open_hv_device_gpu(struct ps3_system_bus_device
*dev
)
112 mutex_lock(&usage_hack
.mutex
);
115 if (usage_hack
.gpu
> 1) {
120 result
= lv1_gpu_open(0);
123 pr_debug("%s:%d: lv1_gpu_open failed: %s\n", __func__
,
124 __LINE__
, ps3_result(result
));
129 mutex_unlock(&usage_hack
.mutex
);
133 static int ps3_close_hv_device_gpu(struct ps3_system_bus_device
*dev
)
137 mutex_lock(&usage_hack
.mutex
);
140 if (usage_hack
.gpu
) {
145 result
= lv1_gpu_close();
149 mutex_unlock(&usage_hack
.mutex
);
153 int ps3_open_hv_device(struct ps3_system_bus_device
*dev
)
156 pr_debug("%s:%d: match_id: %u\n", __func__
, __LINE__
, dev
->match_id
);
158 switch (dev
->match_id
) {
159 case PS3_MATCH_ID_EHCI
:
160 case PS3_MATCH_ID_OHCI
:
161 case PS3_MATCH_ID_GELIC
:
162 case PS3_MATCH_ID_STOR_DISK
:
163 case PS3_MATCH_ID_STOR_ROM
:
164 case PS3_MATCH_ID_STOR_FLASH
:
165 return ps3_open_hv_device_sb(dev
);
167 case PS3_MATCH_ID_SOUND
:
168 case PS3_MATCH_ID_GPU
:
169 return ps3_open_hv_device_gpu(dev
);
171 case PS3_MATCH_ID_AV_SETTINGS
:
172 case PS3_MATCH_ID_SYSTEM_MANAGER
:
173 pr_debug("%s:%d: unsupported match_id: %u\n", __func__
,
174 __LINE__
, dev
->match_id
);
175 pr_debug("%s:%d: bus_id: %llu\n", __func__
, __LINE__
,
184 pr_debug("%s:%d: unknown match_id: %u\n", __func__
, __LINE__
,
189 EXPORT_SYMBOL_GPL(ps3_open_hv_device
);
191 int ps3_close_hv_device(struct ps3_system_bus_device
*dev
)
194 pr_debug("%s:%d: match_id: %u\n", __func__
, __LINE__
, dev
->match_id
);
196 switch (dev
->match_id
) {
197 case PS3_MATCH_ID_EHCI
:
198 case PS3_MATCH_ID_OHCI
:
199 case PS3_MATCH_ID_GELIC
:
200 case PS3_MATCH_ID_STOR_DISK
:
201 case PS3_MATCH_ID_STOR_ROM
:
202 case PS3_MATCH_ID_STOR_FLASH
:
203 return ps3_close_hv_device_sb(dev
);
205 case PS3_MATCH_ID_SOUND
:
206 case PS3_MATCH_ID_GPU
:
207 return ps3_close_hv_device_gpu(dev
);
209 case PS3_MATCH_ID_AV_SETTINGS
:
210 case PS3_MATCH_ID_SYSTEM_MANAGER
:
211 pr_debug("%s:%d: unsupported match_id: %u\n", __func__
,
212 __LINE__
, dev
->match_id
);
213 pr_debug("%s:%d: bus_id: %llu\n", __func__
, __LINE__
,
222 pr_debug("%s:%d: unknown match_id: %u\n", __func__
, __LINE__
,
227 EXPORT_SYMBOL_GPL(ps3_close_hv_device
);
229 #define dump_mmio_region(_a) _dump_mmio_region(_a, __func__, __LINE__)
230 static void _dump_mmio_region(const struct ps3_mmio_region
* r
,
231 const char* func
, int line
)
233 pr_debug("%s:%d: dev %llu:%llu\n", func
, line
, r
->dev
->bus_id
,
235 pr_debug("%s:%d: bus_addr %lxh\n", func
, line
, r
->bus_addr
);
236 pr_debug("%s:%d: len %lxh\n", func
, line
, r
->len
);
237 pr_debug("%s:%d: lpar_addr %lxh\n", func
, line
, r
->lpar_addr
);
240 static int ps3_sb_mmio_region_create(struct ps3_mmio_region
*r
)
245 result
= lv1_map_device_mmio_region(r
->dev
->bus_id
, r
->dev
->dev_id
,
246 r
->bus_addr
, r
->len
, r
->page_size
, &lpar_addr
);
247 r
->lpar_addr
= lpar_addr
;
250 pr_debug("%s:%d: lv1_map_device_mmio_region failed: %s\n",
251 __func__
, __LINE__
, ps3_result(result
));
259 static int ps3_ioc0_mmio_region_create(struct ps3_mmio_region
*r
)
261 /* device specific; do nothing currently */
265 int ps3_mmio_region_create(struct ps3_mmio_region
*r
)
267 return r
->mmio_ops
->create(r
);
269 EXPORT_SYMBOL_GPL(ps3_mmio_region_create
);
271 static int ps3_sb_free_mmio_region(struct ps3_mmio_region
*r
)
276 result
= lv1_unmap_device_mmio_region(r
->dev
->bus_id
, r
->dev
->dev_id
,
280 pr_debug("%s:%d: lv1_unmap_device_mmio_region failed: %s\n",
281 __func__
, __LINE__
, ps3_result(result
));
287 static int ps3_ioc0_free_mmio_region(struct ps3_mmio_region
*r
)
289 /* device specific; do nothing currently */
294 int ps3_free_mmio_region(struct ps3_mmio_region
*r
)
296 return r
->mmio_ops
->free(r
);
299 EXPORT_SYMBOL_GPL(ps3_free_mmio_region
);
301 static const struct ps3_mmio_region_ops ps3_mmio_sb_region_ops
= {
302 .create
= ps3_sb_mmio_region_create
,
303 .free
= ps3_sb_free_mmio_region
306 static const struct ps3_mmio_region_ops ps3_mmio_ioc0_region_ops
= {
307 .create
= ps3_ioc0_mmio_region_create
,
308 .free
= ps3_ioc0_free_mmio_region
311 int ps3_mmio_region_init(struct ps3_system_bus_device
*dev
,
312 struct ps3_mmio_region
*r
, unsigned long bus_addr
, unsigned long len
,
313 enum ps3_mmio_page_size page_size
)
316 r
->bus_addr
= bus_addr
;
318 r
->page_size
= page_size
;
319 switch (dev
->dev_type
) {
320 case PS3_DEVICE_TYPE_SB
:
321 r
->mmio_ops
= &ps3_mmio_sb_region_ops
;
323 case PS3_DEVICE_TYPE_IOC0
:
324 r
->mmio_ops
= &ps3_mmio_ioc0_region_ops
;
332 EXPORT_SYMBOL_GPL(ps3_mmio_region_init
);
334 static int ps3_system_bus_match(struct device
*_dev
,
335 struct device_driver
*_drv
)
338 struct ps3_system_bus_driver
*drv
= ps3_drv_to_system_bus_drv(_drv
);
339 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
341 if (!dev
->match_sub_id
)
342 result
= dev
->match_id
== drv
->match_id
;
344 result
= dev
->match_sub_id
== drv
->match_sub_id
&&
345 dev
->match_id
== drv
->match_id
;
348 pr_info("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): match\n",
350 dev
->match_id
, dev
->match_sub_id
, dev_name(&dev
->core
),
351 drv
->match_id
, drv
->match_sub_id
, drv
->core
.name
);
353 pr_debug("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): miss\n",
355 dev
->match_id
, dev
->match_sub_id
, dev_name(&dev
->core
),
356 drv
->match_id
, drv
->match_sub_id
, drv
->core
.name
);
361 static int ps3_system_bus_probe(struct device
*_dev
)
364 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
365 struct ps3_system_bus_driver
*drv
;
368 dev_dbg(_dev
, "%s:%d\n", __func__
, __LINE__
);
370 drv
= ps3_system_bus_dev_to_system_bus_drv(dev
);
374 result
= drv
->probe(dev
);
376 pr_debug("%s:%d: %s no probe method\n", __func__
, __LINE__
,
377 dev_name(&dev
->core
));
379 pr_debug(" <- %s:%d: %s\n", __func__
, __LINE__
, dev_name(&dev
->core
));
383 static int ps3_system_bus_remove(struct device
*_dev
)
385 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
386 struct ps3_system_bus_driver
*drv
;
389 dev_dbg(_dev
, "%s:%d\n", __func__
, __LINE__
);
391 drv
= ps3_system_bus_dev_to_system_bus_drv(dev
);
397 dev_dbg(&dev
->core
, "%s:%d %s: no remove method\n",
398 __func__
, __LINE__
, drv
->core
.name
);
400 pr_debug(" <- %s:%d: %s\n", __func__
, __LINE__
, dev_name(&dev
->core
));
404 static void ps3_system_bus_shutdown(struct device
*_dev
)
406 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
407 struct ps3_system_bus_driver
*drv
;
411 dev_dbg(&dev
->core
, " -> %s:%d: match_id %d\n", __func__
, __LINE__
,
414 if (!dev
->core
.driver
) {
415 dev_dbg(&dev
->core
, "%s:%d: no driver bound\n", __func__
,
420 drv
= ps3_system_bus_dev_to_system_bus_drv(dev
);
424 dev_dbg(&dev
->core
, "%s:%d: %s -> %s\n", __func__
, __LINE__
,
425 dev_name(&dev
->core
), drv
->core
.name
);
429 else if (drv
->remove
) {
430 dev_dbg(&dev
->core
, "%s:%d %s: no shutdown, calling remove\n",
431 __func__
, __LINE__
, drv
->core
.name
);
434 dev_dbg(&dev
->core
, "%s:%d %s: no shutdown method\n",
435 __func__
, __LINE__
, drv
->core
.name
);
439 dev_dbg(&dev
->core
, " <- %s:%d\n", __func__
, __LINE__
);
442 static int ps3_system_bus_uevent(struct device
*_dev
, struct kobj_uevent_env
*env
)
444 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
446 if (add_uevent_var(env
, "MODALIAS=ps3:%d:%d", dev
->match_id
,
452 static ssize_t
modalias_show(struct device
*_dev
, struct device_attribute
*a
,
455 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
456 int len
= snprintf(buf
, PAGE_SIZE
, "ps3:%d:%d\n", dev
->match_id
,
459 return (len
>= PAGE_SIZE
) ? (PAGE_SIZE
- 1) : len
;
461 static DEVICE_ATTR_RO(modalias
);
463 static struct attribute
*ps3_system_bus_dev_attrs
[] = {
464 &dev_attr_modalias
.attr
,
467 ATTRIBUTE_GROUPS(ps3_system_bus_dev
);
469 struct bus_type ps3_system_bus_type
= {
470 .name
= "ps3_system_bus",
471 .match
= ps3_system_bus_match
,
472 .uevent
= ps3_system_bus_uevent
,
473 .probe
= ps3_system_bus_probe
,
474 .remove
= ps3_system_bus_remove
,
475 .shutdown
= ps3_system_bus_shutdown
,
476 .dev_groups
= ps3_system_bus_dev_groups
,
479 static int __init
ps3_system_bus_init(void)
483 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
486 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
488 mutex_init(&usage_hack
.mutex
);
490 result
= device_register(&ps3_system_bus
);
493 result
= bus_register(&ps3_system_bus_type
);
496 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
500 core_initcall(ps3_system_bus_init
);
502 /* Allocates a contiguous real buffer and creates mappings over it.
503 * Returns the virtual address of the buffer and sets dma_handle
504 * to the dma address (mapping) of the first page.
506 static void * ps3_alloc_coherent(struct device
*_dev
, size_t size
,
507 dma_addr_t
*dma_handle
, gfp_t flag
,
511 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
512 unsigned long virt_addr
;
514 flag
&= ~(__GFP_DMA
| __GFP_HIGHMEM
);
517 virt_addr
= __get_free_pages(flag
, get_order(size
));
520 pr_debug("%s:%d: get_free_pages failed\n", __func__
, __LINE__
);
524 result
= ps3_dma_map(dev
->d_region
, virt_addr
, size
, dma_handle
,
525 CBE_IOPTE_PP_W
| CBE_IOPTE_PP_R
|
526 CBE_IOPTE_SO_RW
| CBE_IOPTE_M
);
529 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
530 __func__
, __LINE__
, result
);
531 BUG_ON("check region type");
535 return (void*)virt_addr
;
538 free_pages(virt_addr
, get_order(size
));
544 static void ps3_free_coherent(struct device
*_dev
, size_t size
, void *vaddr
,
545 dma_addr_t dma_handle
, unsigned long attrs
)
547 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
549 ps3_dma_unmap(dev
->d_region
, dma_handle
, size
);
550 free_pages((unsigned long)vaddr
, get_order(size
));
553 /* Creates TCEs for a user provided buffer. The user buffer must be
554 * contiguous real kernel storage (not vmalloc). The address passed here
555 * comprises a page address and offset into that page. The dma_addr_t
556 * returned will point to the same byte within the page as was passed in.
559 static dma_addr_t
ps3_sb_map_page(struct device
*_dev
, struct page
*page
,
560 unsigned long offset
, size_t size
, enum dma_data_direction direction
,
563 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
566 void *ptr
= page_address(page
) + offset
;
568 result
= ps3_dma_map(dev
->d_region
, (unsigned long)ptr
, size
,
570 CBE_IOPTE_PP_R
| CBE_IOPTE_PP_W
|
571 CBE_IOPTE_SO_RW
| CBE_IOPTE_M
);
574 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
575 __func__
, __LINE__
, result
);
581 static dma_addr_t
ps3_ioc0_map_page(struct device
*_dev
, struct page
*page
,
582 unsigned long offset
, size_t size
,
583 enum dma_data_direction direction
,
586 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
590 void *ptr
= page_address(page
) + offset
;
592 iopte_flag
= CBE_IOPTE_M
;
594 case DMA_BIDIRECTIONAL
:
595 iopte_flag
|= CBE_IOPTE_PP_R
| CBE_IOPTE_PP_W
| CBE_IOPTE_SO_RW
;
598 iopte_flag
|= CBE_IOPTE_PP_R
| CBE_IOPTE_SO_R
;
600 case DMA_FROM_DEVICE
:
601 iopte_flag
|= CBE_IOPTE_PP_W
| CBE_IOPTE_SO_RW
;
607 result
= ps3_dma_map(dev
->d_region
, (unsigned long)ptr
, size
,
608 &bus_addr
, iopte_flag
);
611 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
612 __func__
, __LINE__
, result
);
617 static void ps3_unmap_page(struct device
*_dev
, dma_addr_t dma_addr
,
618 size_t size
, enum dma_data_direction direction
, unsigned long attrs
)
620 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
623 result
= ps3_dma_unmap(dev
->d_region
, dma_addr
, size
);
626 pr_debug("%s:%d: ps3_dma_unmap failed (%d)\n",
627 __func__
, __LINE__
, result
);
631 static int ps3_sb_map_sg(struct device
*_dev
, struct scatterlist
*sgl
,
632 int nents
, enum dma_data_direction direction
, unsigned long attrs
)
634 #if defined(CONFIG_PS3_DYNAMIC_DMA)
638 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
639 struct scatterlist
*sg
;
642 for_each_sg(sgl
, sg
, nents
, i
) {
643 int result
= ps3_dma_map(dev
->d_region
, sg_phys(sg
),
644 sg
->length
, &sg
->dma_address
, 0);
647 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
648 __func__
, __LINE__
, result
);
652 sg
->dma_length
= sg
->length
;
659 static int ps3_ioc0_map_sg(struct device
*_dev
, struct scatterlist
*sg
,
661 enum dma_data_direction direction
,
668 static void ps3_sb_unmap_sg(struct device
*_dev
, struct scatterlist
*sg
,
669 int nents
, enum dma_data_direction direction
, unsigned long attrs
)
671 #if defined(CONFIG_PS3_DYNAMIC_DMA)
676 static void ps3_ioc0_unmap_sg(struct device
*_dev
, struct scatterlist
*sg
,
677 int nents
, enum dma_data_direction direction
,
683 static int ps3_dma_supported(struct device
*_dev
, u64 mask
)
685 return mask
>= DMA_BIT_MASK(32);
688 static const struct dma_map_ops ps3_sb_dma_ops
= {
689 .alloc
= ps3_alloc_coherent
,
690 .free
= ps3_free_coherent
,
691 .map_sg
= ps3_sb_map_sg
,
692 .unmap_sg
= ps3_sb_unmap_sg
,
693 .dma_supported
= ps3_dma_supported
,
694 .map_page
= ps3_sb_map_page
,
695 .unmap_page
= ps3_unmap_page
,
696 .mmap
= dma_common_mmap
,
697 .get_sgtable
= dma_common_get_sgtable
,
698 .alloc_pages
= dma_common_alloc_pages
,
699 .free_pages
= dma_common_free_pages
,
702 static const struct dma_map_ops ps3_ioc0_dma_ops
= {
703 .alloc
= ps3_alloc_coherent
,
704 .free
= ps3_free_coherent
,
705 .map_sg
= ps3_ioc0_map_sg
,
706 .unmap_sg
= ps3_ioc0_unmap_sg
,
707 .dma_supported
= ps3_dma_supported
,
708 .map_page
= ps3_ioc0_map_page
,
709 .unmap_page
= ps3_unmap_page
,
710 .mmap
= dma_common_mmap
,
711 .get_sgtable
= dma_common_get_sgtable
,
712 .alloc_pages
= dma_common_alloc_pages
,
713 .free_pages
= dma_common_free_pages
,
717 * ps3_system_bus_release_device - remove a device from the system bus
720 static void ps3_system_bus_release_device(struct device
*_dev
)
722 struct ps3_system_bus_device
*dev
= ps3_dev_to_system_bus_dev(_dev
);
727 * ps3_system_bus_device_register - add a device to the system bus
729 * ps3_system_bus_device_register() expects the dev object to be allocated
730 * dynamically by the caller. The system bus takes ownership of the dev
731 * object and frees the object in ps3_system_bus_release_device().
734 int ps3_system_bus_device_register(struct ps3_system_bus_device
*dev
)
737 static unsigned int dev_ioc0_count
;
738 static unsigned int dev_sb_count
;
739 static unsigned int dev_vuart_count
;
740 static unsigned int dev_lpm_count
;
742 if (!dev
->core
.parent
)
743 dev
->core
.parent
= &ps3_system_bus
;
744 dev
->core
.bus
= &ps3_system_bus_type
;
745 dev
->core
.release
= ps3_system_bus_release_device
;
747 switch (dev
->dev_type
) {
748 case PS3_DEVICE_TYPE_IOC0
:
749 dev
->core
.dma_ops
= &ps3_ioc0_dma_ops
;
750 dev_set_name(&dev
->core
, "ioc0_%02x", ++dev_ioc0_count
);
752 case PS3_DEVICE_TYPE_SB
:
753 dev
->core
.dma_ops
= &ps3_sb_dma_ops
;
754 dev_set_name(&dev
->core
, "sb_%02x", ++dev_sb_count
);
757 case PS3_DEVICE_TYPE_VUART
:
758 dev_set_name(&dev
->core
, "vuart_%02x", ++dev_vuart_count
);
760 case PS3_DEVICE_TYPE_LPM
:
761 dev_set_name(&dev
->core
, "lpm_%02x", ++dev_lpm_count
);
767 dev
->core
.of_node
= NULL
;
768 set_dev_node(&dev
->core
, 0);
770 pr_debug("%s:%d add %s\n", __func__
, __LINE__
, dev_name(&dev
->core
));
772 result
= device_register(&dev
->core
);
776 EXPORT_SYMBOL_GPL(ps3_system_bus_device_register
);
778 int ps3_system_bus_driver_register(struct ps3_system_bus_driver
*drv
)
782 pr_debug(" -> %s:%d: %s\n", __func__
, __LINE__
, drv
->core
.name
);
784 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
787 drv
->core
.bus
= &ps3_system_bus_type
;
789 result
= driver_register(&drv
->core
);
790 pr_debug(" <- %s:%d: %s\n", __func__
, __LINE__
, drv
->core
.name
);
794 EXPORT_SYMBOL_GPL(ps3_system_bus_driver_register
);
796 void ps3_system_bus_driver_unregister(struct ps3_system_bus_driver
*drv
)
798 pr_debug(" -> %s:%d: %s\n", __func__
, __LINE__
, drv
->core
.name
);
799 driver_unregister(&drv
->core
);
800 pr_debug(" <- %s:%d: %s\n", __func__
, __LINE__
, drv
->core
.name
);
803 EXPORT_SYMBOL_GPL(ps3_system_bus_driver_unregister
);