os-area.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. /*
  2. * PS3 flash memory os area.
  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 <linux/kernel.h>
  21. #include <linux/io.h>
  22. #include <linux/workqueue.h>
  23. #include <linux/fs.h>
  24. #include <linux/syscalls.h>
  25. #include <linux/ctype.h>
  26. #include <linux/lmb.h>
  27. #include <linux/of.h>
  28. #include <asm/prom.h>
  29. #include "platform.h"
  30. enum {
  31. OS_AREA_SEGMENT_SIZE = 0X200,
  32. };
  33. enum os_area_ldr_format {
  34. HEADER_LDR_FORMAT_RAW = 0,
  35. HEADER_LDR_FORMAT_GZIP = 1,
  36. };
  37. #define OS_AREA_HEADER_MAGIC_NUM "cell_ext_os_area"
  38. /**
  39. * struct os_area_header - os area header segment.
  40. * @magic_num: Always 'cell_ext_os_area'.
  41. * @hdr_version: Header format version number.
  42. * @db_area_offset: Starting segment number of other os database area.
  43. * @ldr_area_offset: Starting segment number of bootloader image area.
  44. * @ldr_format: HEADER_LDR_FORMAT flag.
  45. * @ldr_size: Size of bootloader image in bytes.
  46. *
  47. * Note that the docs refer to area offsets. These are offsets in units of
  48. * segments from the start of the os area (top of the header). These are
  49. * better thought of as segment numbers. The os area of the os area is
  50. * reserved for the os image.
  51. */
  52. struct os_area_header {
  53. u8 magic_num[16];
  54. u32 hdr_version;
  55. u32 db_area_offset;
  56. u32 ldr_area_offset;
  57. u32 _reserved_1;
  58. u32 ldr_format;
  59. u32 ldr_size;
  60. u32 _reserved_2[6];
  61. };
  62. enum os_area_boot_flag {
  63. PARAM_BOOT_FLAG_GAME_OS = 0,
  64. PARAM_BOOT_FLAG_OTHER_OS = 1,
  65. };
  66. enum os_area_ctrl_button {
  67. PARAM_CTRL_BUTTON_O_IS_YES = 0,
  68. PARAM_CTRL_BUTTON_X_IS_YES = 1,
  69. };
  70. /**
  71. * struct os_area_params - os area params segment.
  72. * @boot_flag: User preference of operating system, PARAM_BOOT_FLAG flag.
  73. * @num_params: Number of params in this (params) segment.
  74. * @rtc_diff: Difference in seconds between 1970 and the ps3 rtc value.
  75. * @av_multi_out: User preference of AV output, PARAM_AV_MULTI_OUT flag.
  76. * @ctrl_button: User preference of controller button config, PARAM_CTRL_BUTTON
  77. * flag.
  78. * @static_ip_addr: User preference of static IP address.
  79. * @network_mask: User preference of static network mask.
  80. * @default_gateway: User preference of static default gateway.
  81. * @dns_primary: User preference of static primary dns server.
  82. * @dns_secondary: User preference of static secondary dns server.
  83. *
  84. * The ps3 rtc maintains a read-only value that approximates seconds since
  85. * 2000-01-01 00:00:00 UTC.
  86. *
  87. * User preference of zero for static_ip_addr means use dhcp.
  88. */
  89. struct os_area_params {
  90. u32 boot_flag;
  91. u32 _reserved_1[3];
  92. u32 num_params;
  93. u32 _reserved_2[3];
  94. /* param 0 */
  95. s64 rtc_diff;
  96. u8 av_multi_out;
  97. u8 ctrl_button;
  98. u8 _reserved_3[6];
  99. /* param 1 */
  100. u8 static_ip_addr[4];
  101. u8 network_mask[4];
  102. u8 default_gateway[4];
  103. u8 _reserved_4[4];
  104. /* param 2 */
  105. u8 dns_primary[4];
  106. u8 dns_secondary[4];
  107. u8 _reserved_5[8];
  108. };
  109. #define OS_AREA_DB_MAGIC_NUM "-db-"
  110. /**
  111. * struct os_area_db - Shared flash memory database.
  112. * @magic_num: Always '-db-'.
  113. * @version: os_area_db format version number.
  114. * @index_64: byte offset of the database id index for 64 bit variables.
  115. * @count_64: number of usable 64 bit index entries
  116. * @index_32: byte offset of the database id index for 32 bit variables.
  117. * @count_32: number of usable 32 bit index entries
  118. * @index_16: byte offset of the database id index for 16 bit variables.
  119. * @count_16: number of usable 16 bit index entries
  120. *
  121. * Flash rom storage for exclusive use by guests running in the other os lpar.
  122. * The current system configuration allocates 1K (two segments) for other os
  123. * use.
  124. */
  125. struct os_area_db {
  126. u8 magic_num[4];
  127. u16 version;
  128. u16 _reserved_1;
  129. u16 index_64;
  130. u16 count_64;
  131. u16 index_32;
  132. u16 count_32;
  133. u16 index_16;
  134. u16 count_16;
  135. u32 _reserved_2;
  136. u8 _db_data[1000];
  137. };
  138. /**
  139. * enum os_area_db_owner - Data owners.
  140. */
  141. enum os_area_db_owner {
  142. OS_AREA_DB_OWNER_ANY = -1,
  143. OS_AREA_DB_OWNER_NONE = 0,
  144. OS_AREA_DB_OWNER_PROTOTYPE = 1,
  145. OS_AREA_DB_OWNER_LINUX = 2,
  146. OS_AREA_DB_OWNER_PETITBOOT = 3,
  147. OS_AREA_DB_OWNER_MAX = 32,
  148. };
  149. enum os_area_db_key {
  150. OS_AREA_DB_KEY_ANY = -1,
  151. OS_AREA_DB_KEY_NONE = 0,
  152. OS_AREA_DB_KEY_RTC_DIFF = 1,
  153. OS_AREA_DB_KEY_VIDEO_MODE = 2,
  154. OS_AREA_DB_KEY_MAX = 8,
  155. };
  156. struct os_area_db_id {
  157. int owner;
  158. int key;
  159. };
  160. static const struct os_area_db_id os_area_db_id_empty = {
  161. .owner = OS_AREA_DB_OWNER_NONE,
  162. .key = OS_AREA_DB_KEY_NONE
  163. };
  164. static const struct os_area_db_id os_area_db_id_any = {
  165. .owner = OS_AREA_DB_OWNER_ANY,
  166. .key = OS_AREA_DB_KEY_ANY
  167. };
  168. static const struct os_area_db_id os_area_db_id_rtc_diff = {
  169. .owner = OS_AREA_DB_OWNER_LINUX,
  170. .key = OS_AREA_DB_KEY_RTC_DIFF
  171. };
  172. static const struct os_area_db_id os_area_db_id_video_mode = {
  173. .owner = OS_AREA_DB_OWNER_LINUX,
  174. .key = OS_AREA_DB_KEY_VIDEO_MODE
  175. };
  176. #define SECONDS_FROM_1970_TO_2000 946684800LL
  177. /**
  178. * struct saved_params - Static working copies of data from the PS3 'os area'.
  179. *
  180. * The order of preference we use for the rtc_diff source:
  181. * 1) The database value.
  182. * 2) The game os value.
  183. * 3) The number of seconds from 1970 to 2000.
  184. */
  185. struct saved_params {
  186. unsigned int valid;
  187. s64 rtc_diff;
  188. unsigned int av_multi_out;
  189. } static saved_params;
  190. static struct property property_rtc_diff = {
  191. .name = "linux,rtc_diff",
  192. .length = sizeof(saved_params.rtc_diff),
  193. .value = &saved_params.rtc_diff,
  194. };
  195. static struct property property_av_multi_out = {
  196. .name = "linux,av_multi_out",
  197. .length = sizeof(saved_params.av_multi_out),
  198. .value = &saved_params.av_multi_out,
  199. };
  200. static DEFINE_MUTEX(os_area_flash_mutex);
  201. static const struct ps3_os_area_flash_ops *os_area_flash_ops;
  202. void ps3_os_area_flash_register(const struct ps3_os_area_flash_ops *ops)
  203. {
  204. mutex_lock(&os_area_flash_mutex);
  205. os_area_flash_ops = ops;
  206. mutex_unlock(&os_area_flash_mutex);
  207. }
  208. EXPORT_SYMBOL_GPL(ps3_os_area_flash_register);
  209. static ssize_t os_area_flash_read(void *buf, size_t count, loff_t pos)
  210. {
  211. ssize_t res = -ENODEV;
  212. mutex_lock(&os_area_flash_mutex);
  213. if (os_area_flash_ops)
  214. res = os_area_flash_ops->read(buf, count, pos);
  215. mutex_unlock(&os_area_flash_mutex);
  216. return res;
  217. }
  218. static ssize_t os_area_flash_write(const void *buf, size_t count, loff_t pos)
  219. {
  220. ssize_t res = -ENODEV;
  221. mutex_lock(&os_area_flash_mutex);
  222. if (os_area_flash_ops)
  223. res = os_area_flash_ops->write(buf, count, pos);
  224. mutex_unlock(&os_area_flash_mutex);
  225. return res;
  226. }
  227. /**
  228. * os_area_set_property - Add or overwrite a saved_params value to the device tree.
  229. *
  230. * Overwrites an existing property.
  231. */
  232. static void os_area_set_property(struct device_node *node,
  233. struct property *prop)
  234. {
  235. int result;
  236. struct property *tmp = of_find_property(node, prop->name, NULL);
  237. if (tmp) {
  238. pr_debug("%s:%d found %s\n", __func__, __LINE__, prop->name);
  239. prom_remove_property(node, tmp);
  240. }
  241. result = prom_add_property(node, prop);
  242. if (result)
  243. pr_debug("%s:%d prom_set_property failed\n", __func__,
  244. __LINE__);
  245. }
  246. /**
  247. * os_area_get_property - Get a saved_params value from the device tree.
  248. *
  249. */
  250. static void __init os_area_get_property(struct device_node *node,
  251. struct property *prop)
  252. {
  253. const struct property *tmp = of_find_property(node, prop->name, NULL);
  254. if (tmp) {
  255. BUG_ON(prop->length != tmp->length);
  256. memcpy(prop->value, tmp->value, prop->length);
  257. } else
  258. pr_debug("%s:%d not found %s\n", __func__, __LINE__,
  259. prop->name);
  260. }
  261. static void dump_field(char *s, const u8 *field, int size_of_field)
  262. {
  263. #if defined(DEBUG)
  264. int i;
  265. for (i = 0; i < size_of_field; i++)
  266. s[i] = isprint(field[i]) ? field[i] : '.';
  267. s[i] = 0;
  268. #endif
  269. }
  270. #define dump_header(_a) _dump_header(_a, __func__, __LINE__)
  271. static void _dump_header(const struct os_area_header *h, const char *func,
  272. int line)
  273. {
  274. char str[sizeof(h->magic_num) + 1];
  275. dump_field(str, h->magic_num, sizeof(h->magic_num));
  276. pr_debug("%s:%d: h.magic_num: '%s'\n", func, line,
  277. str);
  278. pr_debug("%s:%d: h.hdr_version: %u\n", func, line,
  279. h->hdr_version);
  280. pr_debug("%s:%d: h.db_area_offset: %u\n", func, line,
  281. h->db_area_offset);
  282. pr_debug("%s:%d: h.ldr_area_offset: %u\n", func, line,
  283. h->ldr_area_offset);
  284. pr_debug("%s:%d: h.ldr_format: %u\n", func, line,
  285. h->ldr_format);
  286. pr_debug("%s:%d: h.ldr_size: %xh\n", func, line,
  287. h->ldr_size);
  288. }
  289. #define dump_params(_a) _dump_params(_a, __func__, __LINE__)
  290. static void _dump_params(const struct os_area_params *p, const char *func,
  291. int line)
  292. {
  293. pr_debug("%s:%d: p.boot_flag: %u\n", func, line, p->boot_flag);
  294. pr_debug("%s:%d: p.num_params: %u\n", func, line, p->num_params);
  295. pr_debug("%s:%d: p.rtc_diff %lld\n", func, line, p->rtc_diff);
  296. pr_debug("%s:%d: p.av_multi_out %u\n", func, line, p->av_multi_out);
  297. pr_debug("%s:%d: p.ctrl_button: %u\n", func, line, p->ctrl_button);
  298. pr_debug("%s:%d: p.static_ip_addr: %u.%u.%u.%u\n", func, line,
  299. p->static_ip_addr[0], p->static_ip_addr[1],
  300. p->static_ip_addr[2], p->static_ip_addr[3]);
  301. pr_debug("%s:%d: p.network_mask: %u.%u.%u.%u\n", func, line,
  302. p->network_mask[0], p->network_mask[1],
  303. p->network_mask[2], p->network_mask[3]);
  304. pr_debug("%s:%d: p.default_gateway: %u.%u.%u.%u\n", func, line,
  305. p->default_gateway[0], p->default_gateway[1],
  306. p->default_gateway[2], p->default_gateway[3]);
  307. pr_debug("%s:%d: p.dns_primary: %u.%u.%u.%u\n", func, line,
  308. p->dns_primary[0], p->dns_primary[1],
  309. p->dns_primary[2], p->dns_primary[3]);
  310. pr_debug("%s:%d: p.dns_secondary: %u.%u.%u.%u\n", func, line,
  311. p->dns_secondary[0], p->dns_secondary[1],
  312. p->dns_secondary[2], p->dns_secondary[3]);
  313. }
  314. static int verify_header(const struct os_area_header *header)
  315. {
  316. if (memcmp(header->magic_num, OS_AREA_HEADER_MAGIC_NUM,
  317. sizeof(header->magic_num))) {
  318. pr_debug("%s:%d magic_num failed\n", __func__, __LINE__);
  319. return -1;
  320. }
  321. if (header->hdr_version < 1) {
  322. pr_debug("%s:%d hdr_version failed\n", __func__, __LINE__);
  323. return -1;
  324. }
  325. if (header->db_area_offset > header->ldr_area_offset) {
  326. pr_debug("%s:%d offsets failed\n", __func__, __LINE__);
  327. return -1;
  328. }
  329. return 0;
  330. }
  331. static int db_verify(const struct os_area_db *db)
  332. {
  333. if (memcmp(db->magic_num, OS_AREA_DB_MAGIC_NUM,
  334. sizeof(db->magic_num))) {
  335. pr_debug("%s:%d magic_num failed\n", __func__, __LINE__);
  336. return -EINVAL;
  337. }
  338. if (db->version != 1) {
  339. pr_debug("%s:%d version failed\n", __func__, __LINE__);
  340. return -EINVAL;
  341. }
  342. return 0;
  343. }
  344. struct db_index {
  345. uint8_t owner:5;
  346. uint8_t key:3;
  347. };
  348. struct db_iterator {
  349. const struct os_area_db *db;
  350. struct os_area_db_id match_id;
  351. struct db_index *idx;
  352. struct db_index *last_idx;
  353. union {
  354. uint64_t *value_64;
  355. uint32_t *value_32;
  356. uint16_t *value_16;
  357. };
  358. };
  359. static unsigned int db_align_up(unsigned int val, unsigned int size)
  360. {
  361. return (val + (size - 1)) & (~(size - 1));
  362. }
  363. /**
  364. * db_for_each_64 - Iterator for 64 bit entries.
  365. *
  366. * A NULL value for id can be used to match all entries.
  367. * OS_AREA_DB_OWNER_ANY and OS_AREA_DB_KEY_ANY can be used to match all.
  368. */
  369. static int db_for_each_64(const struct os_area_db *db,
  370. const struct os_area_db_id *match_id, struct db_iterator *i)
  371. {
  372. next:
  373. if (!i->db) {
  374. i->db = db;
  375. i->match_id = match_id ? *match_id : os_area_db_id_any;
  376. i->idx = (void *)db + db->index_64;
  377. i->last_idx = i->idx + db->count_64;
  378. i->value_64 = (void *)db + db->index_64
  379. + db_align_up(db->count_64, 8);
  380. } else {
  381. i->idx++;
  382. i->value_64++;
  383. }
  384. if (i->idx >= i->last_idx) {
  385. pr_debug("%s:%d: reached end\n", __func__, __LINE__);
  386. return 0;
  387. }
  388. if (i->match_id.owner != OS_AREA_DB_OWNER_ANY
  389. && i->match_id.owner != (int)i->idx->owner)
  390. goto next;
  391. if (i->match_id.key != OS_AREA_DB_KEY_ANY
  392. && i->match_id.key != (int)i->idx->key)
  393. goto next;
  394. return 1;
  395. }
  396. static int db_delete_64(struct os_area_db *db, const struct os_area_db_id *id)
  397. {
  398. struct db_iterator i;
  399. for (i.db = NULL; db_for_each_64(db, id, &i); ) {
  400. pr_debug("%s:%d: got (%d:%d) %llxh\n", __func__, __LINE__,
  401. i.idx->owner, i.idx->key,
  402. (unsigned long long)*i.value_64);
  403. i.idx->owner = 0;
  404. i.idx->key = 0;
  405. *i.value_64 = 0;
  406. }
  407. return 0;
  408. }
  409. static int db_set_64(struct os_area_db *db, const struct os_area_db_id *id,
  410. uint64_t value)
  411. {
  412. struct db_iterator i;
  413. pr_debug("%s:%d: (%d:%d) <= %llxh\n", __func__, __LINE__,
  414. id->owner, id->key, (unsigned long long)value);
  415. if (!id->owner || id->owner == OS_AREA_DB_OWNER_ANY
  416. || id->key == OS_AREA_DB_KEY_ANY) {
  417. pr_debug("%s:%d: bad id: (%d:%d)\n", __func__,
  418. __LINE__, id->owner, id->key);
  419. return -1;
  420. }
  421. db_delete_64(db, id);
  422. i.db = NULL;
  423. if (db_for_each_64(db, &os_area_db_id_empty, &i)) {
  424. pr_debug("%s:%d: got (%d:%d) %llxh\n", __func__, __LINE__,
  425. i.idx->owner, i.idx->key,
  426. (unsigned long long)*i.value_64);
  427. i.idx->owner = id->owner;
  428. i.idx->key = id->key;
  429. *i.value_64 = value;
  430. pr_debug("%s:%d: set (%d:%d) <= %llxh\n", __func__, __LINE__,
  431. i.idx->owner, i.idx->key,
  432. (unsigned long long)*i.value_64);
  433. return 0;
  434. }
  435. pr_debug("%s:%d: database full.\n",
  436. __func__, __LINE__);
  437. return -1;
  438. }
  439. static int db_get_64(const struct os_area_db *db,
  440. const struct os_area_db_id *id, uint64_t *value)
  441. {
  442. struct db_iterator i;
  443. i.db = NULL;
  444. if (db_for_each_64(db, id, &i)) {
  445. *value = *i.value_64;
  446. pr_debug("%s:%d: found %lld\n", __func__, __LINE__,
  447. (long long int)*i.value_64);
  448. return 0;
  449. }
  450. pr_debug("%s:%d: not found\n", __func__, __LINE__);
  451. return -1;
  452. }
  453. static int db_get_rtc_diff(const struct os_area_db *db, int64_t *rtc_diff)
  454. {
  455. return db_get_64(db, &os_area_db_id_rtc_diff, (uint64_t*)rtc_diff);
  456. }
  457. #define dump_db(a) _dump_db(a, __func__, __LINE__)
  458. static void _dump_db(const struct os_area_db *db, const char *func,
  459. int line)
  460. {
  461. char str[sizeof(db->magic_num) + 1];
  462. dump_field(str, db->magic_num, sizeof(db->magic_num));
  463. pr_debug("%s:%d: db.magic_num: '%s'\n", func, line,
  464. str);
  465. pr_debug("%s:%d: db.version: %u\n", func, line,
  466. db->version);
  467. pr_debug("%s:%d: db.index_64: %u\n", func, line,
  468. db->index_64);
  469. pr_debug("%s:%d: db.count_64: %u\n", func, line,
  470. db->count_64);
  471. pr_debug("%s:%d: db.index_32: %u\n", func, line,
  472. db->index_32);
  473. pr_debug("%s:%d: db.count_32: %u\n", func, line,
  474. db->count_32);
  475. pr_debug("%s:%d: db.index_16: %u\n", func, line,
  476. db->index_16);
  477. pr_debug("%s:%d: db.count_16: %u\n", func, line,
  478. db->count_16);
  479. }
  480. static void os_area_db_init(struct os_area_db *db)
  481. {
  482. enum {
  483. HEADER_SIZE = offsetof(struct os_area_db, _db_data),
  484. INDEX_64_COUNT = 64,
  485. VALUES_64_COUNT = 57,
  486. INDEX_32_COUNT = 64,
  487. VALUES_32_COUNT = 57,
  488. INDEX_16_COUNT = 64,
  489. VALUES_16_COUNT = 57,
  490. };
  491. memset(db, 0, sizeof(struct os_area_db));
  492. memcpy(db->magic_num, OS_AREA_DB_MAGIC_NUM, sizeof(db->magic_num));
  493. db->version = 1;
  494. db->index_64 = HEADER_SIZE;
  495. db->count_64 = VALUES_64_COUNT;
  496. db->index_32 = HEADER_SIZE
  497. + INDEX_64_COUNT * sizeof(struct db_index)
  498. + VALUES_64_COUNT * sizeof(u64);
  499. db->count_32 = VALUES_32_COUNT;
  500. db->index_16 = HEADER_SIZE
  501. + INDEX_64_COUNT * sizeof(struct db_index)
  502. + VALUES_64_COUNT * sizeof(u64)
  503. + INDEX_32_COUNT * sizeof(struct db_index)
  504. + VALUES_32_COUNT * sizeof(u32);
  505. db->count_16 = VALUES_16_COUNT;
  506. /* Rules to check db layout. */
  507. BUILD_BUG_ON(sizeof(struct db_index) != 1);
  508. BUILD_BUG_ON(sizeof(struct os_area_db) != 2 * OS_AREA_SEGMENT_SIZE);
  509. BUILD_BUG_ON(INDEX_64_COUNT & 0x7);
  510. BUILD_BUG_ON(VALUES_64_COUNT > INDEX_64_COUNT);
  511. BUILD_BUG_ON(INDEX_32_COUNT & 0x7);
  512. BUILD_BUG_ON(VALUES_32_COUNT > INDEX_32_COUNT);
  513. BUILD_BUG_ON(INDEX_16_COUNT & 0x7);
  514. BUILD_BUG_ON(VALUES_16_COUNT > INDEX_16_COUNT);
  515. BUILD_BUG_ON(HEADER_SIZE
  516. + INDEX_64_COUNT * sizeof(struct db_index)
  517. + VALUES_64_COUNT * sizeof(u64)
  518. + INDEX_32_COUNT * sizeof(struct db_index)
  519. + VALUES_32_COUNT * sizeof(u32)
  520. + INDEX_16_COUNT * sizeof(struct db_index)
  521. + VALUES_16_COUNT * sizeof(u16)
  522. > sizeof(struct os_area_db));
  523. }
  524. /**
  525. * update_flash_db - Helper for os_area_queue_work_handler.
  526. *
  527. */
  528. static int update_flash_db(void)
  529. {
  530. const unsigned int buf_len = 8 * OS_AREA_SEGMENT_SIZE;
  531. struct os_area_header *header;
  532. ssize_t count;
  533. int error;
  534. loff_t pos;
  535. struct os_area_db* db;
  536. /* Read in header and db from flash. */
  537. header = kmalloc(buf_len, GFP_KERNEL);
  538. if (!header) {
  539. pr_debug("%s: kmalloc failed\n", __func__);
  540. return -ENOMEM;
  541. }
  542. count = os_area_flash_read(header, buf_len, 0);
  543. if (count < 0) {
  544. pr_debug("%s: os_area_flash_read failed %zd\n", __func__,
  545. count);
  546. error = count;
  547. goto fail;
  548. }
  549. pos = header->db_area_offset * OS_AREA_SEGMENT_SIZE;
  550. if (count < OS_AREA_SEGMENT_SIZE || verify_header(header) ||
  551. count < pos) {
  552. pr_debug("%s: verify_header failed\n", __func__);
  553. dump_header(header);
  554. error = -EINVAL;
  555. goto fail;
  556. }
  557. /* Now got a good db offset and some maybe good db data. */
  558. db = (void *)header + pos;
  559. error = db_verify(db);
  560. if (error) {
  561. pr_notice("%s: Verify of flash database failed, formatting.\n",
  562. __func__);
  563. dump_db(db);
  564. os_area_db_init(db);
  565. }
  566. /* Now got good db data. */
  567. db_set_64(db, &os_area_db_id_rtc_diff, saved_params.rtc_diff);
  568. count = os_area_flash_write(db, sizeof(struct os_area_db), pos);
  569. if (count < sizeof(struct os_area_db)) {
  570. pr_debug("%s: os_area_flash_write failed %zd\n", __func__,
  571. count);
  572. error = count < 0 ? count : -EIO;
  573. }
  574. fail:
  575. kfree(header);
  576. return error;
  577. }
  578. /**
  579. * os_area_queue_work_handler - Asynchronous write handler.
  580. *
  581. * An asynchronous write for flash memory and the device tree. Do not
  582. * call directly, use os_area_queue_work().
  583. */
  584. static void os_area_queue_work_handler(struct work_struct *work)
  585. {
  586. struct device_node *node;
  587. int error;
  588. pr_debug(" -> %s:%d\n", __func__, __LINE__);
  589. node = of_find_node_by_path("/");
  590. if (node) {
  591. os_area_set_property(node, &property_rtc_diff);
  592. of_node_put(node);
  593. } else
  594. pr_debug("%s:%d of_find_node_by_path failed\n",
  595. __func__, __LINE__);
  596. error = update_flash_db();
  597. if (error)
  598. pr_warning("%s: Could not update FLASH ROM\n", __func__);
  599. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  600. }
  601. static void os_area_queue_work(void)
  602. {
  603. static DECLARE_WORK(q, os_area_queue_work_handler);
  604. wmb();
  605. schedule_work(&q);
  606. }
  607. /**
  608. * ps3_os_area_save_params - Copy data from os area mirror to @saved_params.
  609. *
  610. * For the convenience of the guest the HV makes a copy of the os area in
  611. * flash to a high address in the boot memory region and then puts that RAM
  612. * address and the byte count into the repository for retrieval by the guest.
  613. * We copy the data we want into a static variable and allow the memory setup
  614. * by the HV to be claimed by the lmb manager.
  615. *
  616. * The os area mirror will not be available to a second stage kernel, and
  617. * the header verify will fail. In this case, the saved_params values will
  618. * be set from flash memory or the passed in device tree in ps3_os_area_init().
  619. */
  620. void __init ps3_os_area_save_params(void)
  621. {
  622. int result;
  623. u64 lpar_addr;
  624. unsigned int size;
  625. struct os_area_header *header;
  626. struct os_area_params *params;
  627. struct os_area_db *db;
  628. pr_debug(" -> %s:%d\n", __func__, __LINE__);
  629. result = ps3_repository_read_boot_dat_info(&lpar_addr, &size);
  630. if (result) {
  631. pr_debug("%s:%d ps3_repository_read_boot_dat_info failed\n",
  632. __func__, __LINE__);
  633. return;
  634. }
  635. header = (struct os_area_header *)__va(lpar_addr);
  636. params = (struct os_area_params *)__va(lpar_addr
  637. + OS_AREA_SEGMENT_SIZE);
  638. result = verify_header(header);
  639. if (result) {
  640. /* Second stage kernels exit here. */
  641. pr_debug("%s:%d verify_header failed\n", __func__, __LINE__);
  642. dump_header(header);
  643. return;
  644. }
  645. db = (struct os_area_db *)__va(lpar_addr
  646. + header->db_area_offset * OS_AREA_SEGMENT_SIZE);
  647. dump_header(header);
  648. dump_params(params);
  649. dump_db(db);
  650. result = db_verify(db) || db_get_rtc_diff(db, &saved_params.rtc_diff);
  651. if (result)
  652. saved_params.rtc_diff = params->rtc_diff ? params->rtc_diff
  653. : SECONDS_FROM_1970_TO_2000;
  654. saved_params.av_multi_out = params->av_multi_out;
  655. saved_params.valid = 1;
  656. memset(header, 0, sizeof(*header));
  657. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  658. }
  659. /**
  660. * ps3_os_area_init - Setup os area device tree properties as needed.
  661. */
  662. void __init ps3_os_area_init(void)
  663. {
  664. struct device_node *node;
  665. pr_debug(" -> %s:%d\n", __func__, __LINE__);
  666. node = of_find_node_by_path("/");
  667. if (!saved_params.valid && node) {
  668. /* Second stage kernels should have a dt entry. */
  669. os_area_get_property(node, &property_rtc_diff);
  670. os_area_get_property(node, &property_av_multi_out);
  671. }
  672. if(!saved_params.rtc_diff)
  673. saved_params.rtc_diff = SECONDS_FROM_1970_TO_2000;
  674. if (node) {
  675. os_area_set_property(node, &property_rtc_diff);
  676. os_area_set_property(node, &property_av_multi_out);
  677. of_node_put(node);
  678. } else
  679. pr_debug("%s:%d of_find_node_by_path failed\n",
  680. __func__, __LINE__);
  681. pr_debug(" <- %s:%d\n", __func__, __LINE__);
  682. }
  683. /**
  684. * ps3_os_area_get_rtc_diff - Returns the rtc diff value.
  685. */
  686. u64 ps3_os_area_get_rtc_diff(void)
  687. {
  688. return saved_params.rtc_diff;
  689. }
  690. EXPORT_SYMBOL_GPL(ps3_os_area_get_rtc_diff);
  691. /**
  692. * ps3_os_area_set_rtc_diff - Set the rtc diff value.
  693. *
  694. * An asynchronous write is needed to support writing updates from
  695. * the timer interrupt context.
  696. */
  697. void ps3_os_area_set_rtc_diff(u64 rtc_diff)
  698. {
  699. if (saved_params.rtc_diff != rtc_diff) {
  700. saved_params.rtc_diff = rtc_diff;
  701. os_area_queue_work();
  702. }
  703. }
  704. EXPORT_SYMBOL_GPL(ps3_os_area_set_rtc_diff);
  705. /**
  706. * ps3_os_area_get_av_multi_out - Returns the default video mode.
  707. */
  708. enum ps3_param_av_multi_out ps3_os_area_get_av_multi_out(void)
  709. {
  710. return saved_params.av_multi_out;
  711. }
  712. EXPORT_SYMBOL_GPL(ps3_os_area_get_av_multi_out);