]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/powerpc/platforms/ps3/system-bus.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / arch / powerpc / platforms / ps3 / system-bus.c
CommitLineData
873e65bc 1// SPDX-License-Identifier: GPL-2.0-only
a3d4d643
GL
2/*
3 * PS3 system bus driver.
4 *
5 * Copyright (C) 2006 Sony Computer Entertainment Inc.
6 * Copyright 2006 Sony Corp.
a3d4d643
GL
7 */
8
9#include <linux/kernel.h>
10#include <linux/init.h>
4b16f8e2 11#include <linux/export.h>
a3d4d643
GL
12#include <linux/dma-mapping.h>
13#include <linux/err.h>
5a0e3ad6 14#include <linux/slab.h>
a3d4d643
GL
15
16#include <asm/udbg.h>
a3d4d643 17#include <asm/lv1call.h>
e22ba7e3 18#include <asm/firmware.h>
9413c883 19#include <asm/cell-regs.h>
a3d4d643 20
2a08ea69
GL
21#include "platform.h"
22
6bb5cf10 23static struct device ps3_system_bus = {
aab0d375 24 .init_name = "ps3_system",
6bb5cf10
GL
25};
26
27/* FIXME: need device usage counters! */
8e0f9735 28static struct {
6bb5cf10
GL
29 struct mutex mutex;
30 int sb_11; /* usb 0 */
31 int sb_12; /* usb 0 */
32 int gpu;
8e0f9735 33} usage_hack;
6bb5cf10 34
034e0ab5
GU
35static int ps3_is_device(struct ps3_system_bus_device *dev, u64 bus_id,
36 u64 dev_id)
6bb5cf10
GL
37{
38 return dev->bus_id == bus_id && dev->dev_id == dev_id;
39}
40
41static int ps3_open_hv_device_sb(struct ps3_system_bus_device *dev)
42{
43 int result;
44
45 BUG_ON(!dev->bus_id);
46 mutex_lock(&usage_hack.mutex);
47
48 if (ps3_is_device(dev, 1, 1)) {
49 usage_hack.sb_11++;
50 if (usage_hack.sb_11 > 1) {
51 result = 0;
52 goto done;
53 }
54 }
55
56 if (ps3_is_device(dev, 1, 2)) {
57 usage_hack.sb_12++;
58 if (usage_hack.sb_12 > 1) {
59 result = 0;
60 goto done;
61 }
62 }
63
64 result = lv1_open_device(dev->bus_id, dev->dev_id, 0);
65
66 if (result) {
67 pr_debug("%s:%d: lv1_open_device failed: %s\n", __func__,
68 __LINE__, ps3_result(result));
69 result = -EPERM;
70 }
71
72done:
73 mutex_unlock(&usage_hack.mutex);
74 return result;
75}
76
77static int ps3_close_hv_device_sb(struct ps3_system_bus_device *dev)
78{
79 int result;
80
81 BUG_ON(!dev->bus_id);
82 mutex_lock(&usage_hack.mutex);
83
84 if (ps3_is_device(dev, 1, 1)) {
85 usage_hack.sb_11--;
86 if (usage_hack.sb_11) {
87 result = 0;
88 goto done;
89 }
90 }
91
92 if (ps3_is_device(dev, 1, 2)) {
93 usage_hack.sb_12--;
94 if (usage_hack.sb_12) {
95 result = 0;
96 goto done;
97 }
98 }
99
100 result = lv1_close_device(dev->bus_id, dev->dev_id);
101 BUG_ON(result);
102
103done:
104 mutex_unlock(&usage_hack.mutex);
105 return result;
106}
107
108static int ps3_open_hv_device_gpu(struct ps3_system_bus_device *dev)
109{
110 int result;
111
112 mutex_lock(&usage_hack.mutex);
113
114 usage_hack.gpu++;
115 if (usage_hack.gpu > 1) {
116 result = 0;
117 goto done;
118 }
119
120 result = lv1_gpu_open(0);
121
122 if (result) {
123 pr_debug("%s:%d: lv1_gpu_open failed: %s\n", __func__,
124 __LINE__, ps3_result(result));
125 result = -EPERM;
126 }
127
128done:
129 mutex_unlock(&usage_hack.mutex);
130 return result;
131}
132
133static int ps3_close_hv_device_gpu(struct ps3_system_bus_device *dev)
134{
135 int result;
136
137 mutex_lock(&usage_hack.mutex);
138
139 usage_hack.gpu--;
140 if (usage_hack.gpu) {
141 result = 0;
142 goto done;
143 }
144
145 result = lv1_gpu_close();
146 BUG_ON(result);
147
148done:
149 mutex_unlock(&usage_hack.mutex);
150 return result;
151}
152
153int ps3_open_hv_device(struct ps3_system_bus_device *dev)
154{
155 BUG_ON(!dev);
156 pr_debug("%s:%d: match_id: %u\n", __func__, __LINE__, dev->match_id);
157
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);
166
167 case PS3_MATCH_ID_SOUND:
46d01492 168 case PS3_MATCH_ID_GPU:
6bb5cf10
GL
169 return ps3_open_hv_device_gpu(dev);
170
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);
5c949070 175 pr_debug("%s:%d: bus_id: %llu\n", __func__, __LINE__,
034e0ab5 176 dev->bus_id);
6bb5cf10
GL
177 BUG();
178 return -EINVAL;
179
180 default:
181 break;
182 }
183
184 pr_debug("%s:%d: unknown match_id: %u\n", __func__, __LINE__,
185 dev->match_id);
186 BUG();
187 return -ENODEV;
188}
189EXPORT_SYMBOL_GPL(ps3_open_hv_device);
190
191int ps3_close_hv_device(struct ps3_system_bus_device *dev)
192{
193 BUG_ON(!dev);
194 pr_debug("%s:%d: match_id: %u\n", __func__, __LINE__, dev->match_id);
195
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);
204
205 case PS3_MATCH_ID_SOUND:
46d01492 206 case PS3_MATCH_ID_GPU:
6bb5cf10
GL
207 return ps3_close_hv_device_gpu(dev);
208
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);
5c949070 213 pr_debug("%s:%d: bus_id: %llu\n", __func__, __LINE__,
034e0ab5 214 dev->bus_id);
6bb5cf10
GL
215 BUG();
216 return -EINVAL;
217
218 default:
219 break;
220 }
221
222 pr_debug("%s:%d: unknown match_id: %u\n", __func__, __LINE__,
223 dev->match_id);
224 BUG();
225 return -ENODEV;
226}
227EXPORT_SYMBOL_GPL(ps3_close_hv_device);
228
a3d4d643
GL
229#define dump_mmio_region(_a) _dump_mmio_region(_a, __func__, __LINE__)
230static void _dump_mmio_region(const struct ps3_mmio_region* r,
231 const char* func, int line)
232{
5c949070 233 pr_debug("%s:%d: dev %llu:%llu\n", func, line, r->dev->bus_id,
6bb5cf10 234 r->dev->dev_id);
a3d4d643
GL
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);
238}
239
6bb5cf10 240static int ps3_sb_mmio_region_create(struct ps3_mmio_region *r)
a3d4d643
GL
241{
242 int result;
b17b3df1 243 u64 lpar_addr;
a3d4d643 244
6bb5cf10 245 result = lv1_map_device_mmio_region(r->dev->bus_id, r->dev->dev_id,
b17b3df1
SR
246 r->bus_addr, r->len, r->page_size, &lpar_addr);
247 r->lpar_addr = lpar_addr;
a3d4d643
GL
248
249 if (result) {
250 pr_debug("%s:%d: lv1_map_device_mmio_region failed: %s\n",
251 __func__, __LINE__, ps3_result(result));
43d80439 252 r->lpar_addr = 0;
a3d4d643
GL
253 }
254
255 dump_mmio_region(r);
256 return result;
257}
6bb5cf10
GL
258
259static int ps3_ioc0_mmio_region_create(struct ps3_mmio_region *r)
260{
261 /* device specific; do nothing currently */
262 return 0;
263}
264
265int ps3_mmio_region_create(struct ps3_mmio_region *r)
266{
267 return r->mmio_ops->create(r);
268}
9288f5c3 269EXPORT_SYMBOL_GPL(ps3_mmio_region_create);
a3d4d643 270
6bb5cf10 271static int ps3_sb_free_mmio_region(struct ps3_mmio_region *r)
a3d4d643
GL
272{
273 int result;
274
6bb5cf10 275 dump_mmio_region(r);
6bb5cf10 276 result = lv1_unmap_device_mmio_region(r->dev->bus_id, r->dev->dev_id,
43d80439 277 r->lpar_addr);
a3d4d643
GL
278
279 if (result)
280 pr_debug("%s:%d: lv1_unmap_device_mmio_region failed: %s\n",
281 __func__, __LINE__, ps3_result(result));
282
43d80439 283 r->lpar_addr = 0;
a3d4d643
GL
284 return result;
285}
6bb5cf10
GL
286
287static int ps3_ioc0_free_mmio_region(struct ps3_mmio_region *r)
288{
289 /* device specific; do nothing currently */
290 return 0;
291}
292
293
294int ps3_free_mmio_region(struct ps3_mmio_region *r)
295{
296 return r->mmio_ops->free(r);
297}
298
9288f5c3 299EXPORT_SYMBOL_GPL(ps3_free_mmio_region);
a3d4d643 300
6bb5cf10
GL
301static 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
304};
305
306static 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
309};
310
311int 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)
314{
315 r->dev = dev;
316 r->bus_addr = bus_addr;
317 r->len = len;
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;
322 break;
323 case PS3_DEVICE_TYPE_IOC0:
324 r->mmio_ops = &ps3_mmio_ioc0_region_ops;
325 break;
326 default:
327 BUG();
328 return -EINVAL;
329 }
330 return 0;
331}
332EXPORT_SYMBOL_GPL(ps3_mmio_region_init);
333
a3d4d643
GL
334static int ps3_system_bus_match(struct device *_dev,
335 struct device_driver *_drv)
336{
337 int result;
6bb5cf10
GL
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);
a3d4d643 340
059e4938
MM
341 if (!dev->match_sub_id)
342 result = dev->match_id == drv->match_id;
343 else
344 result = dev->match_sub_id == drv->match_sub_id &&
345 dev->match_id == drv->match_id;
a3d4d643 346
88b90c96 347 if (result)
059e4938
MM
348 pr_info("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): match\n",
349 __func__, __LINE__,
aab0d375 350 dev->match_id, dev->match_sub_id, dev_name(&dev->core),
059e4938 351 drv->match_id, drv->match_sub_id, drv->core.name);
88b90c96 352 else
059e4938
MM
353 pr_debug("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): miss\n",
354 __func__, __LINE__,
aab0d375 355 dev->match_id, dev->match_sub_id, dev_name(&dev->core),
059e4938
MM
356 drv->match_id, drv->match_sub_id, drv->core.name);
357
a3d4d643
GL
358 return result;
359}
360
361static int ps3_system_bus_probe(struct device *_dev)
362{
6bb5cf10
GL
363 int result = 0;
364 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
365 struct ps3_system_bus_driver *drv;
a3d4d643 366
6bb5cf10 367 BUG_ON(!dev);
54ca5412 368 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__);
a3d4d643 369
6bb5cf10 370 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
a3d4d643
GL
371 BUG_ON(!drv);
372
373 if (drv->probe)
374 result = drv->probe(dev);
375 else
88b90c96 376 pr_debug("%s:%d: %s no probe method\n", __func__, __LINE__,
aab0d375 377 dev_name(&dev->core));
a3d4d643 378
aab0d375 379 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core));
a3d4d643
GL
380 return result;
381}
382
383static int ps3_system_bus_remove(struct device *_dev)
384{
6bb5cf10
GL
385 int result = 0;
386 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
387 struct ps3_system_bus_driver *drv;
388
389 BUG_ON(!dev);
54ca5412 390 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__);
6bb5cf10
GL
391
392 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
393 BUG_ON(!drv);
a3d4d643
GL
394
395 if (drv->remove)
6bb5cf10 396 result = drv->remove(dev);
a3d4d643 397 else
6bb5cf10
GL
398 dev_dbg(&dev->core, "%s:%d %s: no remove method\n",
399 __func__, __LINE__, drv->core.name);
400
aab0d375 401 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core));
6bb5cf10
GL
402 return result;
403}
a3d4d643 404
6bb5cf10
GL
405static void ps3_system_bus_shutdown(struct device *_dev)
406{
407 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
408 struct ps3_system_bus_driver *drv;
a3d4d643 409
6bb5cf10
GL
410 BUG_ON(!dev);
411
412 dev_dbg(&dev->core, " -> %s:%d: match_id %d\n", __func__, __LINE__,
413 dev->match_id);
414
415 if (!dev->core.driver) {
416 dev_dbg(&dev->core, "%s:%d: no driver bound\n", __func__,
417 __LINE__);
418 return;
419 }
420
421 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
422
423 BUG_ON(!drv);
424
425 dev_dbg(&dev->core, "%s:%d: %s -> %s\n", __func__, __LINE__,
aab0d375 426 dev_name(&dev->core), drv->core.name);
6bb5cf10
GL
427
428 if (drv->shutdown)
429 drv->shutdown(dev);
430 else if (drv->remove) {
431 dev_dbg(&dev->core, "%s:%d %s: no shutdown, calling remove\n",
432 __func__, __LINE__, drv->core.name);
433 drv->remove(dev);
434 } else {
435 dev_dbg(&dev->core, "%s:%d %s: no shutdown method\n",
436 __func__, __LINE__, drv->core.name);
437 BUG();
438 }
439
440 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
a3d4d643
GL
441}
442
7eff2e7a 443static int ps3_system_bus_uevent(struct device *_dev, struct kobj_uevent_env *env)
688b3378
DW
444{
445 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
688b3378 446
46d01492
GU
447 if (add_uevent_var(env, "MODALIAS=ps3:%d:%d", dev->match_id,
448 dev->match_sub_id))
688b3378 449 return -ENOMEM;
688b3378
DW
450 return 0;
451}
452
6758555d
DW
453static ssize_t modalias_show(struct device *_dev, struct device_attribute *a,
454 char *buf)
455{
456 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
46d01492
GU
457 int len = snprintf(buf, PAGE_SIZE, "ps3:%d:%d\n", dev->match_id,
458 dev->match_sub_id);
6758555d
DW
459
460 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
461}
892533e1 462static DEVICE_ATTR_RO(modalias);
6758555d 463
892533e1
GKH
464static struct attribute *ps3_system_bus_dev_attrs[] = {
465 &dev_attr_modalias.attr,
466 NULL,
6758555d 467};
892533e1 468ATTRIBUTE_GROUPS(ps3_system_bus_dev);
6758555d 469
a3d4d643 470struct bus_type ps3_system_bus_type = {
2a08ea69 471 .name = "ps3_system_bus",
a3d4d643 472 .match = ps3_system_bus_match,
688b3378 473 .uevent = ps3_system_bus_uevent,
a3d4d643
GL
474 .probe = ps3_system_bus_probe,
475 .remove = ps3_system_bus_remove,
6bb5cf10 476 .shutdown = ps3_system_bus_shutdown,
892533e1 477 .dev_groups = ps3_system_bus_dev_groups,
a3d4d643
GL
478};
479
6bb5cf10 480static int __init ps3_system_bus_init(void)
a3d4d643
GL
481{
482 int result;
483
e22ba7e3 484 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
ef596c69 485 return -ENODEV;
e22ba7e3 486
6bb5cf10
GL
487 pr_debug(" -> %s:%d\n", __func__, __LINE__);
488
489 mutex_init(&usage_hack.mutex);
490
491 result = device_register(&ps3_system_bus);
492 BUG_ON(result);
493
a3d4d643
GL
494 result = bus_register(&ps3_system_bus_type);
495 BUG_ON(result);
6bb5cf10
GL
496
497 pr_debug(" <- %s:%d\n", __func__, __LINE__);
a3d4d643
GL
498 return result;
499}
500
501core_initcall(ps3_system_bus_init);
502
503/* Allocates a contiguous real buffer and creates mappings over it.
504 * Returns the virtual address of the buffer and sets dma_handle
505 * to the dma address (mapping) of the first page.
506 */
a3d4d643 507static void * ps3_alloc_coherent(struct device *_dev, size_t size,
bfbf7d61 508 dma_addr_t *dma_handle, gfp_t flag,
00085f1e 509 unsigned long attrs)
a3d4d643
GL
510{
511 int result;
6bb5cf10 512 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
a3d4d643
GL
513 unsigned long virt_addr;
514
a3d4d643
GL
515 flag &= ~(__GFP_DMA | __GFP_HIGHMEM);
516 flag |= __GFP_ZERO;
517
518 virt_addr = __get_free_pages(flag, get_order(size));
519
520 if (!virt_addr) {
521 pr_debug("%s:%d: get_free_pages failed\n", __func__, __LINE__);
522 goto clean_none;
523 }
524
6bb5cf10 525 result = ps3_dma_map(dev->d_region, virt_addr, size, dma_handle,
5c6fc8db
GU
526 CBE_IOPTE_PP_W | CBE_IOPTE_PP_R |
527 CBE_IOPTE_SO_RW | CBE_IOPTE_M);
a3d4d643
GL
528
529 if (result) {
530 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
531 __func__, __LINE__, result);
532 BUG_ON("check region type");
533 goto clean_alloc;
534 }
535
536 return (void*)virt_addr;
537
538clean_alloc:
539 free_pages(virt_addr, get_order(size));
540clean_none:
541 dma_handle = NULL;
542 return NULL;
543}
544
545static void ps3_free_coherent(struct device *_dev, size_t size, void *vaddr,
00085f1e 546 dma_addr_t dma_handle, unsigned long attrs)
a3d4d643 547{
6bb5cf10 548 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
a3d4d643
GL
549
550 ps3_dma_unmap(dev->d_region, dma_handle, size);
551 free_pages((unsigned long)vaddr, get_order(size));
552}
553
554/* Creates TCEs for a user provided buffer. The user buffer must be
f9226d57
MN
555 * contiguous real kernel storage (not vmalloc). The address passed here
556 * comprises a page address and offset into that page. The dma_addr_t
557 * returned will point to the same byte within the page as was passed in.
a3d4d643
GL
558 */
559
f9226d57
MN
560static dma_addr_t ps3_sb_map_page(struct device *_dev, struct page *page,
561 unsigned long offset, size_t size, enum dma_data_direction direction,
00085f1e 562 unsigned long attrs)
a3d4d643 563{
6bb5cf10 564 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
a3d4d643 565 int result;
494fd07a 566 dma_addr_t bus_addr;
f9226d57 567 void *ptr = page_address(page) + offset;
a3d4d643
GL
568
569 result = ps3_dma_map(dev->d_region, (unsigned long)ptr, size,
6bb5cf10 570 &bus_addr,
5c6fc8db
GU
571 CBE_IOPTE_PP_R | CBE_IOPTE_PP_W |
572 CBE_IOPTE_SO_RW | CBE_IOPTE_M);
a3d4d643
GL
573
574 if (result) {
575 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
576 __func__, __LINE__, result);
577 }
578
579 return bus_addr;
580}
581
f9226d57
MN
582static dma_addr_t ps3_ioc0_map_page(struct device *_dev, struct page *page,
583 unsigned long offset, size_t size,
584 enum dma_data_direction direction,
00085f1e 585 unsigned long attrs)
6bb5cf10
GL
586{
587 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
588 int result;
494fd07a 589 dma_addr_t bus_addr;
6bb5cf10 590 u64 iopte_flag;
f9226d57 591 void *ptr = page_address(page) + offset;
6bb5cf10 592
5c6fc8db 593 iopte_flag = CBE_IOPTE_M;
6bb5cf10
GL
594 switch (direction) {
595 case DMA_BIDIRECTIONAL:
5c6fc8db 596 iopte_flag |= CBE_IOPTE_PP_R | CBE_IOPTE_PP_W | CBE_IOPTE_SO_RW;
6bb5cf10
GL
597 break;
598 case DMA_TO_DEVICE:
5c6fc8db 599 iopte_flag |= CBE_IOPTE_PP_R | CBE_IOPTE_SO_R;
6bb5cf10
GL
600 break;
601 case DMA_FROM_DEVICE:
5c6fc8db 602 iopte_flag |= CBE_IOPTE_PP_W | CBE_IOPTE_SO_RW;
6bb5cf10
GL
603 break;
604 default:
605 /* not happned */
606 BUG();
607 };
608 result = ps3_dma_map(dev->d_region, (unsigned long)ptr, size,
609 &bus_addr, iopte_flag);
610
611 if (result) {
612 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
613 __func__, __LINE__, result);
614 }
615 return bus_addr;
616}
617
f9226d57 618static void ps3_unmap_page(struct device *_dev, dma_addr_t dma_addr,
00085f1e 619 size_t size, enum dma_data_direction direction, unsigned long attrs)
a3d4d643 620{
6bb5cf10 621 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
a3d4d643
GL
622 int result;
623
624 result = ps3_dma_unmap(dev->d_region, dma_addr, size);
625
626 if (result) {
627 pr_debug("%s:%d: ps3_dma_unmap failed (%d)\n",
628 __func__, __LINE__, result);
629 }
630}
631
d1ed455e 632static int ps3_sb_map_sg(struct device *_dev, struct scatterlist *sgl,
00085f1e 633 int nents, enum dma_data_direction direction, unsigned long attrs)
a3d4d643
GL
634{
635#if defined(CONFIG_PS3_DYNAMIC_DMA)
636 BUG_ON("do");
35063bb2
GL
637 return -EPERM;
638#else
6bb5cf10 639 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
d1ed455e 640 struct scatterlist *sg;
435e0b2b
SR
641 int i;
642
d1ed455e 643 for_each_sg(sgl, sg, nents, i) {
58b053e4
JA
644 int result = ps3_dma_map(dev->d_region, sg_phys(sg),
645 sg->length, &sg->dma_address, 0);
35063bb2
GL
646
647 if (result) {
648 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
649 __func__, __LINE__, result);
650 return -EINVAL;
651 }
652
653 sg->dma_length = sg->length;
654 }
655
656 return nents;
a3d4d643 657#endif
a3d4d643
GL
658}
659
6bb5cf10
GL
660static int ps3_ioc0_map_sg(struct device *_dev, struct scatterlist *sg,
661 int nents,
3affedc4 662 enum dma_data_direction direction,
00085f1e 663 unsigned long attrs)
6bb5cf10
GL
664{
665 BUG();
666 return 0;
667}
668
669static void ps3_sb_unmap_sg(struct device *_dev, struct scatterlist *sg,
00085f1e 670 int nents, enum dma_data_direction direction, unsigned long attrs)
a3d4d643
GL
671{
672#if defined(CONFIG_PS3_DYNAMIC_DMA)
673 BUG_ON("do");
674#endif
675}
676
6bb5cf10 677static void ps3_ioc0_unmap_sg(struct device *_dev, struct scatterlist *sg,
3affedc4 678 int nents, enum dma_data_direction direction,
00085f1e 679 unsigned long attrs)
6bb5cf10
GL
680{
681 BUG();
682}
683
a3d4d643
GL
684static int ps3_dma_supported(struct device *_dev, u64 mask)
685{
284901a9 686 return mask >= DMA_BIT_MASK(32);
a3d4d643
GL
687}
688
d24f9c69
MM
689static u64 ps3_dma_get_required_mask(struct device *_dev)
690{
691 return DMA_BIT_MASK(32);
692}
693
5299709d 694static const struct dma_map_ops ps3_sb_dma_ops = {
bfbf7d61
AP
695 .alloc = ps3_alloc_coherent,
696 .free = ps3_free_coherent,
6bb5cf10
GL
697 .map_sg = ps3_sb_map_sg,
698 .unmap_sg = ps3_sb_unmap_sg,
f9226d57 699 .dma_supported = ps3_dma_supported,
d24f9c69 700 .get_required_mask = ps3_dma_get_required_mask,
f9226d57
MN
701 .map_page = ps3_sb_map_page,
702 .unmap_page = ps3_unmap_page,
6bb5cf10
GL
703};
704
5299709d 705static const struct dma_map_ops ps3_ioc0_dma_ops = {
bfbf7d61
AP
706 .alloc = ps3_alloc_coherent,
707 .free = ps3_free_coherent,
6bb5cf10
GL
708 .map_sg = ps3_ioc0_map_sg,
709 .unmap_sg = ps3_ioc0_unmap_sg,
f9226d57 710 .dma_supported = ps3_dma_supported,
d24f9c69 711 .get_required_mask = ps3_dma_get_required_mask,
f9226d57
MN
712 .map_page = ps3_ioc0_map_page,
713 .unmap_page = ps3_unmap_page,
a3d4d643
GL
714};
715
716/**
717 * ps3_system_bus_release_device - remove a device from the system bus
718 */
719
720static void ps3_system_bus_release_device(struct device *_dev)
721{
6bb5cf10 722 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
a3d4d643
GL
723 kfree(dev);
724}
725
726/**
727 * ps3_system_bus_device_register - add a device to the system bus
728 *
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().
732 */
733
734int ps3_system_bus_device_register(struct ps3_system_bus_device *dev)
735{
736 int result;
6bb5cf10
GL
737 static unsigned int dev_ioc0_count;
738 static unsigned int dev_sb_count;
739 static unsigned int dev_vuart_count;
ed757002 740 static unsigned int dev_lpm_count;
a3d4d643 741
6bb5cf10
GL
742 if (!dev->core.parent)
743 dev->core.parent = &ps3_system_bus;
a3d4d643
GL
744 dev->core.bus = &ps3_system_bus_type;
745 dev->core.release = ps3_system_bus_release_device;
746
6bb5cf10
GL
747 switch (dev->dev_type) {
748 case PS3_DEVICE_TYPE_IOC0:
5657933d 749 dev->core.dma_ops = &ps3_ioc0_dma_ops;
aab0d375 750 dev_set_name(&dev->core, "ioc0_%02x", ++dev_ioc0_count);
6bb5cf10
GL
751 break;
752 case PS3_DEVICE_TYPE_SB:
5657933d 753 dev->core.dma_ops = &ps3_sb_dma_ops;
aab0d375 754 dev_set_name(&dev->core, "sb_%02x", ++dev_sb_count);
6bb5cf10
GL
755
756 break;
757 case PS3_DEVICE_TYPE_VUART:
aab0d375 758 dev_set_name(&dev->core, "vuart_%02x", ++dev_vuart_count);
6bb5cf10 759 break;
ed757002 760 case PS3_DEVICE_TYPE_LPM:
aab0d375 761 dev_set_name(&dev->core, "lpm_%02x", ++dev_lpm_count);
ed757002 762 break;
6bb5cf10
GL
763 default:
764 BUG();
765 };
766
d706c1b0 767 dev->core.of_node = NULL;
8fae0353 768 set_dev_node(&dev->core, 0);
a3d4d643 769
aab0d375 770 pr_debug("%s:%d add %s\n", __func__, __LINE__, dev_name(&dev->core));
a3d4d643
GL
771
772 result = device_register(&dev->core);
773 return result;
774}
775
776EXPORT_SYMBOL_GPL(ps3_system_bus_device_register);
777
778int ps3_system_bus_driver_register(struct ps3_system_bus_driver *drv)
779{
780 int result;
781
6bb5cf10
GL
782 pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, drv->core.name);
783
784 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
785 return -ENODEV;
786
a3d4d643
GL
787 drv->core.bus = &ps3_system_bus_type;
788
789 result = driver_register(&drv->core);
6bb5cf10 790 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, drv->core.name);
a3d4d643
GL
791 return result;
792}
793
794EXPORT_SYMBOL_GPL(ps3_system_bus_driver_register);
795
796void ps3_system_bus_driver_unregister(struct ps3_system_bus_driver *drv)
797{
6bb5cf10 798 pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, drv->core.name);
a3d4d643 799 driver_unregister(&drv->core);
6bb5cf10 800 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, drv->core.name);
a3d4d643
GL
801}
802
803EXPORT_SYMBOL_GPL(ps3_system_bus_driver_unregister);