blob: 880eb9ce22c52784f8c8993e291dfb5f7a7c3cc3 [file] [log] [blame]
Geoff Levanda3d4d642006-11-23 00:47:00 +01001/*
2 * PS3 system bus driver.
3 *
4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 Sony Corp.
6 *
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.
10 *
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.
15 *
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
19 */
20
21#include <linux/kernel.h>
22#include <linux/init.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040023#include <linux/export.h>
Geoff Levanda3d4d642006-11-23 00:47:00 +010024#include <linux/dma-mapping.h>
25#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Geoff Levanda3d4d642006-11-23 00:47:00 +010027
28#include <asm/udbg.h>
Geoff Levanda3d4d642006-11-23 00:47:00 +010029#include <asm/lv1call.h>
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +010030#include <asm/firmware.h>
Geert Uytterhoeven9413c882009-07-29 02:06:42 +000031#include <asm/cell-regs.h>
Geoff Levanda3d4d642006-11-23 00:47:00 +010032
Geoff Levand2a08ea62007-01-30 15:20:27 -080033#include "platform.h"
34
Geoff Levand6bb5cf12007-06-16 07:52:02 +100035static struct device ps3_system_bus = {
Kay Sieversaab0d372008-12-04 10:02:56 -080036 .init_name = "ps3_system",
Geoff Levand6bb5cf12007-06-16 07:52:02 +100037};
38
39/* FIXME: need device usage counters! */
40struct {
41 struct mutex mutex;
42 int sb_11; /* usb 0 */
43 int sb_12; /* usb 0 */
44 int gpu;
45} static usage_hack;
46
Geert Uytterhoeven034e0ab2008-01-19 07:30:09 +110047static int ps3_is_device(struct ps3_system_bus_device *dev, u64 bus_id,
48 u64 dev_id)
Geoff Levand6bb5cf12007-06-16 07:52:02 +100049{
50 return dev->bus_id == bus_id && dev->dev_id == dev_id;
51}
52
53static int ps3_open_hv_device_sb(struct ps3_system_bus_device *dev)
54{
55 int result;
56
57 BUG_ON(!dev->bus_id);
58 mutex_lock(&usage_hack.mutex);
59
60 if (ps3_is_device(dev, 1, 1)) {
61 usage_hack.sb_11++;
62 if (usage_hack.sb_11 > 1) {
63 result = 0;
64 goto done;
65 }
66 }
67
68 if (ps3_is_device(dev, 1, 2)) {
69 usage_hack.sb_12++;
70 if (usage_hack.sb_12 > 1) {
71 result = 0;
72 goto done;
73 }
74 }
75
76 result = lv1_open_device(dev->bus_id, dev->dev_id, 0);
77
78 if (result) {
79 pr_debug("%s:%d: lv1_open_device failed: %s\n", __func__,
80 __LINE__, ps3_result(result));
81 result = -EPERM;
82 }
83
84done:
85 mutex_unlock(&usage_hack.mutex);
86 return result;
87}
88
89static int ps3_close_hv_device_sb(struct ps3_system_bus_device *dev)
90{
91 int result;
92
93 BUG_ON(!dev->bus_id);
94 mutex_lock(&usage_hack.mutex);
95
96 if (ps3_is_device(dev, 1, 1)) {
97 usage_hack.sb_11--;
98 if (usage_hack.sb_11) {
99 result = 0;
100 goto done;
101 }
102 }
103
104 if (ps3_is_device(dev, 1, 2)) {
105 usage_hack.sb_12--;
106 if (usage_hack.sb_12) {
107 result = 0;
108 goto done;
109 }
110 }
111
112 result = lv1_close_device(dev->bus_id, dev->dev_id);
113 BUG_ON(result);
114
115done:
116 mutex_unlock(&usage_hack.mutex);
117 return result;
118}
119
120static int ps3_open_hv_device_gpu(struct ps3_system_bus_device *dev)
121{
122 int result;
123
124 mutex_lock(&usage_hack.mutex);
125
126 usage_hack.gpu++;
127 if (usage_hack.gpu > 1) {
128 result = 0;
129 goto done;
130 }
131
132 result = lv1_gpu_open(0);
133
134 if (result) {
135 pr_debug("%s:%d: lv1_gpu_open failed: %s\n", __func__,
136 __LINE__, ps3_result(result));
137 result = -EPERM;
138 }
139
140done:
141 mutex_unlock(&usage_hack.mutex);
142 return result;
143}
144
145static int ps3_close_hv_device_gpu(struct ps3_system_bus_device *dev)
146{
147 int result;
148
149 mutex_lock(&usage_hack.mutex);
150
151 usage_hack.gpu--;
152 if (usage_hack.gpu) {
153 result = 0;
154 goto done;
155 }
156
157 result = lv1_gpu_close();
158 BUG_ON(result);
159
160done:
161 mutex_unlock(&usage_hack.mutex);
162 return result;
163}
164
165int ps3_open_hv_device(struct ps3_system_bus_device *dev)
166{
167 BUG_ON(!dev);
168 pr_debug("%s:%d: match_id: %u\n", __func__, __LINE__, dev->match_id);
169
170 switch (dev->match_id) {
171 case PS3_MATCH_ID_EHCI:
172 case PS3_MATCH_ID_OHCI:
173 case PS3_MATCH_ID_GELIC:
174 case PS3_MATCH_ID_STOR_DISK:
175 case PS3_MATCH_ID_STOR_ROM:
176 case PS3_MATCH_ID_STOR_FLASH:
177 return ps3_open_hv_device_sb(dev);
178
179 case PS3_MATCH_ID_SOUND:
Geert Uytterhoeven46d01492008-12-03 13:52:21 +0000180 case PS3_MATCH_ID_GPU:
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000181 return ps3_open_hv_device_gpu(dev);
182
183 case PS3_MATCH_ID_AV_SETTINGS:
184 case PS3_MATCH_ID_SYSTEM_MANAGER:
185 pr_debug("%s:%d: unsupported match_id: %u\n", __func__,
186 __LINE__, dev->match_id);
Stephen Rothwell5c949072009-01-13 20:02:39 +0000187 pr_debug("%s:%d: bus_id: %llu\n", __func__, __LINE__,
Geert Uytterhoeven034e0ab2008-01-19 07:30:09 +1100188 dev->bus_id);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000189 BUG();
190 return -EINVAL;
191
192 default:
193 break;
194 }
195
196 pr_debug("%s:%d: unknown match_id: %u\n", __func__, __LINE__,
197 dev->match_id);
198 BUG();
199 return -ENODEV;
200}
201EXPORT_SYMBOL_GPL(ps3_open_hv_device);
202
203int ps3_close_hv_device(struct ps3_system_bus_device *dev)
204{
205 BUG_ON(!dev);
206 pr_debug("%s:%d: match_id: %u\n", __func__, __LINE__, dev->match_id);
207
208 switch (dev->match_id) {
209 case PS3_MATCH_ID_EHCI:
210 case PS3_MATCH_ID_OHCI:
211 case PS3_MATCH_ID_GELIC:
212 case PS3_MATCH_ID_STOR_DISK:
213 case PS3_MATCH_ID_STOR_ROM:
214 case PS3_MATCH_ID_STOR_FLASH:
215 return ps3_close_hv_device_sb(dev);
216
217 case PS3_MATCH_ID_SOUND:
Geert Uytterhoeven46d01492008-12-03 13:52:21 +0000218 case PS3_MATCH_ID_GPU:
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000219 return ps3_close_hv_device_gpu(dev);
220
221 case PS3_MATCH_ID_AV_SETTINGS:
222 case PS3_MATCH_ID_SYSTEM_MANAGER:
223 pr_debug("%s:%d: unsupported match_id: %u\n", __func__,
224 __LINE__, dev->match_id);
Stephen Rothwell5c949072009-01-13 20:02:39 +0000225 pr_debug("%s:%d: bus_id: %llu\n", __func__, __LINE__,
Geert Uytterhoeven034e0ab2008-01-19 07:30:09 +1100226 dev->bus_id);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000227 BUG();
228 return -EINVAL;
229
230 default:
231 break;
232 }
233
234 pr_debug("%s:%d: unknown match_id: %u\n", __func__, __LINE__,
235 dev->match_id);
236 BUG();
237 return -ENODEV;
238}
239EXPORT_SYMBOL_GPL(ps3_close_hv_device);
240
Geoff Levanda3d4d642006-11-23 00:47:00 +0100241#define dump_mmio_region(_a) _dump_mmio_region(_a, __func__, __LINE__)
242static void _dump_mmio_region(const struct ps3_mmio_region* r,
243 const char* func, int line)
244{
Stephen Rothwell5c949072009-01-13 20:02:39 +0000245 pr_debug("%s:%d: dev %llu:%llu\n", func, line, r->dev->bus_id,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000246 r->dev->dev_id);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100247 pr_debug("%s:%d: bus_addr %lxh\n", func, line, r->bus_addr);
248 pr_debug("%s:%d: len %lxh\n", func, line, r->len);
249 pr_debug("%s:%d: lpar_addr %lxh\n", func, line, r->lpar_addr);
250}
251
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000252static int ps3_sb_mmio_region_create(struct ps3_mmio_region *r)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100253{
254 int result;
Stephen Rothwellb17b3df2009-01-13 19:59:41 +0000255 u64 lpar_addr;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100256
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000257 result = lv1_map_device_mmio_region(r->dev->bus_id, r->dev->dev_id,
Stephen Rothwellb17b3df2009-01-13 19:59:41 +0000258 r->bus_addr, r->len, r->page_size, &lpar_addr);
259 r->lpar_addr = lpar_addr;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100260
261 if (result) {
262 pr_debug("%s:%d: lv1_map_device_mmio_region failed: %s\n",
263 __func__, __LINE__, ps3_result(result));
Benjamin Herrenschmidt43d80432007-01-26 19:07:54 -0800264 r->lpar_addr = 0;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100265 }
266
267 dump_mmio_region(r);
268 return result;
269}
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000270
271static int ps3_ioc0_mmio_region_create(struct ps3_mmio_region *r)
272{
273 /* device specific; do nothing currently */
274 return 0;
275}
276
277int ps3_mmio_region_create(struct ps3_mmio_region *r)
278{
279 return r->mmio_ops->create(r);
280}
Al Viro9288f5c2007-02-09 16:05:27 +0000281EXPORT_SYMBOL_GPL(ps3_mmio_region_create);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100282
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000283static int ps3_sb_free_mmio_region(struct ps3_mmio_region *r)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100284{
285 int result;
286
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000287 dump_mmio_region(r);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000288 result = lv1_unmap_device_mmio_region(r->dev->bus_id, r->dev->dev_id,
Benjamin Herrenschmidt43d80432007-01-26 19:07:54 -0800289 r->lpar_addr);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100290
291 if (result)
292 pr_debug("%s:%d: lv1_unmap_device_mmio_region failed: %s\n",
293 __func__, __LINE__, ps3_result(result));
294
Benjamin Herrenschmidt43d80432007-01-26 19:07:54 -0800295 r->lpar_addr = 0;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100296 return result;
297}
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000298
299static int ps3_ioc0_free_mmio_region(struct ps3_mmio_region *r)
300{
301 /* device specific; do nothing currently */
302 return 0;
303}
304
305
306int ps3_free_mmio_region(struct ps3_mmio_region *r)
307{
308 return r->mmio_ops->free(r);
309}
310
Al Viro9288f5c2007-02-09 16:05:27 +0000311EXPORT_SYMBOL_GPL(ps3_free_mmio_region);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100312
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000313static const struct ps3_mmio_region_ops ps3_mmio_sb_region_ops = {
314 .create = ps3_sb_mmio_region_create,
315 .free = ps3_sb_free_mmio_region
316};
317
318static const struct ps3_mmio_region_ops ps3_mmio_ioc0_region_ops = {
319 .create = ps3_ioc0_mmio_region_create,
320 .free = ps3_ioc0_free_mmio_region
321};
322
323int ps3_mmio_region_init(struct ps3_system_bus_device *dev,
324 struct ps3_mmio_region *r, unsigned long bus_addr, unsigned long len,
325 enum ps3_mmio_page_size page_size)
326{
327 r->dev = dev;
328 r->bus_addr = bus_addr;
329 r->len = len;
330 r->page_size = page_size;
331 switch (dev->dev_type) {
332 case PS3_DEVICE_TYPE_SB:
333 r->mmio_ops = &ps3_mmio_sb_region_ops;
334 break;
335 case PS3_DEVICE_TYPE_IOC0:
336 r->mmio_ops = &ps3_mmio_ioc0_region_ops;
337 break;
338 default:
339 BUG();
340 return -EINVAL;
341 }
342 return 0;
343}
344EXPORT_SYMBOL_GPL(ps3_mmio_region_init);
345
Geoff Levanda3d4d642006-11-23 00:47:00 +0100346static int ps3_system_bus_match(struct device *_dev,
347 struct device_driver *_drv)
348{
349 int result;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000350 struct ps3_system_bus_driver *drv = ps3_drv_to_system_bus_drv(_drv);
351 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100352
Masakazu Mokuno059e4932008-07-17 07:22:19 +1000353 if (!dev->match_sub_id)
354 result = dev->match_id == drv->match_id;
355 else
356 result = dev->match_sub_id == drv->match_sub_id &&
357 dev->match_id == drv->match_id;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100358
Geoff Levand88b90c92008-07-02 04:17:05 +1000359 if (result)
Masakazu Mokuno059e4932008-07-17 07:22:19 +1000360 pr_info("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): match\n",
361 __func__, __LINE__,
Kay Sieversaab0d372008-12-04 10:02:56 -0800362 dev->match_id, dev->match_sub_id, dev_name(&dev->core),
Masakazu Mokuno059e4932008-07-17 07:22:19 +1000363 drv->match_id, drv->match_sub_id, drv->core.name);
Geoff Levand88b90c92008-07-02 04:17:05 +1000364 else
Masakazu Mokuno059e4932008-07-17 07:22:19 +1000365 pr_debug("%s:%d: dev=%u.%u(%s), drv=%u.%u(%s): miss\n",
366 __func__, __LINE__,
Kay Sieversaab0d372008-12-04 10:02:56 -0800367 dev->match_id, dev->match_sub_id, dev_name(&dev->core),
Masakazu Mokuno059e4932008-07-17 07:22:19 +1000368 drv->match_id, drv->match_sub_id, drv->core.name);
369
Geoff Levanda3d4d642006-11-23 00:47:00 +0100370 return result;
371}
372
373static int ps3_system_bus_probe(struct device *_dev)
374{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000375 int result = 0;
376 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
377 struct ps3_system_bus_driver *drv;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100378
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000379 BUG_ON(!dev);
Greg Kroah-Hartman54ca5412009-01-26 09:12:12 -0800380 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100381
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000382 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100383 BUG_ON(!drv);
384
385 if (drv->probe)
386 result = drv->probe(dev);
387 else
Geoff Levand88b90c92008-07-02 04:17:05 +1000388 pr_debug("%s:%d: %s no probe method\n", __func__, __LINE__,
Kay Sieversaab0d372008-12-04 10:02:56 -0800389 dev_name(&dev->core));
Geoff Levanda3d4d642006-11-23 00:47:00 +0100390
Kay Sieversaab0d372008-12-04 10:02:56 -0800391 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core));
Geoff Levanda3d4d642006-11-23 00:47:00 +0100392 return result;
393}
394
395static int ps3_system_bus_remove(struct device *_dev)
396{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000397 int result = 0;
398 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
399 struct ps3_system_bus_driver *drv;
400
401 BUG_ON(!dev);
Greg Kroah-Hartman54ca5412009-01-26 09:12:12 -0800402 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000403
404 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
405 BUG_ON(!drv);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100406
407 if (drv->remove)
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000408 result = drv->remove(dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100409 else
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000410 dev_dbg(&dev->core, "%s:%d %s: no remove method\n",
411 __func__, __LINE__, drv->core.name);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100412
Kay Sieversaab0d372008-12-04 10:02:56 -0800413 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev_name(&dev->core));
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000414 return result;
415}
Geoff Levanda3d4d642006-11-23 00:47:00 +0100416
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000417static void ps3_system_bus_shutdown(struct device *_dev)
418{
419 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
420 struct ps3_system_bus_driver *drv;
421
422 BUG_ON(!dev);
423
424 dev_dbg(&dev->core, " -> %s:%d: match_id %d\n", __func__, __LINE__,
425 dev->match_id);
426
427 if (!dev->core.driver) {
428 dev_dbg(&dev->core, "%s:%d: no driver bound\n", __func__,
429 __LINE__);
430 return;
431 }
432
433 drv = ps3_system_bus_dev_to_system_bus_drv(dev);
434
435 BUG_ON(!drv);
436
437 dev_dbg(&dev->core, "%s:%d: %s -> %s\n", __func__, __LINE__,
Kay Sieversaab0d372008-12-04 10:02:56 -0800438 dev_name(&dev->core), drv->core.name);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000439
440 if (drv->shutdown)
441 drv->shutdown(dev);
442 else if (drv->remove) {
443 dev_dbg(&dev->core, "%s:%d %s: no shutdown, calling remove\n",
444 __func__, __LINE__, drv->core.name);
445 drv->remove(dev);
446 } else {
447 dev_dbg(&dev->core, "%s:%d %s: no shutdown method\n",
448 __func__, __LINE__, drv->core.name);
449 BUG();
450 }
451
452 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100453}
454
Kay Sievers7eff2e72007-08-14 15:15:12 +0200455static int ps3_system_bus_uevent(struct device *_dev, struct kobj_uevent_env *env)
David Woodhouse688b3372007-06-16 07:55:14 +1000456{
457 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
David Woodhouse688b3372007-06-16 07:55:14 +1000458
Geert Uytterhoeven46d01492008-12-03 13:52:21 +0000459 if (add_uevent_var(env, "MODALIAS=ps3:%d:%d", dev->match_id,
460 dev->match_sub_id))
David Woodhouse688b3372007-06-16 07:55:14 +1000461 return -ENOMEM;
David Woodhouse688b3372007-06-16 07:55:14 +1000462 return 0;
463}
464
David Woodhouse67585552007-06-16 07:55:20 +1000465static ssize_t modalias_show(struct device *_dev, struct device_attribute *a,
466 char *buf)
467{
468 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geert Uytterhoeven46d01492008-12-03 13:52:21 +0000469 int len = snprintf(buf, PAGE_SIZE, "ps3:%d:%d\n", dev->match_id,
470 dev->match_sub_id);
David Woodhouse67585552007-06-16 07:55:20 +1000471
472 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
473}
474
475static struct device_attribute ps3_system_bus_dev_attrs[] = {
476 __ATTR_RO(modalias),
477 __ATTR_NULL,
478};
479
Geoff Levanda3d4d642006-11-23 00:47:00 +0100480struct bus_type ps3_system_bus_type = {
Geoff Levand2a08ea62007-01-30 15:20:27 -0800481 .name = "ps3_system_bus",
Geoff Levanda3d4d642006-11-23 00:47:00 +0100482 .match = ps3_system_bus_match,
David Woodhouse688b3372007-06-16 07:55:14 +1000483 .uevent = ps3_system_bus_uevent,
Geoff Levanda3d4d642006-11-23 00:47:00 +0100484 .probe = ps3_system_bus_probe,
485 .remove = ps3_system_bus_remove,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000486 .shutdown = ps3_system_bus_shutdown,
David Woodhouse67585552007-06-16 07:55:20 +1000487 .dev_attrs = ps3_system_bus_dev_attrs,
Geoff Levanda3d4d642006-11-23 00:47:00 +0100488};
489
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000490static int __init ps3_system_bus_init(void)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100491{
492 int result;
493
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100494 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
Geert Uytterhoevenef596c62007-03-10 00:05:38 +0100495 return -ENODEV;
Arnd Bergmanne22ba7e2006-11-27 19:18:57 +0100496
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000497 pr_debug(" -> %s:%d\n", __func__, __LINE__);
498
499 mutex_init(&usage_hack.mutex);
500
501 result = device_register(&ps3_system_bus);
502 BUG_ON(result);
503
Geoff Levanda3d4d642006-11-23 00:47:00 +0100504 result = bus_register(&ps3_system_bus_type);
505 BUG_ON(result);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000506
507 pr_debug(" <- %s:%d\n", __func__, __LINE__);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100508 return result;
509}
510
511core_initcall(ps3_system_bus_init);
512
513/* Allocates a contiguous real buffer and creates mappings over it.
514 * Returns the virtual address of the buffer and sets dma_handle
515 * to the dma address (mapping) of the first page.
516 */
Geoff Levanda3d4d642006-11-23 00:47:00 +0100517static void * ps3_alloc_coherent(struct device *_dev, size_t size,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000518 dma_addr_t *dma_handle, gfp_t flag)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100519{
520 int result;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000521 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100522 unsigned long virt_addr;
523
Geoff Levanda3d4d642006-11-23 00:47:00 +0100524 flag &= ~(__GFP_DMA | __GFP_HIGHMEM);
525 flag |= __GFP_ZERO;
526
527 virt_addr = __get_free_pages(flag, get_order(size));
528
529 if (!virt_addr) {
530 pr_debug("%s:%d: get_free_pages failed\n", __func__, __LINE__);
531 goto clean_none;
532 }
533
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000534 result = ps3_dma_map(dev->d_region, virt_addr, size, dma_handle,
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000535 CBE_IOPTE_PP_W | CBE_IOPTE_PP_R |
536 CBE_IOPTE_SO_RW | CBE_IOPTE_M);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100537
538 if (result) {
539 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
540 __func__, __LINE__, result);
541 BUG_ON("check region type");
542 goto clean_alloc;
543 }
544
545 return (void*)virt_addr;
546
547clean_alloc:
548 free_pages(virt_addr, get_order(size));
549clean_none:
550 dma_handle = NULL;
551 return NULL;
552}
553
554static void ps3_free_coherent(struct device *_dev, size_t size, void *vaddr,
555 dma_addr_t dma_handle)
556{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000557 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100558
559 ps3_dma_unmap(dev->d_region, dma_handle, size);
560 free_pages((unsigned long)vaddr, get_order(size));
561}
562
563/* Creates TCEs for a user provided buffer. The user buffer must be
Mark Nelsonf9226d52008-10-27 20:38:08 +0000564 * contiguous real kernel storage (not vmalloc). The address passed here
565 * comprises a page address and offset into that page. The dma_addr_t
566 * returned will point to the same byte within the page as was passed in.
Geoff Levanda3d4d642006-11-23 00:47:00 +0100567 */
568
Mark Nelsonf9226d52008-10-27 20:38:08 +0000569static dma_addr_t ps3_sb_map_page(struct device *_dev, struct page *page,
570 unsigned long offset, size_t size, enum dma_data_direction direction,
571 struct dma_attrs *attrs)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100572{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000573 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100574 int result;
Stephen Rothwell494fd072009-01-13 19:58:10 +0000575 dma_addr_t bus_addr;
Mark Nelsonf9226d52008-10-27 20:38:08 +0000576 void *ptr = page_address(page) + offset;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100577
578 result = ps3_dma_map(dev->d_region, (unsigned long)ptr, size,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000579 &bus_addr,
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000580 CBE_IOPTE_PP_R | CBE_IOPTE_PP_W |
581 CBE_IOPTE_SO_RW | CBE_IOPTE_M);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100582
583 if (result) {
584 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
585 __func__, __LINE__, result);
586 }
587
588 return bus_addr;
589}
590
Mark Nelsonf9226d52008-10-27 20:38:08 +0000591static dma_addr_t ps3_ioc0_map_page(struct device *_dev, struct page *page,
592 unsigned long offset, size_t size,
593 enum dma_data_direction direction,
594 struct dma_attrs *attrs)
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000595{
596 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
597 int result;
Stephen Rothwell494fd072009-01-13 19:58:10 +0000598 dma_addr_t bus_addr;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000599 u64 iopte_flag;
Mark Nelsonf9226d52008-10-27 20:38:08 +0000600 void *ptr = page_address(page) + offset;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000601
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000602 iopte_flag = CBE_IOPTE_M;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000603 switch (direction) {
604 case DMA_BIDIRECTIONAL:
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000605 iopte_flag |= CBE_IOPTE_PP_R | CBE_IOPTE_PP_W | CBE_IOPTE_SO_RW;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000606 break;
607 case DMA_TO_DEVICE:
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000608 iopte_flag |= CBE_IOPTE_PP_R | CBE_IOPTE_SO_R;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000609 break;
610 case DMA_FROM_DEVICE:
Geert Uytterhoeven5c6fc8d2009-06-10 04:38:45 +0000611 iopte_flag |= CBE_IOPTE_PP_W | CBE_IOPTE_SO_RW;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000612 break;
613 default:
614 /* not happned */
615 BUG();
616 };
617 result = ps3_dma_map(dev->d_region, (unsigned long)ptr, size,
618 &bus_addr, iopte_flag);
619
620 if (result) {
621 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
622 __func__, __LINE__, result);
623 }
624 return bus_addr;
625}
626
Mark Nelsonf9226d52008-10-27 20:38:08 +0000627static void ps3_unmap_page(struct device *_dev, dma_addr_t dma_addr,
Mark Nelson3affedc2008-07-05 05:05:42 +1000628 size_t size, enum dma_data_direction direction, struct dma_attrs *attrs)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100629{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000630 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100631 int result;
632
633 result = ps3_dma_unmap(dev->d_region, dma_addr, size);
634
635 if (result) {
636 pr_debug("%s:%d: ps3_dma_unmap failed (%d)\n",
637 __func__, __LINE__, result);
638 }
639}
640
Jens Axboed1ed4552007-07-19 08:22:17 +0200641static int ps3_sb_map_sg(struct device *_dev, struct scatterlist *sgl,
Mark Nelson3affedc2008-07-05 05:05:42 +1000642 int nents, enum dma_data_direction direction, struct dma_attrs *attrs)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100643{
644#if defined(CONFIG_PS3_DYNAMIC_DMA)
645 BUG_ON("do");
Geoff Levand35063bb2007-01-30 15:20:34 -0800646 return -EPERM;
647#else
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000648 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Jens Axboed1ed4552007-07-19 08:22:17 +0200649 struct scatterlist *sg;
Stephen Rothwell435e0b22007-05-11 15:42:44 +1000650 int i;
651
Jens Axboed1ed4552007-07-19 08:22:17 +0200652 for_each_sg(sgl, sg, nents, i) {
Jens Axboe58b053e2007-10-22 20:02:46 +0200653 int result = ps3_dma_map(dev->d_region, sg_phys(sg),
654 sg->length, &sg->dma_address, 0);
Geoff Levand35063bb2007-01-30 15:20:34 -0800655
656 if (result) {
657 pr_debug("%s:%d: ps3_dma_map failed (%d)\n",
658 __func__, __LINE__, result);
659 return -EINVAL;
660 }
661
662 sg->dma_length = sg->length;
663 }
664
665 return nents;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100666#endif
Geoff Levanda3d4d642006-11-23 00:47:00 +0100667}
668
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000669static int ps3_ioc0_map_sg(struct device *_dev, struct scatterlist *sg,
670 int nents,
Mark Nelson3affedc2008-07-05 05:05:42 +1000671 enum dma_data_direction direction,
672 struct dma_attrs *attrs)
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000673{
674 BUG();
675 return 0;
676}
677
678static void ps3_sb_unmap_sg(struct device *_dev, struct scatterlist *sg,
Mark Nelson3affedc2008-07-05 05:05:42 +1000679 int nents, enum dma_data_direction direction, struct dma_attrs *attrs)
Geoff Levanda3d4d642006-11-23 00:47:00 +0100680{
681#if defined(CONFIG_PS3_DYNAMIC_DMA)
682 BUG_ON("do");
683#endif
684}
685
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000686static void ps3_ioc0_unmap_sg(struct device *_dev, struct scatterlist *sg,
Mark Nelson3affedc2008-07-05 05:05:42 +1000687 int nents, enum dma_data_direction direction,
688 struct dma_attrs *attrs)
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000689{
690 BUG();
691}
692
Geoff Levanda3d4d642006-11-23 00:47:00 +0100693static int ps3_dma_supported(struct device *_dev, u64 mask)
694{
Yang Hongyang284901a2009-04-06 19:01:15 -0700695 return mask >= DMA_BIT_MASK(32);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100696}
697
Milton Millerd24f9c62011-06-24 09:05:24 +0000698static u64 ps3_dma_get_required_mask(struct device *_dev)
699{
700 return DMA_BIT_MASK(32);
701}
702
FUJITA Tomonori45223c52009-08-04 19:08:25 +0000703static struct dma_map_ops ps3_sb_dma_ops = {
Geoff Levanda3d4d642006-11-23 00:47:00 +0100704 .alloc_coherent = ps3_alloc_coherent,
705 .free_coherent = ps3_free_coherent,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000706 .map_sg = ps3_sb_map_sg,
707 .unmap_sg = ps3_sb_unmap_sg,
Mark Nelsonf9226d52008-10-27 20:38:08 +0000708 .dma_supported = ps3_dma_supported,
Milton Millerd24f9c62011-06-24 09:05:24 +0000709 .get_required_mask = ps3_dma_get_required_mask,
Mark Nelsonf9226d52008-10-27 20:38:08 +0000710 .map_page = ps3_sb_map_page,
711 .unmap_page = ps3_unmap_page,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000712};
713
FUJITA Tomonori45223c52009-08-04 19:08:25 +0000714static struct dma_map_ops ps3_ioc0_dma_ops = {
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000715 .alloc_coherent = ps3_alloc_coherent,
716 .free_coherent = ps3_free_coherent,
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000717 .map_sg = ps3_ioc0_map_sg,
718 .unmap_sg = ps3_ioc0_unmap_sg,
Mark Nelsonf9226d52008-10-27 20:38:08 +0000719 .dma_supported = ps3_dma_supported,
Milton Millerd24f9c62011-06-24 09:05:24 +0000720 .get_required_mask = ps3_dma_get_required_mask,
Mark Nelsonf9226d52008-10-27 20:38:08 +0000721 .map_page = ps3_ioc0_map_page,
722 .unmap_page = ps3_unmap_page,
Geoff Levanda3d4d642006-11-23 00:47:00 +0100723};
724
725/**
726 * ps3_system_bus_release_device - remove a device from the system bus
727 */
728
729static void ps3_system_bus_release_device(struct device *_dev)
730{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000731 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100732 kfree(dev);
733}
734
735/**
736 * ps3_system_bus_device_register - add a device to the system bus
737 *
738 * ps3_system_bus_device_register() expects the dev object to be allocated
739 * dynamically by the caller. The system bus takes ownership of the dev
740 * object and frees the object in ps3_system_bus_release_device().
741 */
742
743int ps3_system_bus_device_register(struct ps3_system_bus_device *dev)
744{
745 int result;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000746 static unsigned int dev_ioc0_count;
747 static unsigned int dev_sb_count;
748 static unsigned int dev_vuart_count;
Geoff Levanded757002008-01-19 07:32:38 +1100749 static unsigned int dev_lpm_count;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100750
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000751 if (!dev->core.parent)
752 dev->core.parent = &ps3_system_bus;
Geoff Levanda3d4d642006-11-23 00:47:00 +0100753 dev->core.bus = &ps3_system_bus_type;
754 dev->core.release = ps3_system_bus_release_device;
755
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000756 switch (dev->dev_type) {
757 case PS3_DEVICE_TYPE_IOC0:
758 dev->core.archdata.dma_ops = &ps3_ioc0_dma_ops;
Kay Sieversaab0d372008-12-04 10:02:56 -0800759 dev_set_name(&dev->core, "ioc0_%02x", ++dev_ioc0_count);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000760 break;
761 case PS3_DEVICE_TYPE_SB:
762 dev->core.archdata.dma_ops = &ps3_sb_dma_ops;
Kay Sieversaab0d372008-12-04 10:02:56 -0800763 dev_set_name(&dev->core, "sb_%02x", ++dev_sb_count);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100764
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000765 break;
766 case PS3_DEVICE_TYPE_VUART:
Kay Sieversaab0d372008-12-04 10:02:56 -0800767 dev_set_name(&dev->core, "vuart_%02x", ++dev_vuart_count);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000768 break;
Geoff Levanded757002008-01-19 07:32:38 +1100769 case PS3_DEVICE_TYPE_LPM:
Kay Sieversaab0d372008-12-04 10:02:56 -0800770 dev_set_name(&dev->core, "lpm_%02x", ++dev_lpm_count);
Geoff Levanded757002008-01-19 07:32:38 +1100771 break;
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000772 default:
773 BUG();
774 };
775
Grant Likelyd706c1b2010-04-13 16:12:28 -0700776 dev->core.of_node = NULL;
Becky Bruce8fae0352008-09-08 09:09:54 +0000777 set_dev_node(&dev->core, 0);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100778
Kay Sieversaab0d372008-12-04 10:02:56 -0800779 pr_debug("%s:%d add %s\n", __func__, __LINE__, dev_name(&dev->core));
Geoff Levanda3d4d642006-11-23 00:47:00 +0100780
781 result = device_register(&dev->core);
782 return result;
783}
784
785EXPORT_SYMBOL_GPL(ps3_system_bus_device_register);
786
787int ps3_system_bus_driver_register(struct ps3_system_bus_driver *drv)
788{
789 int result;
790
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000791 pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, drv->core.name);
792
793 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
794 return -ENODEV;
795
Geoff Levanda3d4d642006-11-23 00:47:00 +0100796 drv->core.bus = &ps3_system_bus_type;
797
798 result = driver_register(&drv->core);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000799 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, drv->core.name);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100800 return result;
801}
802
803EXPORT_SYMBOL_GPL(ps3_system_bus_driver_register);
804
805void ps3_system_bus_driver_unregister(struct ps3_system_bus_driver *drv)
806{
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000807 pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, drv->core.name);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100808 driver_unregister(&drv->core);
Geoff Levand6bb5cf12007-06-16 07:52:02 +1000809 pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, drv->core.name);
Geoff Levanda3d4d642006-11-23 00:47:00 +0100810}
811
812EXPORT_SYMBOL_GPL(ps3_system_bus_driver_unregister);