repository.c 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132
  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. result = ps3_repository_read_dev_id(tmp.bus_index, tmp.dev_index,
  295. &tmp.dev_id);
  296. if (result) {
  297. pr_debug("%s:%d ps3_repository_read_dev_id failed\n", __func__,
  298. __LINE__);
  299. return result;
  300. }
  301. pr_debug("%s:%d: found: dev_type %u, dev_index %u, dev_id %lu\n",
  302. __func__, __LINE__, tmp.dev_type, tmp.dev_index, tmp.dev_id);
  303. *repo = tmp;
  304. return 0;
  305. }
  306. int ps3_repository_find_device_by_id(struct ps3_repository_device *repo,
  307. u64 bus_id, u64 dev_id)
  308. {
  309. int result = -ENODEV;
  310. struct ps3_repository_device tmp;
  311. unsigned int num_dev;
  312. pr_debug(" -> %s:%u: find device by id %lu:%lu\n", __func__, __LINE__,
  313. bus_id, dev_id);
  314. for (tmp.bus_index = 0; tmp.bus_index < 10; tmp.bus_index++) {
  315. result = ps3_repository_read_bus_id(tmp.bus_index,
  316. &tmp.bus_id);
  317. if (result) {
  318. pr_debug("%s:%u read_bus_id(%u) failed\n", __func__,
  319. __LINE__, tmp.bus_index);
  320. return result;
  321. }
  322. if (tmp.bus_id == bus_id)
  323. goto found_bus;
  324. pr_debug("%s:%u: skip, bus_id %lu\n", __func__, __LINE__,
  325. tmp.bus_id);
  326. }
  327. pr_debug(" <- %s:%u: bus not found\n", __func__, __LINE__);
  328. return result;
  329. found_bus:
  330. result = ps3_repository_read_bus_type(tmp.bus_index, &tmp.bus_type);
  331. if (result) {
  332. pr_debug("%s:%u read_bus_type(%u) failed\n", __func__,
  333. __LINE__, tmp.bus_index);
  334. return result;
  335. }
  336. result = ps3_repository_read_bus_num_dev(tmp.bus_index, &num_dev);
  337. if (result) {
  338. pr_debug("%s:%u read_bus_num_dev failed\n", __func__,
  339. __LINE__);
  340. return result;
  341. }
  342. for (tmp.dev_index = 0; tmp.dev_index < num_dev; tmp.dev_index++) {
  343. result = ps3_repository_read_dev_id(tmp.bus_index,
  344. tmp.dev_index,
  345. &tmp.dev_id);
  346. if (result) {
  347. pr_debug("%s:%u read_dev_id(%u:%u) failed\n", __func__,
  348. __LINE__, tmp.bus_index, tmp.dev_index);
  349. return result;
  350. }
  351. if (tmp.dev_id == dev_id)
  352. goto found_dev;
  353. pr_debug("%s:%u: skip, dev_id %lu\n", __func__, __LINE__,
  354. tmp.dev_id);
  355. }
  356. pr_debug(" <- %s:%u: dev not found\n", __func__, __LINE__);
  357. return result;
  358. found_dev:
  359. result = ps3_repository_read_dev_type(tmp.bus_index, tmp.dev_index,
  360. &tmp.dev_type);
  361. if (result) {
  362. pr_debug("%s:%u read_dev_type failed\n", __func__, __LINE__);
  363. return result;
  364. }
  365. pr_debug(" <- %s:%u: found: type (%u:%u) index (%u:%u) id (%lu:%lu)\n",
  366. __func__, __LINE__, tmp.bus_type, tmp.dev_type, tmp.bus_index,
  367. tmp.dev_index, tmp.bus_id, tmp.dev_id);
  368. *repo = tmp;
  369. return 0;
  370. }
  371. int __devinit ps3_repository_find_devices(enum ps3_bus_type bus_type,
  372. int (*callback)(const struct ps3_repository_device *repo))
  373. {
  374. int result = 0;
  375. struct ps3_repository_device repo;
  376. pr_debug(" -> %s:%d: find bus_type %u\n", __func__, __LINE__, bus_type);
  377. repo.bus_type = bus_type;
  378. result = ps3_repository_find_bus(repo.bus_type, 0, &repo.bus_index);
  379. if (result) {
  380. pr_debug(" <- %s:%u: bus not found\n", __func__, __LINE__);
  381. return result;
  382. }
  383. result = ps3_repository_read_bus_id(repo.bus_index, &repo.bus_id);
  384. if (result) {
  385. pr_debug("%s:%d read_bus_id(%u) failed\n", __func__, __LINE__,
  386. repo.bus_index);
  387. return result;
  388. }
  389. for (repo.dev_index = 0; ; repo.dev_index++) {
  390. result = ps3_repository_find_device(&repo);
  391. if (result == -ENODEV) {
  392. result = 0;
  393. break;
  394. } else if (result)
  395. break;
  396. result = callback(&repo);
  397. if (result) {
  398. pr_debug("%s:%d: abort at callback\n", __func__,
  399. __LINE__);
  400. break;
  401. }
  402. }
  403. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  404. return result;
  405. }
  406. int ps3_repository_find_bus(enum ps3_bus_type bus_type, unsigned int from,
  407. unsigned int *bus_index)
  408. {
  409. unsigned int i;
  410. enum ps3_bus_type type;
  411. int error;
  412. for (i = from; i < 10; i++) {
  413. error = ps3_repository_read_bus_type(i, &type);
  414. if (error) {
  415. pr_debug("%s:%d read_bus_type failed\n",
  416. __func__, __LINE__);
  417. *bus_index = UINT_MAX;
  418. return error;
  419. }
  420. if (type == bus_type) {
  421. *bus_index = i;
  422. return 0;
  423. }
  424. }
  425. *bus_index = UINT_MAX;
  426. return -ENODEV;
  427. }
  428. int ps3_repository_find_interrupt(const struct ps3_repository_device *repo,
  429. enum ps3_interrupt_type intr_type, unsigned int *interrupt_id)
  430. {
  431. int result = 0;
  432. unsigned int res_index;
  433. pr_debug("%s:%d: find intr_type %u\n", __func__, __LINE__, intr_type);
  434. *interrupt_id = UINT_MAX;
  435. for (res_index = 0; res_index < 10; res_index++) {
  436. enum ps3_interrupt_type t;
  437. unsigned int id;
  438. result = ps3_repository_read_dev_intr(repo->bus_index,
  439. repo->dev_index, res_index, &t, &id);
  440. if (result) {
  441. pr_debug("%s:%d read_dev_intr failed\n",
  442. __func__, __LINE__);
  443. return result;
  444. }
  445. if (t == intr_type) {
  446. *interrupt_id = id;
  447. break;
  448. }
  449. }
  450. if (res_index == 10)
  451. return -ENODEV;
  452. pr_debug("%s:%d: found intr_type %u at res_index %u\n",
  453. __func__, __LINE__, intr_type, res_index);
  454. return result;
  455. }
  456. int ps3_repository_find_reg(const struct ps3_repository_device *repo,
  457. enum ps3_reg_type reg_type, u64 *bus_addr, u64 *len)
  458. {
  459. int result = 0;
  460. unsigned int res_index;
  461. pr_debug("%s:%d: find reg_type %u\n", __func__, __LINE__, reg_type);
  462. *bus_addr = *len = 0;
  463. for (res_index = 0; res_index < 10; res_index++) {
  464. enum ps3_reg_type t;
  465. u64 a;
  466. u64 l;
  467. result = ps3_repository_read_dev_reg(repo->bus_index,
  468. repo->dev_index, res_index, &t, &a, &l);
  469. if (result) {
  470. pr_debug("%s:%d read_dev_reg failed\n",
  471. __func__, __LINE__);
  472. return result;
  473. }
  474. if (t == reg_type) {
  475. *bus_addr = a;
  476. *len = l;
  477. break;
  478. }
  479. }
  480. if (res_index == 10)
  481. return -ENODEV;
  482. pr_debug("%s:%d: found reg_type %u at res_index %u\n",
  483. __func__, __LINE__, reg_type, res_index);
  484. return result;
  485. }
  486. int ps3_repository_read_stor_dev_port(unsigned int bus_index,
  487. unsigned int dev_index, u64 *port)
  488. {
  489. return read_node(PS3_LPAR_ID_PME,
  490. make_first_field("bus", bus_index),
  491. make_field("dev", dev_index),
  492. make_field("port", 0),
  493. 0, port, 0);
  494. }
  495. int ps3_repository_read_stor_dev_blk_size(unsigned int bus_index,
  496. unsigned int dev_index, u64 *blk_size)
  497. {
  498. return read_node(PS3_LPAR_ID_PME,
  499. make_first_field("bus", bus_index),
  500. make_field("dev", dev_index),
  501. make_field("blk_size", 0),
  502. 0, blk_size, 0);
  503. }
  504. int ps3_repository_read_stor_dev_num_blocks(unsigned int bus_index,
  505. unsigned int dev_index, u64 *num_blocks)
  506. {
  507. return read_node(PS3_LPAR_ID_PME,
  508. make_first_field("bus", bus_index),
  509. make_field("dev", dev_index),
  510. make_field("n_blocks", 0),
  511. 0, num_blocks, 0);
  512. }
  513. int ps3_repository_read_stor_dev_num_regions(unsigned int bus_index,
  514. unsigned int dev_index, unsigned int *num_regions)
  515. {
  516. int result;
  517. u64 v1;
  518. result = read_node(PS3_LPAR_ID_PME,
  519. make_first_field("bus", bus_index),
  520. make_field("dev", dev_index),
  521. make_field("n_regs", 0),
  522. 0, &v1, 0);
  523. *num_regions = v1;
  524. return result;
  525. }
  526. int ps3_repository_read_stor_dev_region_id(unsigned int bus_index,
  527. unsigned int dev_index, unsigned int region_index,
  528. unsigned int *region_id)
  529. {
  530. int result;
  531. u64 v1;
  532. result = read_node(PS3_LPAR_ID_PME,
  533. make_first_field("bus", bus_index),
  534. make_field("dev", dev_index),
  535. make_field("region", region_index),
  536. make_field("id", 0),
  537. &v1, 0);
  538. *region_id = v1;
  539. return result;
  540. }
  541. int ps3_repository_read_stor_dev_region_size(unsigned int bus_index,
  542. unsigned int dev_index, unsigned int region_index, u64 *region_size)
  543. {
  544. return read_node(PS3_LPAR_ID_PME,
  545. make_first_field("bus", bus_index),
  546. make_field("dev", dev_index),
  547. make_field("region", region_index),
  548. make_field("size", 0),
  549. region_size, 0);
  550. }
  551. int ps3_repository_read_stor_dev_region_start(unsigned int bus_index,
  552. unsigned int dev_index, unsigned int region_index, u64 *region_start)
  553. {
  554. return read_node(PS3_LPAR_ID_PME,
  555. make_first_field("bus", bus_index),
  556. make_field("dev", dev_index),
  557. make_field("region", region_index),
  558. make_field("start", 0),
  559. region_start, 0);
  560. }
  561. int ps3_repository_read_stor_dev_info(unsigned int bus_index,
  562. unsigned int dev_index, u64 *port, u64 *blk_size,
  563. u64 *num_blocks, unsigned int *num_regions)
  564. {
  565. int result;
  566. result = ps3_repository_read_stor_dev_port(bus_index, dev_index, port);
  567. if (result)
  568. return result;
  569. result = ps3_repository_read_stor_dev_blk_size(bus_index, dev_index,
  570. blk_size);
  571. if (result)
  572. return result;
  573. result = ps3_repository_read_stor_dev_num_blocks(bus_index, dev_index,
  574. num_blocks);
  575. if (result)
  576. return result;
  577. result = ps3_repository_read_stor_dev_num_regions(bus_index, dev_index,
  578. num_regions);
  579. return result;
  580. }
  581. int ps3_repository_read_stor_dev_region(unsigned int bus_index,
  582. unsigned int dev_index, unsigned int region_index,
  583. unsigned int *region_id, u64 *region_start, u64 *region_size)
  584. {
  585. int result;
  586. result = ps3_repository_read_stor_dev_region_id(bus_index, dev_index,
  587. region_index, region_id);
  588. if (result)
  589. return result;
  590. result = ps3_repository_read_stor_dev_region_start(bus_index, dev_index,
  591. region_index, region_start);
  592. if (result)
  593. return result;
  594. result = ps3_repository_read_stor_dev_region_size(bus_index, dev_index,
  595. region_index, region_size);
  596. return result;
  597. }
  598. int ps3_repository_read_rm_size(unsigned int ppe_id, u64 *rm_size)
  599. {
  600. return read_node(PS3_LPAR_ID_CURRENT,
  601. make_first_field("bi", 0),
  602. make_field("pu", 0),
  603. ppe_id,
  604. make_field("rm_size", 0),
  605. rm_size, 0);
  606. }
  607. int ps3_repository_read_region_total(u64 *region_total)
  608. {
  609. return read_node(PS3_LPAR_ID_CURRENT,
  610. make_first_field("bi", 0),
  611. make_field("rgntotal", 0),
  612. 0, 0,
  613. region_total, 0);
  614. }
  615. /**
  616. * ps3_repository_read_mm_info - Read mm info for single pu system.
  617. * @rm_base: Real mode memory base address.
  618. * @rm_size: Real mode memory size.
  619. * @region_total: Maximum memory region size.
  620. */
  621. int ps3_repository_read_mm_info(u64 *rm_base, u64 *rm_size, u64 *region_total)
  622. {
  623. int result;
  624. u64 ppe_id;
  625. lv1_get_logical_ppe_id(&ppe_id);
  626. *rm_base = 0;
  627. result = ps3_repository_read_rm_size(ppe_id, rm_size);
  628. return result ? result
  629. : ps3_repository_read_region_total(region_total);
  630. }
  631. /**
  632. * ps3_repository_read_num_spu_reserved - Number of physical spus reserved.
  633. * @num_spu: Number of physical spus.
  634. */
  635. int ps3_repository_read_num_spu_reserved(unsigned int *num_spu_reserved)
  636. {
  637. int result;
  638. u64 v1;
  639. result = read_node(PS3_LPAR_ID_CURRENT,
  640. make_first_field("bi", 0),
  641. make_field("spun", 0),
  642. 0, 0,
  643. &v1, 0);
  644. *num_spu_reserved = v1;
  645. return result;
  646. }
  647. /**
  648. * ps3_repository_read_num_spu_resource_id - Number of spu resource reservations.
  649. * @num_resource_id: Number of spu resource ids.
  650. */
  651. int ps3_repository_read_num_spu_resource_id(unsigned int *num_resource_id)
  652. {
  653. int result;
  654. u64 v1;
  655. result = read_node(PS3_LPAR_ID_CURRENT,
  656. make_first_field("bi", 0),
  657. make_field("spursvn", 0),
  658. 0, 0,
  659. &v1, 0);
  660. *num_resource_id = v1;
  661. return result;
  662. }
  663. /**
  664. * ps3_repository_read_spu_resource_id - spu resource reservation id value.
  665. * @res_index: Resource reservation index.
  666. * @resource_type: Resource reservation type.
  667. * @resource_id: Resource reservation id.
  668. */
  669. int ps3_repository_read_spu_resource_id(unsigned int res_index,
  670. enum ps3_spu_resource_type* resource_type, unsigned int *resource_id)
  671. {
  672. int result;
  673. u64 v1;
  674. u64 v2;
  675. result = read_node(PS3_LPAR_ID_CURRENT,
  676. make_first_field("bi", 0),
  677. make_field("spursv", 0),
  678. res_index,
  679. 0,
  680. &v1, &v2);
  681. *resource_type = v1;
  682. *resource_id = v2;
  683. return result;
  684. }
  685. int ps3_repository_read_boot_dat_address(u64 *address)
  686. {
  687. return read_node(PS3_LPAR_ID_CURRENT,
  688. make_first_field("bi", 0),
  689. make_field("boot_dat", 0),
  690. make_field("address", 0),
  691. 0,
  692. address, 0);
  693. }
  694. int ps3_repository_read_boot_dat_size(unsigned int *size)
  695. {
  696. int result;
  697. u64 v1;
  698. result = read_node(PS3_LPAR_ID_CURRENT,
  699. make_first_field("bi", 0),
  700. make_field("boot_dat", 0),
  701. make_field("size", 0),
  702. 0,
  703. &v1, 0);
  704. *size = v1;
  705. return result;
  706. }
  707. int ps3_repository_read_vuart_av_port(unsigned int *port)
  708. {
  709. int result;
  710. u64 v1;
  711. result = read_node(PS3_LPAR_ID_CURRENT,
  712. make_first_field("bi", 0),
  713. make_field("vir_uart", 0),
  714. make_field("port", 0),
  715. make_field("avset", 0),
  716. &v1, 0);
  717. *port = v1;
  718. return result;
  719. }
  720. int ps3_repository_read_vuart_sysmgr_port(unsigned int *port)
  721. {
  722. int result;
  723. u64 v1;
  724. result = read_node(PS3_LPAR_ID_CURRENT,
  725. make_first_field("bi", 0),
  726. make_field("vir_uart", 0),
  727. make_field("port", 0),
  728. make_field("sysmgr", 0),
  729. &v1, 0);
  730. *port = v1;
  731. return result;
  732. }
  733. /**
  734. * ps3_repository_read_boot_dat_info - Get address and size of cell_ext_os_area.
  735. * address: lpar address of cell_ext_os_area
  736. * @size: size of cell_ext_os_area
  737. */
  738. int ps3_repository_read_boot_dat_info(u64 *lpar_addr, unsigned int *size)
  739. {
  740. int result;
  741. *size = 0;
  742. result = ps3_repository_read_boot_dat_address(lpar_addr);
  743. return result ? result
  744. : ps3_repository_read_boot_dat_size(size);
  745. }
  746. int ps3_repository_read_num_be(unsigned int *num_be)
  747. {
  748. int result;
  749. u64 v1;
  750. result = read_node(PS3_LPAR_ID_PME,
  751. make_first_field("ben", 0),
  752. 0,
  753. 0,
  754. 0,
  755. &v1, 0);
  756. *num_be = v1;
  757. return result;
  758. }
  759. int ps3_repository_read_be_node_id(unsigned int be_index, u64 *node_id)
  760. {
  761. return read_node(PS3_LPAR_ID_PME,
  762. make_first_field("be", be_index),
  763. 0,
  764. 0,
  765. 0,
  766. node_id, 0);
  767. }
  768. int ps3_repository_read_tb_freq(u64 node_id, u64 *tb_freq)
  769. {
  770. return read_node(PS3_LPAR_ID_PME,
  771. make_first_field("be", 0),
  772. node_id,
  773. make_field("clock", 0),
  774. 0,
  775. tb_freq, 0);
  776. }
  777. int ps3_repository_read_be_tb_freq(unsigned int be_index, u64 *tb_freq)
  778. {
  779. int result;
  780. u64 node_id;
  781. *tb_freq = 0;
  782. result = ps3_repository_read_be_node_id(0, &node_id);
  783. return result ? result
  784. : ps3_repository_read_tb_freq(node_id, tb_freq);
  785. }
  786. #if defined(DEBUG)
  787. int ps3_repository_dump_resource_info(const struct ps3_repository_device *repo)
  788. {
  789. int result = 0;
  790. unsigned int res_index;
  791. pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
  792. repo->bus_index, repo->dev_index);
  793. for (res_index = 0; res_index < 10; res_index++) {
  794. enum ps3_interrupt_type intr_type;
  795. unsigned int interrupt_id;
  796. result = ps3_repository_read_dev_intr(repo->bus_index,
  797. repo->dev_index, res_index, &intr_type, &interrupt_id);
  798. if (result) {
  799. if (result != LV1_NO_ENTRY)
  800. pr_debug("%s:%d ps3_repository_read_dev_intr"
  801. " (%u:%u) failed\n", __func__, __LINE__,
  802. repo->bus_index, repo->dev_index);
  803. break;
  804. }
  805. pr_debug("%s:%d (%u:%u) intr_type %u, interrupt_id %u\n",
  806. __func__, __LINE__, repo->bus_index, repo->dev_index,
  807. intr_type, interrupt_id);
  808. }
  809. for (res_index = 0; res_index < 10; res_index++) {
  810. enum ps3_reg_type reg_type;
  811. u64 bus_addr;
  812. u64 len;
  813. result = ps3_repository_read_dev_reg(repo->bus_index,
  814. repo->dev_index, res_index, &reg_type, &bus_addr, &len);
  815. if (result) {
  816. if (result != LV1_NO_ENTRY)
  817. pr_debug("%s:%d ps3_repository_read_dev_reg"
  818. " (%u:%u) failed\n", __func__, __LINE__,
  819. repo->bus_index, repo->dev_index);
  820. break;
  821. }
  822. pr_debug("%s:%d (%u:%u) reg_type %u, bus_addr %lxh, len %lxh\n",
  823. __func__, __LINE__, repo->bus_index, repo->dev_index,
  824. reg_type, bus_addr, len);
  825. }
  826. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  827. return result;
  828. }
  829. static int dump_stor_dev_info(struct ps3_repository_device *repo)
  830. {
  831. int result = 0;
  832. unsigned int num_regions, region_index;
  833. u64 port, blk_size, num_blocks;
  834. pr_debug(" -> %s:%d: (%u:%u)\n", __func__, __LINE__,
  835. repo->bus_index, repo->dev_index);
  836. result = ps3_repository_read_stor_dev_info(repo->bus_index,
  837. repo->dev_index, &port, &blk_size, &num_blocks, &num_regions);
  838. if (result) {
  839. pr_debug("%s:%d ps3_repository_read_stor_dev_info"
  840. " (%u:%u) failed\n", __func__, __LINE__,
  841. repo->bus_index, repo->dev_index);
  842. goto out;
  843. }
  844. pr_debug("%s:%d (%u:%u): port %lu, blk_size %lu, num_blocks "
  845. "%lu, num_regions %u\n",
  846. __func__, __LINE__, repo->bus_index, repo->dev_index, port,
  847. blk_size, num_blocks, num_regions);
  848. for (region_index = 0; region_index < num_regions; region_index++) {
  849. unsigned int region_id;
  850. u64 region_start, region_size;
  851. result = ps3_repository_read_stor_dev_region(repo->bus_index,
  852. repo->dev_index, region_index, &region_id,
  853. &region_start, &region_size);
  854. if (result) {
  855. pr_debug("%s:%d ps3_repository_read_stor_dev_region"
  856. " (%u:%u) failed\n", __func__, __LINE__,
  857. repo->bus_index, repo->dev_index);
  858. break;
  859. }
  860. pr_debug("%s:%d (%u:%u) region_id %u, start %lxh, size %lxh\n",
  861. __func__, __LINE__, repo->bus_index, repo->dev_index,
  862. region_id, region_start, region_size);
  863. }
  864. out:
  865. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  866. return result;
  867. }
  868. static int dump_device_info(struct ps3_repository_device *repo,
  869. unsigned int num_dev)
  870. {
  871. int result = 0;
  872. pr_debug(" -> %s:%d: bus_%u\n", __func__, __LINE__, repo->bus_index);
  873. for (repo->dev_index = 0; repo->dev_index < num_dev;
  874. repo->dev_index++) {
  875. result = ps3_repository_read_dev_type(repo->bus_index,
  876. repo->dev_index, &repo->dev_type);
  877. if (result) {
  878. pr_debug("%s:%d ps3_repository_read_dev_type"
  879. " (%u:%u) failed\n", __func__, __LINE__,
  880. repo->bus_index, repo->dev_index);
  881. break;
  882. }
  883. result = ps3_repository_read_dev_id(repo->bus_index,
  884. repo->dev_index, &repo->dev_id);
  885. if (result) {
  886. pr_debug("%s:%d ps3_repository_read_dev_id"
  887. " (%u:%u) failed\n", __func__, __LINE__,
  888. repo->bus_index, repo->dev_index);
  889. continue;
  890. }
  891. pr_debug("%s:%d (%u:%u): dev_type %u, dev_id %lu\n", __func__,
  892. __LINE__, repo->bus_index, repo->dev_index,
  893. repo->dev_type, repo->dev_id);
  894. ps3_repository_dump_resource_info(repo);
  895. if (repo->bus_type == PS3_BUS_TYPE_STORAGE)
  896. dump_stor_dev_info(repo);
  897. }
  898. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  899. return result;
  900. }
  901. int ps3_repository_dump_bus_info(void)
  902. {
  903. int result = 0;
  904. struct ps3_repository_device repo;
  905. pr_debug(" -> %s:%d\n", __func__, __LINE__);
  906. memset(&repo, 0, sizeof(repo));
  907. for (repo.bus_index = 0; repo.bus_index < 10; repo.bus_index++) {
  908. unsigned int num_dev;
  909. result = ps3_repository_read_bus_type(repo.bus_index,
  910. &repo.bus_type);
  911. if (result) {
  912. pr_debug("%s:%d read_bus_type(%u) failed\n",
  913. __func__, __LINE__, repo.bus_index);
  914. break;
  915. }
  916. result = ps3_repository_read_bus_id(repo.bus_index,
  917. &repo.bus_id);
  918. if (result) {
  919. pr_debug("%s:%d read_bus_id(%u) failed\n",
  920. __func__, __LINE__, repo.bus_index);
  921. continue;
  922. }
  923. if (repo.bus_index != repo.bus_id)
  924. pr_debug("%s:%d bus_index != bus_id\n",
  925. __func__, __LINE__);
  926. result = ps3_repository_read_bus_num_dev(repo.bus_index,
  927. &num_dev);
  928. if (result) {
  929. pr_debug("%s:%d read_bus_num_dev(%u) failed\n",
  930. __func__, __LINE__, repo.bus_index);
  931. continue;
  932. }
  933. pr_debug("%s:%d bus_%u: bus_type %u, bus_id %lu, num_dev %u\n",
  934. __func__, __LINE__, repo.bus_index, repo.bus_type,
  935. repo.bus_id, num_dev);
  936. dump_device_info(&repo, num_dev);
  937. }
  938. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  939. return result;
  940. }
  941. #endif /* defined(DEBUG) */