2 * PS3 repository routines.
4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 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 <asm/lv1call.h>
26 PS3_VENDOR_ID_NONE = 0,
27 PS3_VENDOR_ID_SONY = 0x8000000000000000UL,
31 PS3_LPAR_ID_CURRENT = 0,
35 #define dump_field(_a, _b) _dump_field(_a, _b, __func__, __LINE__)
36 static void _dump_field(const char *hdr, u64 n, const char* func, int line)
40 const char *const in = (const char *)&n;
43 for (i = 0; i < 8; i++)
44 s[i] = (in[i] <= 126 && in[i] >= 32) ? in[i] : '.';
47 pr_debug("%s:%d: %s%016lx : %s\n", func, line, hdr, n, s);
51 #define dump_node_name(_a, _b, _c, _d, _e) \
52 _dump_node_name(_a, _b, _c, _d, _e, __func__, __LINE__)
53 static void _dump_node_name (unsigned int lpar_id, u64 n1, u64 n2, u64 n3,
54 u64 n4, const char* func, int line)
56 pr_debug("%s:%d: lpar: %u\n", func, line, lpar_id);
57 _dump_field("n1: ", n1, func, line);
58 _dump_field("n2: ", n2, func, line);
59 _dump_field("n3: ", n3, func, line);
60 _dump_field("n4: ", n4, func, line);
63 #define dump_node(_a, _b, _c, _d, _e, _f, _g) \
64 _dump_node(_a, _b, _c, _d, _e, _f, _g, __func__, __LINE__)
65 static void _dump_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4,
66 u64 v1, u64 v2, const char* func, int line)
68 pr_debug("%s:%d: lpar: %u\n", func, line, lpar_id);
69 _dump_field("n1: ", n1, func, line);
70 _dump_field("n2: ", n2, func, line);
71 _dump_field("n3: ", n3, func, line);
72 _dump_field("n4: ", n4, func, line);
73 pr_debug("%s:%d: v1: %016lx\n", func, line, v1);
74 pr_debug("%s:%d: v2: %016lx\n", func, line, v2);
78 * make_first_field - Make the first field of a repository node name.
79 * @text: Text portion of the field.
80 * @index: Numeric index portion of the field. Use zero for 'don't care'.
82 * This routine sets the vendor id to zero (non-vendor specific).
83 * Returns field value.
86 static u64 make_first_field(const char *text, u64 index)
90 strncpy((char *)&n, text, 8);
91 return PS3_VENDOR_ID_NONE + (n >> 32) + index;
95 * make_field - Make subsequent fields of a repository node name.
96 * @text: Text portion of the field. Use "" for 'don't care'.
97 * @index: Numeric index portion of the field. Use zero for 'don't care'.
99 * Returns field value.
102 static u64 make_field(const char *text, u64 index)
106 strncpy((char *)&n, text, 8);
111 * read_node - Read a repository node from raw fields.
112 * @n1: First field of node name.
113 * @n2: Second field of node name. Use zero for 'don't care'.
114 * @n3: Third field of node name. Use zero for 'don't care'.
115 * @n4: Fourth field of node name. Use zero for 'don't care'.
116 * @v1: First repository value (high word).
117 * @v2: Second repository value (low word). Optional parameter, use zero
121 static int read_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4,
128 if (lpar_id == PS3_LPAR_ID_CURRENT) {
130 lv1_get_logical_partition_id(&id);
134 result = lv1_get_repository_node_value(lpar_id, n1, n2, n3, n4, &v1,
138 pr_debug("%s:%d: lv1_get_repository_node_value failed: %s\n",
139 __func__, __LINE__, ps3_result(result));
140 dump_node_name(lpar_id, n1, n2, n3, n4);
144 dump_node(lpar_id, n1, n2, n3, n4, v1, v2);
152 pr_debug("%s:%d: warning: discarding non-zero v1: %016lx\n",
153 __func__, __LINE__, v1);
155 pr_debug("%s:%d: warning: discarding non-zero v2: %016lx\n",
156 __func__, __LINE__, v2);
161 int ps3_repository_read_bus_str(unsigned int bus_index, const char *bus_str,
164 return read_node(PS3_LPAR_ID_PME,
165 make_first_field("bus", bus_index),
166 make_field(bus_str, 0),
171 int ps3_repository_read_bus_id(unsigned int bus_index, unsigned int *bus_id)
177 result = read_node(PS3_LPAR_ID_PME,
178 make_first_field("bus", bus_index),
186 int ps3_repository_read_bus_type(unsigned int bus_index,
187 enum ps3_bus_type *bus_type)
192 result = read_node(PS3_LPAR_ID_PME,
193 make_first_field("bus", bus_index),
194 make_field("type", 0),
201 int ps3_repository_read_bus_num_dev(unsigned int bus_index,
202 unsigned int *num_dev)
207 result = read_node(PS3_LPAR_ID_PME,
208 make_first_field("bus", bus_index),
209 make_field("num_dev", 0),
216 int ps3_repository_read_dev_str(unsigned int bus_index,
217 unsigned int dev_index, const char *dev_str, u64 *value)
219 return read_node(PS3_LPAR_ID_PME,
220 make_first_field("bus", bus_index),
221 make_field("dev", dev_index),
222 make_field(dev_str, 0),
227 int ps3_repository_read_dev_id(unsigned int bus_index, unsigned int dev_index,
228 unsigned int *dev_id)
233 result = read_node(PS3_LPAR_ID_PME,
234 make_first_field("bus", bus_index),
235 make_field("dev", dev_index),
243 int ps3_repository_read_dev_type(unsigned int bus_index,
244 unsigned int dev_index, enum ps3_dev_type *dev_type)
249 result = read_node(PS3_LPAR_ID_PME,
250 make_first_field("bus", bus_index),
251 make_field("dev", dev_index),
252 make_field("type", 0),
259 int ps3_repository_read_dev_intr(unsigned int bus_index,
260 unsigned int dev_index, unsigned int intr_index,
261 enum ps3_interrupt_type *intr_type, unsigned int* interrupt_id)
267 result = read_node(PS3_LPAR_ID_PME,
268 make_first_field("bus", bus_index),
269 make_field("dev", dev_index),
270 make_field("intr", intr_index),
278 int ps3_repository_read_dev_reg_type(unsigned int bus_index,
279 unsigned int dev_index, unsigned int reg_index,
280 enum ps3_reg_type *reg_type)
285 result = read_node(PS3_LPAR_ID_PME,
286 make_first_field("bus", bus_index),
287 make_field("dev", dev_index),
288 make_field("reg", reg_index),
289 make_field("type", 0),
295 int ps3_repository_read_dev_reg_addr(unsigned int bus_index,
296 unsigned int dev_index, unsigned int reg_index, u64 *bus_addr, u64 *len)
298 return read_node(PS3_LPAR_ID_PME,
299 make_first_field("bus", bus_index),
300 make_field("dev", dev_index),
301 make_field("reg", reg_index),
302 make_field("data", 0),
306 int ps3_repository_read_dev_reg(unsigned int bus_index,
307 unsigned int dev_index, unsigned int reg_index,
308 enum ps3_reg_type *reg_type, u64 *bus_addr, u64 *len)
310 int result = ps3_repository_read_dev_reg_type(bus_index, dev_index,
311 reg_index, reg_type);
312 return result ? result
313 : ps3_repository_read_dev_reg_addr(bus_index, dev_index,
314 reg_index, bus_addr, len);
319 int ps3_repository_find_device(struct ps3_repository_device *repo)
322 struct ps3_repository_device tmp = *repo;
323 unsigned int num_dev;
325 BUG_ON(repo->bus_index > 10);
326 BUG_ON(repo->dev_index > 10);
328 result = ps3_repository_read_bus_num_dev(tmp.bus_index, &num_dev);
331 pr_debug("%s:%d read_bus_num_dev failed\n", __func__, __LINE__);
335 pr_debug("%s:%d: bus_type %u, bus_index %u, bus_id %u, num_dev %u\n",
336 __func__, __LINE__, tmp.bus_type, tmp.bus_index, tmp.bus_id,
339 if (tmp.dev_index >= num_dev) {
340 pr_debug("%s:%d: no device found\n", __func__, __LINE__);
344 result = ps3_repository_read_dev_type(tmp.bus_index, tmp.dev_index,
348 pr_debug("%s:%d read_dev_type failed\n", __func__, __LINE__);
352 result = ps3_repository_read_dev_id(tmp.bus_index, tmp.dev_index,
356 pr_debug("%s:%d ps3_repository_read_dev_id failed\n", __func__,
361 pr_debug("%s:%d: found: dev_type %u, dev_index %u, dev_id %u\n",
362 __func__, __LINE__, tmp.dev_type, tmp.dev_index, tmp.dev_id);
368 int __devinit ps3_repository_find_devices(enum ps3_bus_type bus_type,
369 int (*callback)(const struct ps3_repository_device *repo))
372 struct ps3_repository_device repo;
374 pr_debug(" -> %s:%d: find bus_type %u\n", __func__, __LINE__, bus_type);
376 for (repo.bus_index = 0; repo.bus_index < 10; repo.bus_index++) {
378 result = ps3_repository_read_bus_type(repo.bus_index,
382 pr_debug("%s:%d read_bus_type(%u) failed\n",
383 __func__, __LINE__, repo.bus_index);
387 if (repo.bus_type != bus_type) {
388 pr_debug("%s:%d: skip, bus_type %u\n", __func__,
389 __LINE__, repo.bus_type);
393 result = ps3_repository_read_bus_id(repo.bus_index,
397 pr_debug("%s:%d read_bus_id(%u) failed\n",
398 __func__, __LINE__, repo.bus_index);
402 for (repo.dev_index = 0; ; repo.dev_index++) {
403 result = ps3_repository_find_device(&repo);
405 if (result == -ENODEV) {
411 result = callback(&repo);
414 pr_debug("%s:%d: abort at callback\n", __func__,
422 pr_debug(" <- %s:%d\n", __func__, __LINE__);
426 int ps3_repository_find_bus(enum ps3_bus_type bus_type, unsigned int from,
427 unsigned int *bus_index)
430 enum ps3_bus_type type;
433 for (i = from; i < 10; i++) {
434 error = ps3_repository_read_bus_type(i, &type);
436 pr_debug("%s:%d read_bus_type failed\n",
438 *bus_index = UINT_MAX;
441 if (type == bus_type) {
446 *bus_index = UINT_MAX;
450 int ps3_repository_find_interrupt(const struct ps3_repository_device *repo,
451 enum ps3_interrupt_type intr_type, unsigned int *interrupt_id)
454 unsigned int res_index;
456 pr_debug("%s:%d: find intr_type %u\n", __func__, __LINE__, intr_type);
458 *interrupt_id = UINT_MAX;
460 for (res_index = 0; res_index < 10; res_index++) {
461 enum ps3_interrupt_type t;
464 result = ps3_repository_read_dev_intr(repo->bus_index,
465 repo->dev_index, res_index, &t, &id);
468 pr_debug("%s:%d read_dev_intr failed\n",
473 if (t == intr_type) {
482 pr_debug("%s:%d: found intr_type %u at res_index %u\n",
483 __func__, __LINE__, intr_type, res_index);
488 int ps3_repository_find_reg(const struct ps3_repository_device *repo,
489 enum ps3_reg_type reg_type, u64 *bus_addr, u64 *len)
492 unsigned int res_index;
494 pr_debug("%s:%d: find reg_type %u\n", __func__, __LINE__, reg_type);
496 *bus_addr = *len = 0;
498 for (res_index = 0; res_index < 10; res_index++) {
503 result = ps3_repository_read_dev_reg(repo->bus_index,
504 repo->dev_index, res_index, &t, &a, &l);
507 pr_debug("%s:%d read_dev_reg failed\n",
522 pr_debug("%s:%d: found reg_type %u at res_index %u\n",
523 __func__, __LINE__, reg_type, res_index);
528 int ps3_repository_read_stor_dev_port(unsigned int bus_index,
529 unsigned int dev_index, u64 *port)
531 return read_node(PS3_LPAR_ID_PME,
532 make_first_field("bus", bus_index),
533 make_field("dev", dev_index),
534 make_field("port", 0),
538 int ps3_repository_read_stor_dev_blk_size(unsigned int bus_index,
539 unsigned int dev_index, u64 *blk_size)
541 return read_node(PS3_LPAR_ID_PME,
542 make_first_field("bus", bus_index),
543 make_field("dev", dev_index),
544 make_field("blk_size", 0),
548 int ps3_repository_read_stor_dev_num_blocks(unsigned int bus_index,
549 unsigned int dev_index, u64 *num_blocks)
551 return read_node(PS3_LPAR_ID_PME,
552 make_first_field("bus", bus_index),
553 make_field("dev", dev_index),
554 make_field("n_blocks", 0),
558 int ps3_repository_read_stor_dev_num_regions(unsigned int bus_index,
559 unsigned int dev_index, unsigned int *num_regions)
564 result = read_node(PS3_LPAR_ID_PME,
565 make_first_field("bus", bus_index),
566 make_field("dev", dev_index),
567 make_field("n_regs", 0),
573 int ps3_repository_read_stor_dev_region_id(unsigned int bus_index,
574 unsigned int dev_index, unsigned int region_index,
575 unsigned int *region_id)
580 result = read_node(PS3_LPAR_ID_PME,
581 make_first_field("bus", bus_index),
582 make_field("dev", dev_index),
583 make_field("region", region_index),
590 int ps3_repository_read_stor_dev_region_size(unsigned int bus_index,
591 unsigned int dev_index, unsigned int region_index, u64 *region_size)
593 return read_node(PS3_LPAR_ID_PME,
594 make_first_field("bus", bus_index),
595 make_field("dev", dev_index),
596 make_field("region", region_index),
597 make_field("size", 0),
601 int ps3_repository_read_stor_dev_region_start(unsigned int bus_index,
602 unsigned int dev_index, unsigned int region_index, u64 *region_start)
604 return read_node(PS3_LPAR_ID_PME,
605 make_first_field("bus", bus_index),
606 make_field("dev", dev_index),
607 make_field("region", region_index),
608 make_field("start", 0),
612 int ps3_repository_read_stor_dev_info(unsigned int bus_index,
613 unsigned int dev_index, u64 *port, u64 *blk_size,
614 u64 *num_blocks, unsigned int *num_regions)
618 result = ps3_repository_read_stor_dev_port(bus_index, dev_index, port);
622 result = ps3_repository_read_stor_dev_blk_size(bus_index, dev_index,
627 result = ps3_repository_read_stor_dev_num_blocks(bus_index, dev_index,
632 result = ps3_repository_read_stor_dev_num_regions(bus_index, dev_index,
637 int ps3_repository_read_stor_dev_region(unsigned int bus_index,
638 unsigned int dev_index, unsigned int region_index,
639 unsigned int *region_id, u64 *region_start, u64 *region_size)
643 result = ps3_repository_read_stor_dev_region_id(bus_index, dev_index,
644 region_index, region_id);
648 result = ps3_repository_read_stor_dev_region_start(bus_index, dev_index,
649 region_index, region_start);
653 result = ps3_repository_read_stor_dev_region_size(bus_index, dev_index,
654 region_index, region_size);
658 int ps3_repository_read_rm_size(unsigned int ppe_id, u64 *rm_size)
660 return read_node(PS3_LPAR_ID_CURRENT,
661 make_first_field("bi", 0),
664 make_field("rm_size", 0),
668 int ps3_repository_read_region_total(u64 *region_total)
670 return read_node(PS3_LPAR_ID_CURRENT,
671 make_first_field("bi", 0),
672 make_field("rgntotal", 0),
678 * ps3_repository_read_mm_info - Read mm info for single pu system.
679 * @rm_base: Real mode memory base address.
680 * @rm_size: Real mode memory size.
681 * @region_total: Maximum memory region size.
684 int ps3_repository_read_mm_info(u64 *rm_base, u64 *rm_size, u64 *region_total)
689 lv1_get_logical_ppe_id(&ppe_id);
691 result = ps3_repository_read_rm_size(ppe_id, rm_size);
692 return result ? result
693 : ps3_repository_read_region_total(region_total);
697 * ps3_repository_read_num_spu_reserved - Number of physical spus reserved.
698 * @num_spu: Number of physical spus.
701 int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved)
706 result = read_node(PS3_LPAR_ID_CURRENT,
707 make_first_field("bi", 0),
708 make_field("spun", 0),
711 *num_spu_reserved = v1;
716 * ps3_repository_read_num_spu_resource_id - Number of spu resource reservations.
717 * @num_resource_id: Number of spu resource ids.
720 int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id)
725 result = read_node(PS3_LPAR_ID_CURRENT,
726 make_first_field("bi", 0),
727 make_field("spursvn", 0),
730 *num_resource_id = v1;
735 * ps3_repository_read_spu_resource_id - spu resource reservation id value.
736 * @res_index: Resource reservation index.
737 * @resource_type: Resource reservation type.
738 * @resource_id: Resource reservation id.
741 int ps3_repository_read_spu_resource_id(unsigned int res_index,
742 enum ps3_spu_resource_type* resource_type, unsigned int *resource_id)
748 result = read_node(PS3_LPAR_ID_CURRENT,
749 make_first_field("bi", 0),
750 make_field("spursv", 0),
759 int ps3_repository_read_boot_dat_address(u64 *address)
761 return read_node(PS3_LPAR_ID_CURRENT,
762 make_first_field("bi", 0),
763 make_field("boot_dat", 0),
764 make_field("address", 0),
769 int ps3_repository_read_boot_dat_size(unsigned int *size)
774 result = read_node(PS3_LPAR_ID_CURRENT,
775 make_first_field("bi", 0),
776 make_field("boot_dat", 0),
777 make_field("size", 0),
784 int ps3_repository_read_vuart_av_port(unsigned int *port)
789 result = read_node(PS3_LPAR_ID_CURRENT,
790 make_first_field("bi", 0),
791 make_field("vir_uart", 0),
792 make_field("port", 0),
793 make_field("avset", 0),
799 int ps3_repository_read_vuart_sysmgr_port(unsigned int *port)
804 result = read_node(PS3_LPAR_ID_CURRENT,
805 make_first_field("bi", 0),
806 make_field("vir_uart", 0),
807 make_field("port", 0),
808 make_field("sysmgr", 0),
815 * ps3_repository_read_boot_dat_info - Get address and size of cell_ext_os_area.
816 * address: lpar address of cell_ext_os_area
817 * @size: size of cell_ext_os_area
820 int ps3_repository_read_boot_dat_info(u64 *lpar_addr, unsigned int *size)
825 result = ps3_repository_read_boot_dat_address(lpar_addr);
826 return result ? result
827 : ps3_repository_read_boot_dat_size(size);
830 int ps3_repository_read_num_be(unsigned int *num_be)
835 result = read_node(PS3_LPAR_ID_PME,
836 make_first_field("ben", 0),
845 int ps3_repository_read_be_node_id(unsigned int be_index, u64 *node_id)
847 return read_node(PS3_LPAR_ID_PME,
848 make_first_field("be", be_index),
855 int ps3_repository_read_tb_freq(u64 node_id, u64 *tb_freq)
857 return read_node(PS3_LPAR_ID_PME,
858 make_first_field("be", 0),
860 make_field("clock", 0),
865 int ps3_repository_read_be_tb_freq(unsigned int be_index, u64 *tb_freq)
871 result = ps3_repository_read_be_node_id(0, &node_id);
872 return result ? result
873 : ps3_repository_read_tb_freq(node_id, tb_freq);
878 int ps3_repository_dump_resource_info(const struct ps3_repository_device *repo)
881 unsigned int res_index;
883 pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
884 repo->bus_index, repo->dev_index);
886 for (res_index = 0; res_index < 10; res_index++) {
887 enum ps3_interrupt_type intr_type;
888 unsigned int interrupt_id;
890 result = ps3_repository_read_dev_intr(repo->bus_index,
891 repo->dev_index, res_index, &intr_type, &interrupt_id);
894 if (result != LV1_NO_ENTRY)
895 pr_debug("%s:%d ps3_repository_read_dev_intr"
896 " (%u:%u) failed\n", __func__, __LINE__,
897 repo->bus_index, repo->dev_index);
901 pr_debug("%s:%d (%u:%u) intr_type %u, interrupt_id %u\n",
902 __func__, __LINE__, repo->bus_index, repo->dev_index,
903 intr_type, interrupt_id);
906 for (res_index = 0; res_index < 10; res_index++) {
907 enum ps3_reg_type reg_type;
911 result = ps3_repository_read_dev_reg(repo->bus_index,
912 repo->dev_index, res_index, ®_type, &bus_addr, &len);
915 if (result != LV1_NO_ENTRY)
916 pr_debug("%s:%d ps3_repository_read_dev_reg"
917 " (%u:%u) failed\n", __func__, __LINE__,
918 repo->bus_index, repo->dev_index);
922 pr_debug("%s:%d (%u:%u) reg_type %u, bus_addr %lxh, len %lxh\n",
923 __func__, __LINE__, repo->bus_index, repo->dev_index,
924 reg_type, bus_addr, len);
927 pr_debug(" <- %s:%d\n", __func__, __LINE__);
931 static int dump_stor_dev_info(struct ps3_repository_device *repo)
934 unsigned int num_regions, region_index;
935 u64 port, blk_size, num_blocks;
937 pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
938 repo->bus_index, repo->dev_index);
940 result = ps3_repository_read_stor_dev_info(repo->bus_index,
941 repo->dev_index, &port, &blk_size, &num_blocks, &num_regions);
943 pr_debug("%s:%d ps3_repository_read_stor_dev_info"
944 " (%u:%u) failed\n", __func__, __LINE__,
945 repo->bus_index, repo->dev_index);
949 pr_debug("%s:%d (%u:%u): port %lu, blk_size %lu, num_blocks "
950 "%lu, num_regions %u\n",
951 __func__, __LINE__, repo->bus_index, repo->dev_index, port,
952 blk_size, num_blocks, num_regions);
954 for (region_index = 0; region_index < num_regions; region_index++) {
955 unsigned int region_id;
956 u64 region_start, region_size;
958 result = ps3_repository_read_stor_dev_region(repo->bus_index,
959 repo->dev_index, region_index, ®ion_id,
960 ®ion_start, ®ion_size);
962 pr_debug("%s:%d ps3_repository_read_stor_dev_region"
963 " (%u:%u) failed\n", __func__, __LINE__,
964 repo->bus_index, repo->dev_index);
968 pr_debug("%s:%d (%u:%u) region_id %u, start %lxh, size %lxh\n",
969 __func__, __LINE__, repo->bus_index, repo->dev_index,
970 region_id, region_start, region_size);
974 pr_debug(" <- %s:%d\n", __func__, __LINE__);
978 static int dump_device_info(struct ps3_repository_device *repo,
979 unsigned int num_dev)
983 pr_debug(" -> %s:%d: bus_%u\n", __func__, __LINE__, repo->bus_index);
985 for (repo->dev_index = 0; repo->dev_index < num_dev;
988 result = ps3_repository_read_dev_type(repo->bus_index,
989 repo->dev_index, &repo->dev_type);
992 pr_debug("%s:%d ps3_repository_read_dev_type"
993 " (%u:%u) failed\n", __func__, __LINE__,
994 repo->bus_index, repo->dev_index);
998 result = ps3_repository_read_dev_id(repo->bus_index,
999 repo->dev_index, &repo->dev_id);
1002 pr_debug("%s:%d ps3_repository_read_dev_id"
1003 " (%u:%u) failed\n", __func__, __LINE__,
1004 repo->bus_index, repo->dev_index);
1008 pr_debug("%s:%d (%u:%u): dev_type %u, dev_id %u\n", __func__,
1009 __LINE__, repo->bus_index, repo->dev_index,
1010 repo->dev_type, repo->dev_id);
1012 ps3_repository_dump_resource_info(repo);
1014 if (repo->bus_type == PS3_BUS_TYPE_STORAGE)
1015 dump_stor_dev_info(repo);
1018 pr_debug(" <- %s:%d\n", __func__, __LINE__);
1022 int ps3_repository_dump_bus_info(void)
1025 struct ps3_repository_device repo;
1027 pr_debug(" -> %s:%d\n", __func__, __LINE__);
1029 memset(&repo, 0, sizeof(repo));
1031 for (repo.bus_index = 0; repo.bus_index < 10; repo.bus_index++) {
1032 unsigned int num_dev;
1034 result = ps3_repository_read_bus_type(repo.bus_index,
1038 pr_debug("%s:%d read_bus_type(%u) failed\n",
1039 __func__, __LINE__, repo.bus_index);
1043 result = ps3_repository_read_bus_id(repo.bus_index,
1047 pr_debug("%s:%d read_bus_id(%u) failed\n",
1048 __func__, __LINE__, repo.bus_index);
1052 if (repo.bus_index != repo.bus_id)
1053 pr_debug("%s:%d bus_index != bus_id\n",
1054 __func__, __LINE__);
1056 result = ps3_repository_read_bus_num_dev(repo.bus_index,
1060 pr_debug("%s:%d read_bus_num_dev(%u) failed\n",
1061 __func__, __LINE__, repo.bus_index);
1065 pr_debug("%s:%d bus_%u: bus_type %u, bus_id %u, num_dev %u\n",
1066 __func__, __LINE__, repo.bus_index, repo.bus_type,
1067 repo.bus_id, num_dev);
1069 dump_device_info(&repo, num_dev);
1072 pr_debug(" <- %s:%d\n", __func__, __LINE__);
1076 #endif /* defined(DEBUG) */