repository.c 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177
  1. /*
  2. * PS3 repository routines.
  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. #include <asm/lv1call.h>
  21. #include "platform.h"
  22. enum ps3_vendor_id {
  23. PS3_VENDOR_ID_NONE = 0,
  24. PS3_VENDOR_ID_SONY = 0x8000000000000000UL,
  25. };
  26. enum ps3_lpar_id {
  27. PS3_LPAR_ID_CURRENT = 0,
  28. PS3_LPAR_ID_PME = 1,
  29. };
  30. #define dump_field(_a, _b) _dump_field(_a, _b, __func__, __LINE__)
  31. static void _dump_field(const char *hdr, u64 n, const char* func, int line)
  32. {
  33. #if defined(DEBUG)
  34. char s[16];
  35. const char *const in = (const char *)&n;
  36. unsigned int i;
  37. for (i = 0; i < 8; i++)
  38. s[i] = (in[i] <= 126 && in[i] >= 32) ? in[i] : '.';
  39. s[i] = 0;
  40. pr_debug("%s:%d: %s%016lx : %s\n", func, line, hdr, n, s);
  41. #endif
  42. }
  43. #define dump_node_name(_a, _b, _c, _d, _e) \
  44. _dump_node_name(_a, _b, _c, _d, _e, __func__, __LINE__)
  45. static void _dump_node_name (unsigned int lpar_id, u64 n1, u64 n2, u64 n3,
  46. u64 n4, const char* func, int line)
  47. {
  48. pr_debug("%s:%d: lpar: %u\n", func, line, lpar_id);
  49. _dump_field("n1: ", n1, func, line);
  50. _dump_field("n2: ", n2, func, line);
  51. _dump_field("n3: ", n3, func, line);
  52. _dump_field("n4: ", n4, func, line);
  53. }
  54. #define dump_node(_a, _b, _c, _d, _e, _f, _g) \
  55. _dump_node(_a, _b, _c, _d, _e, _f, _g, __func__, __LINE__)
  56. static void _dump_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4,
  57. u64 v1, u64 v2, const char* func, int line)
  58. {
  59. pr_debug("%s:%d: lpar: %u\n", func, line, lpar_id);
  60. _dump_field("n1: ", n1, func, line);
  61. _dump_field("n2: ", n2, func, line);
  62. _dump_field("n3: ", n3, func, line);
  63. _dump_field("n4: ", n4, func, line);
  64. pr_debug("%s:%d: v1: %016lx\n", func, line, v1);
  65. pr_debug("%s:%d: v2: %016lx\n", func, line, v2);
  66. }
  67. /**
  68. * make_first_field - Make the first field of a repository node name.
  69. * @text: Text portion of the field.
  70. * @index: Numeric index portion of the field. Use zero for 'don't care'.
  71. *
  72. * This routine sets the vendor id to zero (non-vendor specific).
  73. * Returns field value.
  74. */
  75. static u64 make_first_field(const char *text, u64 index)
  76. {
  77. u64 n;
  78. strncpy((char *)&n, text, 8);
  79. return PS3_VENDOR_ID_NONE + (n >> 32) + index;
  80. }
  81. /**
  82. * make_field - Make subsequent fields of a repository node name.
  83. * @text: Text portion of the field. Use "" for 'don't care'.
  84. * @index: Numeric index portion of the field. Use zero for 'don't care'.
  85. *
  86. * Returns field value.
  87. */
  88. static u64 make_field(const char *text, u64 index)
  89. {
  90. u64 n;
  91. strncpy((char *)&n, text, 8);
  92. return n + index;
  93. }
  94. /**
  95. * read_node - Read a repository node from raw fields.
  96. * @n1: First field of node name.
  97. * @n2: Second field of node name. Use zero for 'don't care'.
  98. * @n3: Third field of node name. Use zero for 'don't care'.
  99. * @n4: Fourth field of node name. Use zero for 'don't care'.
  100. * @v1: First repository value (high word).
  101. * @v2: Second repository value (low word). Optional parameter, use zero
  102. * for 'don't care'.
  103. */
  104. static int read_node(unsigned int lpar_id, u64 n1, u64 n2, u64 n3, u64 n4,
  105. u64 *_v1, u64 *_v2)
  106. {
  107. int result;
  108. u64 v1;
  109. u64 v2;
  110. if (lpar_id == PS3_LPAR_ID_CURRENT) {
  111. u64 id;
  112. lv1_get_logical_partition_id(&id);
  113. lpar_id = id;
  114. }
  115. result = lv1_get_repository_node_value(lpar_id, n1, n2, n3, n4, &v1,
  116. &v2);
  117. if (result) {
  118. pr_debug("%s:%d: lv1_get_repository_node_value failed: %s\n",
  119. __func__, __LINE__, ps3_result(result));
  120. dump_node_name(lpar_id, n1, n2, n3, n4);
  121. return -ENOENT;
  122. }
  123. dump_node(lpar_id, n1, n2, n3, n4, v1, v2);
  124. if (_v1)
  125. *_v1 = v1;
  126. if (_v2)
  127. *_v2 = v2;
  128. if (v1 && !_v1)
  129. pr_debug("%s:%d: warning: discarding non-zero v1: %016lx\n",
  130. __func__, __LINE__, v1);
  131. if (v2 && !_v2)
  132. pr_debug("%s:%d: warning: discarding non-zero v2: %016lx\n",
  133. __func__, __LINE__, v2);
  134. return 0;
  135. }
  136. int ps3_repository_read_bus_str(unsigned int bus_index, const char *bus_str,
  137. u64 *value)
  138. {
  139. return read_node(PS3_LPAR_ID_PME,
  140. make_first_field("bus", bus_index),
  141. make_field(bus_str, 0),
  142. 0, 0,
  143. value, 0);
  144. }
  145. int ps3_repository_read_bus_id(unsigned int bus_index, u64 *bus_id)
  146. {
  147. int result;
  148. result = read_node(PS3_LPAR_ID_PME,
  149. make_first_field("bus", bus_index),
  150. make_field("id", 0),
  151. 0, 0,
  152. bus_id, NULL);
  153. return result;
  154. }
  155. int ps3_repository_read_bus_type(unsigned int bus_index,
  156. enum ps3_bus_type *bus_type)
  157. {
  158. int result;
  159. u64 v1;
  160. result = read_node(PS3_LPAR_ID_PME,
  161. make_first_field("bus", bus_index),
  162. make_field("type", 0),
  163. 0, 0,
  164. &v1, 0);
  165. *bus_type = v1;
  166. return result;
  167. }
  168. int ps3_repository_read_bus_num_dev(unsigned int bus_index,
  169. unsigned int *num_dev)
  170. {
  171. int result;
  172. u64 v1;
  173. result = read_node(PS3_LPAR_ID_PME,
  174. make_first_field("bus", bus_index),
  175. make_field("num_dev", 0),
  176. 0, 0,
  177. &v1, 0);
  178. *num_dev = v1;
  179. return result;
  180. }
  181. int ps3_repository_read_dev_str(unsigned int bus_index,
  182. unsigned int dev_index, const char *dev_str, u64 *value)
  183. {
  184. return read_node(PS3_LPAR_ID_PME,
  185. make_first_field("bus", bus_index),
  186. make_field("dev", dev_index),
  187. make_field(dev_str, 0),
  188. 0,
  189. value, 0);
  190. }
  191. int ps3_repository_read_dev_id(unsigned int bus_index, unsigned int dev_index,
  192. u64 *dev_id)
  193. {
  194. int result;
  195. result = read_node(PS3_LPAR_ID_PME,
  196. make_first_field("bus", bus_index),
  197. make_field("dev", dev_index),
  198. make_field("id", 0),
  199. 0,
  200. dev_id, 0);
  201. return result;
  202. }
  203. int ps3_repository_read_dev_type(unsigned int bus_index,
  204. unsigned int dev_index, enum ps3_dev_type *dev_type)
  205. {
  206. int result;
  207. u64 v1;
  208. result = read_node(PS3_LPAR_ID_PME,
  209. make_first_field("bus", bus_index),
  210. make_field("dev", dev_index),
  211. make_field("type", 0),
  212. 0,
  213. &v1, 0);
  214. *dev_type = v1;
  215. return result;
  216. }
  217. int ps3_repository_read_dev_intr(unsigned int bus_index,
  218. unsigned int dev_index, unsigned int intr_index,
  219. enum ps3_interrupt_type *intr_type, unsigned int* interrupt_id)
  220. {
  221. int result;
  222. u64 v1;
  223. u64 v2;
  224. result = read_node(PS3_LPAR_ID_PME,
  225. make_first_field("bus", bus_index),
  226. make_field("dev", dev_index),
  227. make_field("intr", intr_index),
  228. 0,
  229. &v1, &v2);
  230. *intr_type = v1;
  231. *interrupt_id = v2;
  232. return result;
  233. }
  234. int ps3_repository_read_dev_reg_type(unsigned int bus_index,
  235. unsigned int dev_index, unsigned int reg_index,
  236. enum ps3_reg_type *reg_type)
  237. {
  238. int result;
  239. u64 v1;
  240. result = read_node(PS3_LPAR_ID_PME,
  241. make_first_field("bus", bus_index),
  242. make_field("dev", dev_index),
  243. make_field("reg", reg_index),
  244. make_field("type", 0),
  245. &v1, 0);
  246. *reg_type = v1;
  247. return result;
  248. }
  249. int ps3_repository_read_dev_reg_addr(unsigned int bus_index,
  250. unsigned int dev_index, unsigned int reg_index, u64 *bus_addr, u64 *len)
  251. {
  252. return read_node(PS3_LPAR_ID_PME,
  253. make_first_field("bus", bus_index),
  254. make_field("dev", dev_index),
  255. make_field("reg", reg_index),
  256. make_field("data", 0),
  257. bus_addr, len);
  258. }
  259. int ps3_repository_read_dev_reg(unsigned int bus_index,
  260. unsigned int dev_index, unsigned int reg_index,
  261. enum ps3_reg_type *reg_type, u64 *bus_addr, u64 *len)
  262. {
  263. int result = ps3_repository_read_dev_reg_type(bus_index, dev_index,
  264. reg_index, reg_type);
  265. return result ? result
  266. : ps3_repository_read_dev_reg_addr(bus_index, dev_index,
  267. reg_index, bus_addr, len);
  268. }
  269. int ps3_repository_find_device(struct ps3_repository_device *repo)
  270. {
  271. int result;
  272. struct ps3_repository_device tmp = *repo;
  273. unsigned int num_dev;
  274. BUG_ON(repo->bus_index > 10);
  275. BUG_ON(repo->dev_index > 10);
  276. result = ps3_repository_read_bus_num_dev(tmp.bus_index, &num_dev);
  277. if (result) {
  278. pr_debug("%s:%d read_bus_num_dev failed\n", __func__, __LINE__);
  279. return result;
  280. }
  281. pr_debug("%s:%d: bus_type %u, bus_index %u, bus_id %lu, num_dev %u\n",
  282. __func__, __LINE__, tmp.bus_type, tmp.bus_index, tmp.bus_id,
  283. num_dev);
  284. if (tmp.dev_index >= num_dev) {
  285. pr_debug("%s:%d: no device found\n", __func__, __LINE__);
  286. return -ENODEV;
  287. }
  288. result = ps3_repository_read_dev_type(tmp.bus_index, tmp.dev_index,
  289. &tmp.dev_type);
  290. if (result) {
  291. pr_debug("%s:%d read_dev_type failed\n", __func__, __LINE__);
  292. return result;
  293. }
  294. if (tmp.bus_type == PS3_BUS_TYPE_STORAGE) {
  295. /*
  296. * A storage device may show up in the repository before the
  297. * hypervisor has finished probing its type and regions
  298. */
  299. unsigned int num_regions;
  300. if (tmp.dev_type == PS3_DEV_TYPE_STOR_DUMMY) {
  301. pr_debug("%s:%u storage device not ready\n", __func__,
  302. __LINE__);
  303. return -ENODEV;
  304. }
  305. result = ps3_repository_read_stor_dev_num_regions(tmp.bus_index,
  306. tmp.dev_index,
  307. &num_regions);
  308. if (result) {
  309. pr_debug("%s:%d read_stor_dev_num_regions failed\n",
  310. __func__, __LINE__);
  311. return result;
  312. }
  313. if (!num_regions) {
  314. pr_debug("%s:%u storage device has no regions yet\n",
  315. __func__, __LINE__);
  316. return -ENODEV;
  317. }
  318. }
  319. result = ps3_repository_read_dev_id(tmp.bus_index, tmp.dev_index,
  320. &tmp.dev_id);
  321. if (result) {
  322. pr_debug("%s:%d ps3_repository_read_dev_id failed\n", __func__,
  323. __LINE__);
  324. return result;
  325. }
  326. pr_debug("%s:%d: found: dev_type %u, dev_index %u, dev_id %lu\n",
  327. __func__, __LINE__, tmp.dev_type, tmp.dev_index, tmp.dev_id);
  328. *repo = tmp;
  329. return 0;
  330. }
  331. int ps3_repository_find_device_by_id(struct ps3_repository_device *repo,
  332. u64 bus_id, u64 dev_id)
  333. {
  334. int result = -ENODEV;
  335. struct ps3_repository_device tmp;
  336. unsigned int num_dev;
  337. pr_debug(" -> %s:%u: find device by id %lu:%lu\n", __func__, __LINE__,
  338. bus_id, dev_id);
  339. for (tmp.bus_index = 0; tmp.bus_index < 10; tmp.bus_index++) {
  340. result = ps3_repository_read_bus_id(tmp.bus_index,
  341. &tmp.bus_id);
  342. if (result) {
  343. pr_debug("%s:%u read_bus_id(%u) failed\n", __func__,
  344. __LINE__, tmp.bus_index);
  345. return result;
  346. }
  347. if (tmp.bus_id == bus_id)
  348. goto found_bus;
  349. pr_debug("%s:%u: skip, bus_id %lu\n", __func__, __LINE__,
  350. tmp.bus_id);
  351. }
  352. pr_debug(" <- %s:%u: bus not found\n", __func__, __LINE__);
  353. return result;
  354. found_bus:
  355. result = ps3_repository_read_bus_type(tmp.bus_index, &tmp.bus_type);
  356. if (result) {
  357. pr_debug("%s:%u read_bus_type(%u) failed\n", __func__,
  358. __LINE__, tmp.bus_index);
  359. return result;
  360. }
  361. result = ps3_repository_read_bus_num_dev(tmp.bus_index, &num_dev);
  362. if (result) {
  363. pr_debug("%s:%u read_bus_num_dev failed\n", __func__,
  364. __LINE__);
  365. return result;
  366. }
  367. for (tmp.dev_index = 0; tmp.dev_index < num_dev; tmp.dev_index++) {
  368. result = ps3_repository_read_dev_id(tmp.bus_index,
  369. tmp.dev_index,
  370. &tmp.dev_id);
  371. if (result) {
  372. pr_debug("%s:%u read_dev_id(%u:%u) failed\n", __func__,
  373. __LINE__, tmp.bus_index, tmp.dev_index);
  374. return result;
  375. }
  376. if (tmp.dev_id == dev_id)
  377. goto found_dev;
  378. pr_debug("%s:%u: skip, dev_id %lu\n", __func__, __LINE__,
  379. tmp.dev_id);
  380. }
  381. pr_debug(" <- %s:%u: dev not found\n", __func__, __LINE__);
  382. return result;
  383. found_dev:
  384. result = ps3_repository_read_dev_type(tmp.bus_index, tmp.dev_index,
  385. &tmp.dev_type);
  386. if (result) {
  387. pr_debug("%s:%u read_dev_type failed\n", __func__, __LINE__);
  388. return result;
  389. }
  390. pr_debug(" <- %s:%u: found: type (%u:%u) index (%u:%u) id (%lu:%lu)\n",
  391. __func__, __LINE__, tmp.bus_type, tmp.dev_type, tmp.bus_index,
  392. tmp.dev_index, tmp.bus_id, tmp.dev_id);
  393. *repo = tmp;
  394. return 0;
  395. }
  396. int __devinit ps3_repository_find_devices(enum ps3_bus_type bus_type,
  397. int (*callback)(const struct ps3_repository_device *repo))
  398. {
  399. int result = 0;
  400. struct ps3_repository_device repo;
  401. pr_debug(" -> %s:%d: find bus_type %u\n", __func__, __LINE__, bus_type);
  402. for (repo.bus_index = 0; repo.bus_index < 10; repo.bus_index++) {
  403. result = ps3_repository_read_bus_type(repo.bus_index,
  404. &repo.bus_type);
  405. if (result) {
  406. pr_debug("%s:%d read_bus_type(%u) failed\n",
  407. __func__, __LINE__, repo.bus_index);
  408. break;
  409. }
  410. if (repo.bus_type != bus_type) {
  411. pr_debug("%s:%d: skip, bus_type %u\n", __func__,
  412. __LINE__, repo.bus_type);
  413. continue;
  414. }
  415. result = ps3_repository_read_bus_id(repo.bus_index,
  416. &repo.bus_id);
  417. if (result) {
  418. pr_debug("%s:%d read_bus_id(%u) failed\n",
  419. __func__, __LINE__, repo.bus_index);
  420. continue;
  421. }
  422. for (repo.dev_index = 0; ; repo.dev_index++) {
  423. result = ps3_repository_find_device(&repo);
  424. if (result == -ENODEV) {
  425. result = 0;
  426. break;
  427. } else if (result)
  428. break;
  429. result = callback(&repo);
  430. if (result) {
  431. pr_debug("%s:%d: abort at callback\n", __func__,
  432. __LINE__);
  433. break;
  434. }
  435. }
  436. break;
  437. }
  438. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  439. return result;
  440. }
  441. int ps3_repository_find_bus(enum ps3_bus_type bus_type, unsigned int from,
  442. unsigned int *bus_index)
  443. {
  444. unsigned int i;
  445. enum ps3_bus_type type;
  446. int error;
  447. for (i = from; i < 10; i++) {
  448. error = ps3_repository_read_bus_type(i, &type);
  449. if (error) {
  450. pr_debug("%s:%d read_bus_type failed\n",
  451. __func__, __LINE__);
  452. *bus_index = UINT_MAX;
  453. return error;
  454. }
  455. if (type == bus_type) {
  456. *bus_index = i;
  457. return 0;
  458. }
  459. }
  460. *bus_index = UINT_MAX;
  461. return -ENODEV;
  462. }
  463. int ps3_repository_find_interrupt(const struct ps3_repository_device *repo,
  464. enum ps3_interrupt_type intr_type, unsigned int *interrupt_id)
  465. {
  466. int result = 0;
  467. unsigned int res_index;
  468. pr_debug("%s:%d: find intr_type %u\n", __func__, __LINE__, intr_type);
  469. *interrupt_id = UINT_MAX;
  470. for (res_index = 0; res_index < 10; res_index++) {
  471. enum ps3_interrupt_type t;
  472. unsigned int id;
  473. result = ps3_repository_read_dev_intr(repo->bus_index,
  474. repo->dev_index, res_index, &t, &id);
  475. if (result) {
  476. pr_debug("%s:%d read_dev_intr failed\n",
  477. __func__, __LINE__);
  478. return result;
  479. }
  480. if (t == intr_type) {
  481. *interrupt_id = id;
  482. break;
  483. }
  484. }
  485. if (res_index == 10)
  486. return -ENODEV;
  487. pr_debug("%s:%d: found intr_type %u at res_index %u\n",
  488. __func__, __LINE__, intr_type, res_index);
  489. return result;
  490. }
  491. int ps3_repository_find_reg(const struct ps3_repository_device *repo,
  492. enum ps3_reg_type reg_type, u64 *bus_addr, u64 *len)
  493. {
  494. int result = 0;
  495. unsigned int res_index;
  496. pr_debug("%s:%d: find reg_type %u\n", __func__, __LINE__, reg_type);
  497. *bus_addr = *len = 0;
  498. for (res_index = 0; res_index < 10; res_index++) {
  499. enum ps3_reg_type t;
  500. u64 a;
  501. u64 l;
  502. result = ps3_repository_read_dev_reg(repo->bus_index,
  503. repo->dev_index, res_index, &t, &a, &l);
  504. if (result) {
  505. pr_debug("%s:%d read_dev_reg failed\n",
  506. __func__, __LINE__);
  507. return result;
  508. }
  509. if (t == reg_type) {
  510. *bus_addr = a;
  511. *len = l;
  512. break;
  513. }
  514. }
  515. if (res_index == 10)
  516. return -ENODEV;
  517. pr_debug("%s:%d: found reg_type %u at res_index %u\n",
  518. __func__, __LINE__, reg_type, res_index);
  519. return result;
  520. }
  521. int ps3_repository_read_stor_dev_port(unsigned int bus_index,
  522. unsigned int dev_index, u64 *port)
  523. {
  524. return read_node(PS3_LPAR_ID_PME,
  525. make_first_field("bus", bus_index),
  526. make_field("dev", dev_index),
  527. make_field("port", 0),
  528. 0, port, 0);
  529. }
  530. int ps3_repository_read_stor_dev_blk_size(unsigned int bus_index,
  531. unsigned int dev_index, u64 *blk_size)
  532. {
  533. return read_node(PS3_LPAR_ID_PME,
  534. make_first_field("bus", bus_index),
  535. make_field("dev", dev_index),
  536. make_field("blk_size", 0),
  537. 0, blk_size, 0);
  538. }
  539. int ps3_repository_read_stor_dev_num_blocks(unsigned int bus_index,
  540. unsigned int dev_index, u64 *num_blocks)
  541. {
  542. return read_node(PS3_LPAR_ID_PME,
  543. make_first_field("bus", bus_index),
  544. make_field("dev", dev_index),
  545. make_field("n_blocks", 0),
  546. 0, num_blocks, 0);
  547. }
  548. int ps3_repository_read_stor_dev_num_regions(unsigned int bus_index,
  549. unsigned int dev_index, unsigned int *num_regions)
  550. {
  551. int result;
  552. u64 v1;
  553. result = read_node(PS3_LPAR_ID_PME,
  554. make_first_field("bus", bus_index),
  555. make_field("dev", dev_index),
  556. make_field("n_regs", 0),
  557. 0, &v1, 0);
  558. *num_regions = v1;
  559. return result;
  560. }
  561. int ps3_repository_read_stor_dev_region_id(unsigned int bus_index,
  562. unsigned int dev_index, unsigned int region_index,
  563. unsigned int *region_id)
  564. {
  565. int result;
  566. u64 v1;
  567. result = read_node(PS3_LPAR_ID_PME,
  568. make_first_field("bus", bus_index),
  569. make_field("dev", dev_index),
  570. make_field("region", region_index),
  571. make_field("id", 0),
  572. &v1, 0);
  573. *region_id = v1;
  574. return result;
  575. }
  576. int ps3_repository_read_stor_dev_region_size(unsigned int bus_index,
  577. unsigned int dev_index, unsigned int region_index, u64 *region_size)
  578. {
  579. return read_node(PS3_LPAR_ID_PME,
  580. make_first_field("bus", bus_index),
  581. make_field("dev", dev_index),
  582. make_field("region", region_index),
  583. make_field("size", 0),
  584. region_size, 0);
  585. }
  586. int ps3_repository_read_stor_dev_region_start(unsigned int bus_index,
  587. unsigned int dev_index, unsigned int region_index, u64 *region_start)
  588. {
  589. return read_node(PS3_LPAR_ID_PME,
  590. make_first_field("bus", bus_index),
  591. make_field("dev", dev_index),
  592. make_field("region", region_index),
  593. make_field("start", 0),
  594. region_start, 0);
  595. }
  596. int ps3_repository_read_stor_dev_info(unsigned int bus_index,
  597. unsigned int dev_index, u64 *port, u64 *blk_size,
  598. u64 *num_blocks, unsigned int *num_regions)
  599. {
  600. int result;
  601. result = ps3_repository_read_stor_dev_port(bus_index, dev_index, port);
  602. if (result)
  603. return result;
  604. result = ps3_repository_read_stor_dev_blk_size(bus_index, dev_index,
  605. blk_size);
  606. if (result)
  607. return result;
  608. result = ps3_repository_read_stor_dev_num_blocks(bus_index, dev_index,
  609. num_blocks);
  610. if (result)
  611. return result;
  612. result = ps3_repository_read_stor_dev_num_regions(bus_index, dev_index,
  613. num_regions);
  614. return result;
  615. }
  616. int ps3_repository_read_stor_dev_region(unsigned int bus_index,
  617. unsigned int dev_index, unsigned int region_index,
  618. unsigned int *region_id, u64 *region_start, u64 *region_size)
  619. {
  620. int result;
  621. result = ps3_repository_read_stor_dev_region_id(bus_index, dev_index,
  622. region_index, region_id);
  623. if (result)
  624. return result;
  625. result = ps3_repository_read_stor_dev_region_start(bus_index, dev_index,
  626. region_index, region_start);
  627. if (result)
  628. return result;
  629. result = ps3_repository_read_stor_dev_region_size(bus_index, dev_index,
  630. region_index, region_size);
  631. return result;
  632. }
  633. int ps3_repository_read_rm_size(unsigned int ppe_id, u64 *rm_size)
  634. {
  635. return read_node(PS3_LPAR_ID_CURRENT,
  636. make_first_field("bi", 0),
  637. make_field("pu", 0),
  638. ppe_id,
  639. make_field("rm_size", 0),
  640. rm_size, 0);
  641. }
  642. int ps3_repository_read_region_total(u64 *region_total)
  643. {
  644. return read_node(PS3_LPAR_ID_CURRENT,
  645. make_first_field("bi", 0),
  646. make_field("rgntotal", 0),
  647. 0, 0,
  648. region_total, 0);
  649. }
  650. /**
  651. * ps3_repository_read_mm_info - Read mm info for single pu system.
  652. * @rm_base: Real mode memory base address.
  653. * @rm_size: Real mode memory size.
  654. * @region_total: Maximum memory region size.
  655. */
  656. int ps3_repository_read_mm_info(u64 *rm_base, u64 *rm_size, u64 *region_total)
  657. {
  658. int result;
  659. u64 ppe_id;
  660. lv1_get_logical_ppe_id(&ppe_id);
  661. *rm_base = 0;
  662. result = ps3_repository_read_rm_size(ppe_id, rm_size);
  663. return result ? result
  664. : ps3_repository_read_region_total(region_total);
  665. }
  666. /**
  667. * ps3_repository_read_num_spu_reserved - Number of physical spus reserved.
  668. * @num_spu: Number of physical spus.
  669. */
  670. int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved)
  671. {
  672. int result;
  673. u64 v1;
  674. result = read_node(PS3_LPAR_ID_CURRENT,
  675. make_first_field("bi", 0),
  676. make_field("spun", 0),
  677. 0, 0,
  678. &v1, 0);
  679. *num_spu_reserved = v1;
  680. return result;
  681. }
  682. /**
  683. * ps3_repository_read_num_spu_resource_id - Number of spu resource reservations.
  684. * @num_resource_id: Number of spu resource ids.
  685. */
  686. int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id)
  687. {
  688. int result;
  689. u64 v1;
  690. result = read_node(PS3_LPAR_ID_CURRENT,
  691. make_first_field("bi", 0),
  692. make_field("spursvn", 0),
  693. 0, 0,
  694. &v1, 0);
  695. *num_resource_id = v1;
  696. return result;
  697. }
  698. /**
  699. * ps3_repository_read_spu_resource_id - spu resource reservation id value.
  700. * @res_index: Resource reservation index.
  701. * @resource_type: Resource reservation type.
  702. * @resource_id: Resource reservation id.
  703. */
  704. int ps3_repository_read_spu_resource_id(unsigned int res_index,
  705. enum ps3_spu_resource_type* resource_type, unsigned int *resource_id)
  706. {
  707. int result;
  708. u64 v1;
  709. u64 v2;
  710. result = read_node(PS3_LPAR_ID_CURRENT,
  711. make_first_field("bi", 0),
  712. make_field("spursv", 0),
  713. res_index,
  714. 0,
  715. &v1, &v2);
  716. *resource_type = v1;
  717. *resource_id = v2;
  718. return result;
  719. }
  720. int ps3_repository_read_boot_dat_address(u64 *address)
  721. {
  722. return read_node(PS3_LPAR_ID_CURRENT,
  723. make_first_field("bi", 0),
  724. make_field("boot_dat", 0),
  725. make_field("address", 0),
  726. 0,
  727. address, 0);
  728. }
  729. int ps3_repository_read_boot_dat_size(unsigned int *size)
  730. {
  731. int result;
  732. u64 v1;
  733. result = read_node(PS3_LPAR_ID_CURRENT,
  734. make_first_field("bi", 0),
  735. make_field("boot_dat", 0),
  736. make_field("size", 0),
  737. 0,
  738. &v1, 0);
  739. *size = v1;
  740. return result;
  741. }
  742. int ps3_repository_read_vuart_av_port(unsigned int *port)
  743. {
  744. int result;
  745. u64 v1;
  746. result = read_node(PS3_LPAR_ID_CURRENT,
  747. make_first_field("bi", 0),
  748. make_field("vir_uart", 0),
  749. make_field("port", 0),
  750. make_field("avset", 0),
  751. &v1, 0);
  752. *port = v1;
  753. return result;
  754. }
  755. int ps3_repository_read_vuart_sysmgr_port(unsigned int *port)
  756. {
  757. int result;
  758. u64 v1;
  759. result = read_node(PS3_LPAR_ID_CURRENT,
  760. make_first_field("bi", 0),
  761. make_field("vir_uart", 0),
  762. make_field("port", 0),
  763. make_field("sysmgr", 0),
  764. &v1, 0);
  765. *port = v1;
  766. return result;
  767. }
  768. /**
  769. * ps3_repository_read_boot_dat_info - Get address and size of cell_ext_os_area.
  770. * address: lpar address of cell_ext_os_area
  771. * @size: size of cell_ext_os_area
  772. */
  773. int ps3_repository_read_boot_dat_info(u64 *lpar_addr, unsigned int *size)
  774. {
  775. int result;
  776. *size = 0;
  777. result = ps3_repository_read_boot_dat_address(lpar_addr);
  778. return result ? result
  779. : ps3_repository_read_boot_dat_size(size);
  780. }
  781. int ps3_repository_read_num_be(unsigned int *num_be)
  782. {
  783. int result;
  784. u64 v1;
  785. result = read_node(PS3_LPAR_ID_PME,
  786. make_first_field("ben", 0),
  787. 0,
  788. 0,
  789. 0,
  790. &v1, 0);
  791. *num_be = v1;
  792. return result;
  793. }
  794. int ps3_repository_read_be_node_id(unsigned int be_index, u64 *node_id)
  795. {
  796. return read_node(PS3_LPAR_ID_PME,
  797. make_first_field("be", be_index),
  798. 0,
  799. 0,
  800. 0,
  801. node_id, 0);
  802. }
  803. int ps3_repository_read_tb_freq(u64 node_id, u64 *tb_freq)
  804. {
  805. return read_node(PS3_LPAR_ID_PME,
  806. make_first_field("be", 0),
  807. node_id,
  808. make_field("clock", 0),
  809. 0,
  810. tb_freq, 0);
  811. }
  812. int ps3_repository_read_be_tb_freq(unsigned int be_index, u64 *tb_freq)
  813. {
  814. int result;
  815. u64 node_id;
  816. *tb_freq = 0;
  817. result = ps3_repository_read_be_node_id(0, &node_id);
  818. return result ? result
  819. : ps3_repository_read_tb_freq(node_id, tb_freq);
  820. }
  821. #if defined(DEBUG)
  822. int ps3_repository_dump_resource_info(const struct ps3_repository_device *repo)
  823. {
  824. int result = 0;
  825. unsigned int res_index;
  826. pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
  827. repo->bus_index, repo->dev_index);
  828. for (res_index = 0; res_index < 10; res_index++) {
  829. enum ps3_interrupt_type intr_type;
  830. unsigned int interrupt_id;
  831. result = ps3_repository_read_dev_intr(repo->bus_index,
  832. repo->dev_index, res_index, &intr_type, &interrupt_id);
  833. if (result) {
  834. if (result != LV1_NO_ENTRY)
  835. pr_debug("%s:%d ps3_repository_read_dev_intr"
  836. " (%u:%u) failed\n", __func__, __LINE__,
  837. repo->bus_index, repo->dev_index);
  838. break;
  839. }
  840. pr_debug("%s:%d (%u:%u) intr_type %u, interrupt_id %u\n",
  841. __func__, __LINE__, repo->bus_index, repo->dev_index,
  842. intr_type, interrupt_id);
  843. }
  844. for (res_index = 0; res_index < 10; res_index++) {
  845. enum ps3_reg_type reg_type;
  846. u64 bus_addr;
  847. u64 len;
  848. result = ps3_repository_read_dev_reg(repo->bus_index,
  849. repo->dev_index, res_index, &reg_type, &bus_addr, &len);
  850. if (result) {
  851. if (result != LV1_NO_ENTRY)
  852. pr_debug("%s:%d ps3_repository_read_dev_reg"
  853. " (%u:%u) failed\n", __func__, __LINE__,
  854. repo->bus_index, repo->dev_index);
  855. break;
  856. }
  857. pr_debug("%s:%d (%u:%u) reg_type %u, bus_addr %lxh, len %lxh\n",
  858. __func__, __LINE__, repo->bus_index, repo->dev_index,
  859. reg_type, bus_addr, len);
  860. }
  861. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  862. return result;
  863. }
  864. static int dump_stor_dev_info(struct ps3_repository_device *repo)
  865. {
  866. int result = 0;
  867. unsigned int num_regions, region_index;
  868. u64 port, blk_size, num_blocks;
  869. pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
  870. repo->bus_index, repo->dev_index);
  871. result = ps3_repository_read_stor_dev_info(repo->bus_index,
  872. repo->dev_index, &port, &blk_size, &num_blocks, &num_regions);
  873. if (result) {
  874. pr_debug("%s:%d ps3_repository_read_stor_dev_info"
  875. " (%u:%u) failed\n", __func__, __LINE__,
  876. repo->bus_index, repo->dev_index);
  877. goto out;
  878. }
  879. pr_debug("%s:%d (%u:%u): port %lu, blk_size %lu, num_blocks "
  880. "%lu, num_regions %u\n",
  881. __func__, __LINE__, repo->bus_index, repo->dev_index, port,
  882. blk_size, num_blocks, num_regions);
  883. for (region_index = 0; region_index < num_regions; region_index++) {
  884. unsigned int region_id;
  885. u64 region_start, region_size;
  886. result = ps3_repository_read_stor_dev_region(repo->bus_index,
  887. repo->dev_index, region_index, &region_id,
  888. &region_start, &region_size);
  889. if (result) {
  890. pr_debug("%s:%d ps3_repository_read_stor_dev_region"
  891. " (%u:%u) failed\n", __func__, __LINE__,
  892. repo->bus_index, repo->dev_index);
  893. break;
  894. }
  895. pr_debug("%s:%d (%u:%u) region_id %u, start %lxh, size %lxh\n",
  896. __func__, __LINE__, repo->bus_index, repo->dev_index,
  897. region_id, region_start, region_size);
  898. }
  899. out:
  900. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  901. return result;
  902. }
  903. static int dump_device_info(struct ps3_repository_device *repo,
  904. unsigned int num_dev)
  905. {
  906. int result = 0;
  907. pr_debug(" -> %s:%d: bus_%u\n", __func__, __LINE__, repo->bus_index);
  908. for (repo->dev_index = 0; repo->dev_index < num_dev;
  909. repo->dev_index++) {
  910. result = ps3_repository_read_dev_type(repo->bus_index,
  911. repo->dev_index, &repo->dev_type);
  912. if (result) {
  913. pr_debug("%s:%d ps3_repository_read_dev_type"
  914. " (%u:%u) failed\n", __func__, __LINE__,
  915. repo->bus_index, repo->dev_index);
  916. break;
  917. }
  918. result = ps3_repository_read_dev_id(repo->bus_index,
  919. repo->dev_index, &repo->dev_id);
  920. if (result) {
  921. pr_debug("%s:%d ps3_repository_read_dev_id"
  922. " (%u:%u) failed\n", __func__, __LINE__,
  923. repo->bus_index, repo->dev_index);
  924. continue;
  925. }
  926. pr_debug("%s:%d (%u:%u): dev_type %u, dev_id %lu\n", __func__,
  927. __LINE__, repo->bus_index, repo->dev_index,
  928. repo->dev_type, repo->dev_id);
  929. ps3_repository_dump_resource_info(repo);
  930. if (repo->bus_type == PS3_BUS_TYPE_STORAGE)
  931. dump_stor_dev_info(repo);
  932. }
  933. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  934. return result;
  935. }
  936. int ps3_repository_dump_bus_info(void)
  937. {
  938. int result = 0;
  939. struct ps3_repository_device repo;
  940. pr_debug(" -> %s:%d\n", __func__, __LINE__);
  941. memset(&repo, 0, sizeof(repo));
  942. for (repo.bus_index = 0; repo.bus_index < 10; repo.bus_index++) {
  943. unsigned int num_dev;
  944. result = ps3_repository_read_bus_type(repo.bus_index,
  945. &repo.bus_type);
  946. if (result) {
  947. pr_debug("%s:%d read_bus_type(%u) failed\n",
  948. __func__, __LINE__, repo.bus_index);
  949. break;
  950. }
  951. result = ps3_repository_read_bus_id(repo.bus_index,
  952. &repo.bus_id);
  953. if (result) {
  954. pr_debug("%s:%d read_bus_id(%u) failed\n",
  955. __func__, __LINE__, repo.bus_index);
  956. continue;
  957. }
  958. if (repo.bus_index != repo.bus_id)
  959. pr_debug("%s:%d bus_index != bus_id\n",
  960. __func__, __LINE__);
  961. result = ps3_repository_read_bus_num_dev(repo.bus_index,
  962. &num_dev);
  963. if (result) {
  964. pr_debug("%s:%d read_bus_num_dev(%u) failed\n",
  965. __func__, __LINE__, repo.bus_index);
  966. continue;
  967. }
  968. pr_debug("%s:%d bus_%u: bus_type %u, bus_id %lu, num_dev %u\n",
  969. __func__, __LINE__, repo.bus_index, repo.bus_type,
  970. repo.bus_id, num_dev);
  971. dump_device_info(&repo, num_dev);
  972. }
  973. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  974. return result;
  975. }
  976. #endif /* defined(DEBUG) */