os-area.c 21 KB

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