blob: 8fed3a041dee3b559b0773547f3dae7c6d894548 [file] [log] [blame]
Geoff Levandf58a9d12006-11-23 00:46:51 +01001/*
2 * PS3 platform declarations.
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#if !defined(_ASM_POWERPC_PS3_H)
22#define _ASM_POWERPC_PS3_H
23
24#include <linux/compiler.h> /* for __deprecated */
25#include <linux/init.h>
26#include <linux/types.h>
27#include <linux/device.h>
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -080028#include <scsi/scsi.h>
Geoff Levandf58a9d12006-11-23 00:46:51 +010029
30/**
31 * struct ps3_device_id - HV bus device identifier from the system repository
32 * @bus_id: HV bus id, {1..} (zero invalid)
33 * @dev_id: HV device id, {0..}
34 */
35
36struct ps3_device_id {
37 unsigned int bus_id;
38 unsigned int dev_id;
39};
40
41
42/* dma routines */
43
44enum ps3_dma_page_size {
45 PS3_DMA_4K = 12U,
46 PS3_DMA_64K = 16U,
47 PS3_DMA_1M = 20U,
48 PS3_DMA_16M = 24U,
49};
50
51enum ps3_dma_region_type {
52 PS3_DMA_OTHER = 0,
53 PS3_DMA_INTERNAL = 2,
54};
55
56/**
57 * struct ps3_dma_region - A per device dma state variables structure
58 * @did: The HV device id.
59 * @page_size: The ioc pagesize.
60 * @region_type: The HV region type.
61 * @bus_addr: The 'translated' bus address of the region.
62 * @len: The length in bytes of the region.
63 * @chunk_list: Opaque variable used by the ioc page manager.
64 */
65
66struct ps3_dma_region {
67 struct ps3_device_id did;
68 enum ps3_dma_page_size page_size;
69 enum ps3_dma_region_type region_type;
70 unsigned long bus_addr;
71 unsigned long len;
72 struct {
73 spinlock_t lock;
74 struct list_head head;
75 } chunk_list;
76};
77
78/**
79 * struct ps3_dma_region_init - Helper to initialize structure variables
80 *
81 * Helper to properly initialize variables prior to calling
82 * ps3_system_bus_device_register.
83 */
84
85static inline void ps3_dma_region_init(struct ps3_dma_region *r,
86 const struct ps3_device_id* did, enum ps3_dma_page_size page_size,
87 enum ps3_dma_region_type region_type)
88{
89 r->did = *did;
90 r->page_size = page_size;
91 r->region_type = region_type;
92}
93int ps3_dma_region_create(struct ps3_dma_region *r);
94int ps3_dma_region_free(struct ps3_dma_region *r);
95int ps3_dma_map(struct ps3_dma_region *r, unsigned long virt_addr,
96 unsigned long len, unsigned long *bus_addr);
97int ps3_dma_unmap(struct ps3_dma_region *r, unsigned long bus_addr,
98 unsigned long len);
99
100/* mmio routines */
101
102enum ps3_mmio_page_size {
103 PS3_MMIO_4K = 12U,
104 PS3_MMIO_64K = 16U
105};
106
107/**
108 * struct ps3_mmio_region - a per device mmio state variables structure
109 *
110 * Current systems can be supported with a single region per device.
111 */
112
113struct ps3_mmio_region {
114 struct ps3_device_id did;
115 unsigned long bus_addr;
116 unsigned long len;
117 enum ps3_mmio_page_size page_size;
118 unsigned long lpar_addr;
119};
120
121/**
122 * struct ps3_mmio_region_init - Helper to initialize structure variables
123 *
124 * Helper to properly initialize variables prior to calling
125 * ps3_system_bus_device_register.
126 */
127
128static inline void ps3_mmio_region_init(struct ps3_mmio_region *r,
129 const struct ps3_device_id* did, unsigned long bus_addr,
130 unsigned long len, enum ps3_mmio_page_size page_size)
131{
132 r->did = *did;
133 r->bus_addr = bus_addr;
134 r->len = len;
135 r->page_size = page_size;
136}
137int ps3_mmio_region_create(struct ps3_mmio_region *r);
138int ps3_free_mmio_region(struct ps3_mmio_region *r);
139unsigned long ps3_mm_phys_to_lpar(unsigned long phys_addr);
140
141/* inrerrupt routines */
142
143int ps3_alloc_io_irq(unsigned int interrupt_id, unsigned int *virq);
144int ps3_free_io_irq(unsigned int virq);
145int ps3_alloc_event_irq(unsigned int *virq);
146int ps3_free_event_irq(unsigned int virq);
147int ps3_send_event_locally(unsigned int virq);
148int ps3_connect_event_irq(const struct ps3_device_id *did,
149 unsigned int interrupt_id, unsigned int *virq);
150int ps3_disconnect_event_irq(const struct ps3_device_id *did,
151 unsigned int interrupt_id, unsigned int virq);
152int ps3_alloc_vuart_irq(void* virt_addr_bmp, unsigned int *virq);
153int ps3_free_vuart_irq(unsigned int virq);
154int ps3_alloc_spe_irq(unsigned long spe_id, unsigned int class,
155 unsigned int *virq);
156int ps3_free_spe_irq(unsigned int virq);
157
158/* lv1 result codes */
159
160enum lv1_result {
161 LV1_SUCCESS = 0,
162 /* not used -1 */
163 LV1_RESOURCE_SHORTAGE = -2,
164 LV1_NO_PRIVILEGE = -3,
165 LV1_DENIED_BY_POLICY = -4,
166 LV1_ACCESS_VIOLATION = -5,
167 LV1_NO_ENTRY = -6,
168 LV1_DUPLICATE_ENTRY = -7,
169 LV1_TYPE_MISMATCH = -8,
170 LV1_BUSY = -9,
171 LV1_EMPTY = -10,
172 LV1_WRONG_STATE = -11,
173 /* not used -12 */
174 LV1_NO_MATCH = -13,
175 LV1_ALREADY_CONNECTED = -14,
176 LV1_UNSUPPORTED_PARAMETER_VALUE = -15,
177 LV1_CONDITION_NOT_SATISFIED = -16,
178 LV1_ILLEGAL_PARAMETER_VALUE = -17,
179 LV1_BAD_OPTION = -18,
180 LV1_IMPLEMENTATION_LIMITATION = -19,
181 LV1_NOT_IMPLEMENTED = -20,
182 LV1_INVALID_CLASS_ID = -21,
183 LV1_CONSTRAINT_NOT_SATISFIED = -22,
184 LV1_ALIGNMENT_ERROR = -23,
185 LV1_INTERNAL_ERROR = -32768,
186};
187
188static inline const char* ps3_result(int result)
189{
190#if defined(DEBUG)
191 switch (result) {
192 case LV1_SUCCESS:
193 return "LV1_SUCCESS (0)";
194 case -1:
195 return "** unknown result ** (-1)";
196 case LV1_RESOURCE_SHORTAGE:
197 return "LV1_RESOURCE_SHORTAGE (-2)";
198 case LV1_NO_PRIVILEGE:
199 return "LV1_NO_PRIVILEGE (-3)";
200 case LV1_DENIED_BY_POLICY:
201 return "LV1_DENIED_BY_POLICY (-4)";
202 case LV1_ACCESS_VIOLATION:
203 return "LV1_ACCESS_VIOLATION (-5)";
204 case LV1_NO_ENTRY:
205 return "LV1_NO_ENTRY (-6)";
206 case LV1_DUPLICATE_ENTRY:
207 return "LV1_DUPLICATE_ENTRY (-7)";
208 case LV1_TYPE_MISMATCH:
209 return "LV1_TYPE_MISMATCH (-8)";
210 case LV1_BUSY:
211 return "LV1_BUSY (-9)";
212 case LV1_EMPTY:
213 return "LV1_EMPTY (-10)";
214 case LV1_WRONG_STATE:
215 return "LV1_WRONG_STATE (-11)";
216 case -12:
217 return "** unknown result ** (-12)";
218 case LV1_NO_MATCH:
219 return "LV1_NO_MATCH (-13)";
220 case LV1_ALREADY_CONNECTED:
221 return "LV1_ALREADY_CONNECTED (-14)";
222 case LV1_UNSUPPORTED_PARAMETER_VALUE:
223 return "LV1_UNSUPPORTED_PARAMETER_VALUE (-15)";
224 case LV1_CONDITION_NOT_SATISFIED:
225 return "LV1_CONDITION_NOT_SATISFIED (-16)";
226 case LV1_ILLEGAL_PARAMETER_VALUE:
227 return "LV1_ILLEGAL_PARAMETER_VALUE (-17)";
228 case LV1_BAD_OPTION:
229 return "LV1_BAD_OPTION (-18)";
230 case LV1_IMPLEMENTATION_LIMITATION:
231 return "LV1_IMPLEMENTATION_LIMITATION (-19)";
232 case LV1_NOT_IMPLEMENTED:
233 return "LV1_NOT_IMPLEMENTED (-20)";
234 case LV1_INVALID_CLASS_ID:
235 return "LV1_INVALID_CLASS_ID (-21)";
236 case LV1_CONSTRAINT_NOT_SATISFIED:
237 return "LV1_CONSTRAINT_NOT_SATISFIED (-22)";
238 case LV1_ALIGNMENT_ERROR:
239 return "LV1_ALIGNMENT_ERROR (-23)";
240 case LV1_INTERNAL_ERROR:
241 return "LV1_INTERNAL_ERROR (-32768)";
242 default:
243 BUG();
244 return "** unknown result **";
245 };
246#else
247 return "";
248#endif
249}
250
Geoff Levand6e74b382006-11-23 00:46:55 +0100251/* repository bus info */
252
253enum ps3_bus_type {
254 PS3_BUS_TYPE_SB = 4,
255 PS3_BUS_TYPE_STORAGE = 5,
256};
257
258enum ps3_dev_type {
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800259 PS3_DEV_TYPE_STOR_DISK = TYPE_DISK, /* 0 */
Geoff Levand6e74b382006-11-23 00:46:55 +0100260 PS3_DEV_TYPE_SB_GELIC = 3,
261 PS3_DEV_TYPE_SB_USB = 4,
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800262 PS3_DEV_TYPE_STOR_ROM = TYPE_ROM, /* 5 */
Geoff Levand6e74b382006-11-23 00:46:55 +0100263 PS3_DEV_TYPE_SB_GPIO = 6,
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800264 PS3_DEV_TYPE_STOR_FLASH = TYPE_RBC, /* 14 */
Geoff Levand6e74b382006-11-23 00:46:55 +0100265};
266
267int ps3_repository_read_bus_str(unsigned int bus_index, const char *bus_str,
268 u64 *value);
269int ps3_repository_read_bus_id(unsigned int bus_index, unsigned int *bus_id);
270int ps3_repository_read_bus_type(unsigned int bus_index,
271 enum ps3_bus_type *bus_type);
272int ps3_repository_read_bus_num_dev(unsigned int bus_index,
273 unsigned int *num_dev);
274
275/* repository bus device info */
276
277enum ps3_interrupt_type {
278 PS3_INTERRUPT_TYPE_EVENT_PORT = 2,
279 PS3_INTERRUPT_TYPE_SB_OHCI = 3,
280 PS3_INTERRUPT_TYPE_SB_EHCI = 4,
281 PS3_INTERRUPT_TYPE_OTHER = 5,
282};
283
Geoff Levandeebb81c2007-01-26 19:07:47 -0800284enum ps3_reg_type {
285 PS3_REG_TYPE_SB_OHCI = 3,
286 PS3_REG_TYPE_SB_EHCI = 4,
287 PS3_REG_TYPE_SB_GPIO = 5,
Geoff Levand6e74b382006-11-23 00:46:55 +0100288};
289
290int ps3_repository_read_dev_str(unsigned int bus_index,
291 unsigned int dev_index, const char *dev_str, u64 *value);
292int ps3_repository_read_dev_id(unsigned int bus_index, unsigned int dev_index,
293 unsigned int *dev_id);
294int ps3_repository_read_dev_type(unsigned int bus_index,
295 unsigned int dev_index, enum ps3_dev_type *dev_type);
296int ps3_repository_read_dev_intr(unsigned int bus_index,
297 unsigned int dev_index, unsigned int intr_index,
298 enum ps3_interrupt_type *intr_type, unsigned int *interrupt_id);
299int ps3_repository_read_dev_reg_type(unsigned int bus_index,
300 unsigned int dev_index, unsigned int reg_index,
Geoff Levandeebb81c2007-01-26 19:07:47 -0800301 enum ps3_reg_type *reg_type);
Geoff Levand6e74b382006-11-23 00:46:55 +0100302int ps3_repository_read_dev_reg_addr(unsigned int bus_index,
303 unsigned int dev_index, unsigned int reg_index, u64 *bus_addr,
304 u64 *len);
305int ps3_repository_read_dev_reg(unsigned int bus_index,
306 unsigned int dev_index, unsigned int reg_index,
Geoff Levandeebb81c2007-01-26 19:07:47 -0800307 enum ps3_reg_type *reg_type, u64 *bus_addr, u64 *len);
Geoff Levand6e74b382006-11-23 00:46:55 +0100308
309/* repository bus enumerators */
310
311struct ps3_repository_device {
312 unsigned int bus_index;
313 unsigned int dev_index;
314 struct ps3_device_id did;
315};
316
317int ps3_repository_find_device(enum ps3_bus_type bus_type,
318 enum ps3_dev_type dev_type,
319 const struct ps3_repository_device *start_dev,
320 struct ps3_repository_device *dev);
321static inline int ps3_repository_find_first_device(
322 enum ps3_bus_type bus_type, enum ps3_dev_type dev_type,
323 struct ps3_repository_device *dev)
324{
325 return ps3_repository_find_device(bus_type, dev_type, NULL, dev);
326}
327int ps3_repository_find_interrupt(const struct ps3_repository_device *dev,
328 enum ps3_interrupt_type intr_type, unsigned int *interrupt_id);
Geoff Levandeebb81c2007-01-26 19:07:47 -0800329int ps3_repository_find_reg(const struct ps3_repository_device *dev,
330 enum ps3_reg_type reg_type, u64 *bus_addr, u64 *len);
Geoff Levand6e74b382006-11-23 00:46:55 +0100331
332/* repository block device info */
333
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800334int ps3_repository_read_stor_dev_port(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100335 unsigned int dev_index, u64 *port);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800336int ps3_repository_read_stor_dev_blk_size(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100337 unsigned int dev_index, u64 *blk_size);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800338int ps3_repository_read_stor_dev_num_blocks(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100339 unsigned int dev_index, u64 *num_blocks);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800340int ps3_repository_read_stor_dev_num_regions(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100341 unsigned int dev_index, unsigned int *num_regions);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800342int ps3_repository_read_stor_dev_region_id(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100343 unsigned int dev_index, unsigned int region_index,
344 unsigned int *region_id);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800345int ps3_repository_read_stor_dev_region_size(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100346 unsigned int dev_index, unsigned int region_index, u64 *region_size);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800347int ps3_repository_read_stor_dev_region_start(unsigned int bus_index,
Geoff Levand6e74b382006-11-23 00:46:55 +0100348 unsigned int dev_index, unsigned int region_index, u64 *region_start);
Geert Uytterhoeven6c7be7d2007-01-26 19:07:51 -0800349int ps3_repository_read_stor_dev_info(unsigned int bus_index,
350 unsigned int dev_index, u64 *port, u64 *blk_size,
351 u64 *num_blocks, unsigned int *num_regions);
352int ps3_repository_read_stor_dev_region(unsigned int bus_index,
353 unsigned int dev_index, unsigned int region_index,
354 unsigned int *region_id, u64 *region_start, u64 *region_size);
Geoff Levand6e74b382006-11-23 00:46:55 +0100355
356/* repository pu and memory info */
357
358int ps3_repository_read_num_pu(unsigned int *num_pu);
359int ps3_repository_read_ppe_id(unsigned int *pu_index, unsigned int *ppe_id);
360int ps3_repository_read_rm_base(unsigned int ppe_id, u64 *rm_base);
361int ps3_repository_read_rm_size(unsigned int ppe_id, u64 *rm_size);
362int ps3_repository_read_region_total(u64 *region_total);
363int ps3_repository_read_mm_info(u64 *rm_base, u64 *rm_size,
364 u64 *region_total);
365
366/* repository pme info */
367
368int ps3_repository_read_num_be(unsigned int *num_be);
369int ps3_repository_read_be_node_id(unsigned int be_index, u64 *node_id);
370int ps3_repository_read_tb_freq(u64 node_id, u64 *tb_freq);
371int ps3_repository_read_be_tb_freq(unsigned int be_index, u64 *tb_freq);
372
373/* repository 'Other OS' area */
374
375int ps3_repository_read_boot_dat_addr(u64 *lpar_addr);
376int ps3_repository_read_boot_dat_size(unsigned int *size);
377int ps3_repository_read_boot_dat_info(u64 *lpar_addr, unsigned int *size);
378
379/* repository spu info */
380
381/**
382 * enum spu_resource_type - Type of spu resource.
383 * @spu_resource_type_shared: Logical spu is shared with other partions.
384 * @spu_resource_type_exclusive: Logical spu is not shared with other partions.
385 *
386 * Returned by ps3_repository_read_spu_resource_id().
387 */
388
389enum ps3_spu_resource_type {
390 PS3_SPU_RESOURCE_TYPE_SHARED = 0,
391 PS3_SPU_RESOURCE_TYPE_EXCLUSIVE = 0x8000000000000000UL,
392};
393
394int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved);
395int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id);
396int ps3_repository_read_spu_resource_id(unsigned int res_index,
397 enum ps3_spu_resource_type* resource_type, unsigned int *resource_id);
398
Geoff Levanda3d4d642006-11-23 00:47:00 +0100399
400/* system bus routines */
401
402enum ps3_match_id {
403 PS3_MATCH_ID_EHCI = 1,
404 PS3_MATCH_ID_OHCI,
405 PS3_MATCH_ID_GELIC,
406 PS3_MATCH_ID_AV_SETTINGS,
407 PS3_MATCH_ID_SYSTEM_MANAGER,
408};
409
410/**
411 * struct ps3_system_bus_device - a device on the system bus
412 */
413
414struct ps3_system_bus_device {
415 enum ps3_match_id match_id;
416 struct ps3_device_id did;
417 unsigned int interrupt_id;
418/* struct iommu_table *iommu_table; -- waiting for Ben's cleanups */
419 struct ps3_dma_region *d_region;
420 struct ps3_mmio_region *m_region;
421 struct device core;
422};
423
424/**
425 * struct ps3_system_bus_driver - a driver for a device on the system bus
426 */
427
428struct ps3_system_bus_driver {
429 enum ps3_match_id match_id;
430 struct device_driver core;
431 int (*probe)(struct ps3_system_bus_device *);
432 int (*remove)(struct ps3_system_bus_device *);
433/* int (*suspend)(struct ps3_system_bus_device *, pm_message_t); */
434/* int (*resume)(struct ps3_system_bus_device *); */
435};
436
437int ps3_system_bus_device_register(struct ps3_system_bus_device *dev);
438int ps3_system_bus_driver_register(struct ps3_system_bus_driver *drv);
439void ps3_system_bus_driver_unregister(struct ps3_system_bus_driver *drv);
440static inline struct ps3_system_bus_driver *to_ps3_system_bus_driver(
441 struct device_driver *_drv)
442{
443 return container_of(_drv, struct ps3_system_bus_driver, core);
444}
445static inline struct ps3_system_bus_device *to_ps3_system_bus_device(
446 struct device *_dev)
447{
448 return container_of(_dev, struct ps3_system_bus_device, core);
449}
450
451/**
452 * ps3_system_bus_set_drvdata -
453 * @dev: device structure
454 * @data: Data to set
455 */
456
457static inline void ps3_system_bus_set_driver_data(
458 struct ps3_system_bus_device *dev, void *data)
459{
460 dev->core.driver_data = data;
461}
462static inline void *ps3_system_bus_get_driver_data(
463 struct ps3_system_bus_device *dev)
464{
465 return dev->core.driver_data;
466}
467
468/* These two need global scope for get_dma_ops(). */
469
470extern struct bus_type ps3_system_bus_type;
471
Geoff Levandf58a9d12006-11-23 00:46:51 +0100472#endif