Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 1 | /* |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 2 | * PS3 flash memory os area. |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 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 | |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/io.h> |
Geoff Levand | 418ef20 | 2007-10-07 07:35:45 +1000 | [diff] [blame] | 23 | #include <linux/workqueue.h> |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 24 | |
| 25 | #include <asm/lmb.h> |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 26 | |
| 27 | #include "platform.h" |
| 28 | |
| 29 | enum { |
| 30 | OS_AREA_SEGMENT_SIZE = 0X200, |
| 31 | }; |
| 32 | |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 33 | enum os_area_ldr_format { |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 34 | HEADER_LDR_FORMAT_RAW = 0, |
| 35 | HEADER_LDR_FORMAT_GZIP = 1, |
| 36 | }; |
| 37 | |
| 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 | * @os_area_offset: Starting segment number of os image 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 | |
| 53 | struct os_area_header { |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 54 | u8 magic_num[16]; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 55 | u32 hdr_version; |
| 56 | u32 os_area_offset; |
| 57 | u32 ldr_area_offset; |
| 58 | u32 _reserved_1; |
| 59 | u32 ldr_format; |
| 60 | u32 ldr_size; |
| 61 | u32 _reserved_2[6]; |
Geoff Levand | a8229a9 | 2007-01-26 19:07:56 -0800 | [diff] [blame] | 62 | }; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 63 | |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 64 | enum os_area_boot_flag { |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 65 | PARAM_BOOT_FLAG_GAME_OS = 0, |
| 66 | PARAM_BOOT_FLAG_OTHER_OS = 1, |
| 67 | }; |
| 68 | |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 69 | enum os_area_ctrl_button { |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 70 | PARAM_CTRL_BUTTON_O_IS_YES = 0, |
| 71 | PARAM_CTRL_BUTTON_X_IS_YES = 1, |
| 72 | }; |
| 73 | |
| 74 | /** |
| 75 | * struct os_area_params - os area params segment. |
| 76 | * @boot_flag: User preference of operating system, PARAM_BOOT_FLAG flag. |
| 77 | * @num_params: Number of params in this (params) segment. |
| 78 | * @rtc_diff: Difference in seconds between 1970 and the ps3 rtc value. |
| 79 | * @av_multi_out: User preference of AV output, PARAM_AV_MULTI_OUT flag. |
| 80 | * @ctrl_button: User preference of controller button config, PARAM_CTRL_BUTTON |
| 81 | * flag. |
| 82 | * @static_ip_addr: User preference of static IP address. |
| 83 | * @network_mask: User preference of static network mask. |
| 84 | * @default_gateway: User preference of static default gateway. |
| 85 | * @dns_primary: User preference of static primary dns server. |
| 86 | * @dns_secondary: User preference of static secondary dns server. |
| 87 | * |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 88 | * The ps3 rtc maintains a read-only value that approximates seconds since |
| 89 | * 2000-01-01 00:00:00 UTC. |
| 90 | * |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 91 | * User preference of zero for static_ip_addr means use dhcp. |
| 92 | */ |
| 93 | |
| 94 | struct os_area_params { |
| 95 | u32 boot_flag; |
| 96 | u32 _reserved_1[3]; |
| 97 | u32 num_params; |
| 98 | u32 _reserved_2[3]; |
| 99 | /* param 0 */ |
| 100 | s64 rtc_diff; |
| 101 | u8 av_multi_out; |
| 102 | u8 ctrl_button; |
| 103 | u8 _reserved_3[6]; |
| 104 | /* param 1 */ |
| 105 | u8 static_ip_addr[4]; |
| 106 | u8 network_mask[4]; |
| 107 | u8 default_gateway[4]; |
| 108 | u8 _reserved_4[4]; |
| 109 | /* param 2 */ |
| 110 | u8 dns_primary[4]; |
| 111 | u8 dns_secondary[4]; |
| 112 | u8 _reserved_5[8]; |
Geoff Levand | a8229a9 | 2007-01-26 19:07:56 -0800 | [diff] [blame] | 113 | }; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 114 | |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 115 | #define SECONDS_FROM_1970_TO_2000 946684800LL |
| 116 | |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 117 | /** |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 118 | * struct saved_params - Static working copies of data from the PS3 'os area'. |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 119 | */ |
| 120 | |
| 121 | struct saved_params { |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 122 | s64 rtc_diff; |
| 123 | unsigned int av_multi_out; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 124 | } static saved_params; |
| 125 | |
| 126 | #define dump_header(_a) _dump_header(_a, __func__, __LINE__) |
Geert Uytterhoeven | 670ad35 | 2007-06-16 07:19:04 +1000 | [diff] [blame] | 127 | static void _dump_header(const struct os_area_header *h, const char *func, |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 128 | int line) |
| 129 | { |
| 130 | pr_debug("%s:%d: h.magic_num: '%s'\n", func, line, |
| 131 | h->magic_num); |
| 132 | pr_debug("%s:%d: h.hdr_version: %u\n", func, line, |
| 133 | h->hdr_version); |
| 134 | pr_debug("%s:%d: h.os_area_offset: %u\n", func, line, |
| 135 | h->os_area_offset); |
| 136 | pr_debug("%s:%d: h.ldr_area_offset: %u\n", func, line, |
| 137 | h->ldr_area_offset); |
| 138 | pr_debug("%s:%d: h.ldr_format: %u\n", func, line, |
| 139 | h->ldr_format); |
| 140 | pr_debug("%s:%d: h.ldr_size: %xh\n", func, line, |
| 141 | h->ldr_size); |
| 142 | } |
| 143 | |
| 144 | #define dump_params(_a) _dump_params(_a, __func__, __LINE__) |
Geert Uytterhoeven | 670ad35 | 2007-06-16 07:19:04 +1000 | [diff] [blame] | 145 | static void _dump_params(const struct os_area_params *p, const char *func, |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 146 | int line) |
| 147 | { |
| 148 | pr_debug("%s:%d: p.boot_flag: %u\n", func, line, p->boot_flag); |
| 149 | pr_debug("%s:%d: p.num_params: %u\n", func, line, p->num_params); |
| 150 | pr_debug("%s:%d: p.rtc_diff %ld\n", func, line, p->rtc_diff); |
| 151 | pr_debug("%s:%d: p.av_multi_out %u\n", func, line, p->av_multi_out); |
| 152 | pr_debug("%s:%d: p.ctrl_button: %u\n", func, line, p->ctrl_button); |
| 153 | pr_debug("%s:%d: p.static_ip_addr: %u.%u.%u.%u\n", func, line, |
| 154 | p->static_ip_addr[0], p->static_ip_addr[1], |
| 155 | p->static_ip_addr[2], p->static_ip_addr[3]); |
| 156 | pr_debug("%s:%d: p.network_mask: %u.%u.%u.%u\n", func, line, |
| 157 | p->network_mask[0], p->network_mask[1], |
| 158 | p->network_mask[2], p->network_mask[3]); |
| 159 | pr_debug("%s:%d: p.default_gateway: %u.%u.%u.%u\n", func, line, |
| 160 | p->default_gateway[0], p->default_gateway[1], |
| 161 | p->default_gateway[2], p->default_gateway[3]); |
| 162 | pr_debug("%s:%d: p.dns_primary: %u.%u.%u.%u\n", func, line, |
| 163 | p->dns_primary[0], p->dns_primary[1], |
| 164 | p->dns_primary[2], p->dns_primary[3]); |
| 165 | pr_debug("%s:%d: p.dns_secondary: %u.%u.%u.%u\n", func, line, |
| 166 | p->dns_secondary[0], p->dns_secondary[1], |
| 167 | p->dns_secondary[2], p->dns_secondary[3]); |
| 168 | } |
| 169 | |
| 170 | static int __init verify_header(const struct os_area_header *header) |
| 171 | { |
| 172 | if (memcmp(header->magic_num, "cell_ext_os_area", 16)) { |
| 173 | pr_debug("%s:%d magic_num failed\n", __func__, __LINE__); |
| 174 | return -1; |
| 175 | } |
| 176 | |
| 177 | if (header->hdr_version < 1) { |
| 178 | pr_debug("%s:%d hdr_version failed\n", __func__, __LINE__); |
| 179 | return -1; |
| 180 | } |
| 181 | |
| 182 | if (header->os_area_offset > header->ldr_area_offset) { |
| 183 | pr_debug("%s:%d offsets failed\n", __func__, __LINE__); |
| 184 | return -1; |
| 185 | } |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 190 | /** |
Geoff Levand | 418ef20 | 2007-10-07 07:35:45 +1000 | [diff] [blame] | 191 | * os_area_queue_work_handler - Asynchronous write handler. |
| 192 | * |
| 193 | * An asynchronous write for flash memory and the device tree. Do not |
| 194 | * call directly, use os_area_queue_work(). |
| 195 | */ |
| 196 | |
| 197 | static void os_area_queue_work_handler(struct work_struct *work) |
| 198 | { |
| 199 | pr_debug(" -> %s:%d\n", __func__, __LINE__); |
| 200 | |
| 201 | pr_debug(" <- %s:%d\n", __func__, __LINE__); |
| 202 | } |
| 203 | |
| 204 | static void os_area_queue_work(void) |
| 205 | { |
| 206 | static DECLARE_WORK(q, os_area_queue_work_handler); |
| 207 | |
| 208 | wmb(); |
| 209 | schedule_work(&q); |
| 210 | } |
| 211 | |
| 212 | /** |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 213 | * ps3_os_area_save_params - Copy data from os area mirror to @saved_params. |
| 214 | * |
| 215 | * For the convenience of the guest, the HV makes a copy of the os area in |
| 216 | * flash to a high address in the boot memory region and then puts that RAM |
| 217 | * address and the byte count into the repository for retreval by the guest. |
| 218 | * We copy the data we want into a static variable and allow the memory setup |
| 219 | * by the HV to be claimed by the lmb manager. |
| 220 | */ |
| 221 | |
| 222 | void __init ps3_os_area_save_params(void) |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 223 | { |
| 224 | int result; |
| 225 | u64 lpar_addr; |
| 226 | unsigned int size; |
| 227 | struct os_area_header *header; |
| 228 | struct os_area_params *params; |
| 229 | |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 230 | pr_debug(" -> %s:%d\n", __func__, __LINE__); |
| 231 | |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 232 | result = ps3_repository_read_boot_dat_info(&lpar_addr, &size); |
| 233 | |
| 234 | if (result) { |
| 235 | pr_debug("%s:%d ps3_repository_read_boot_dat_info failed\n", |
| 236 | __func__, __LINE__); |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 237 | return; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | header = (struct os_area_header *)__va(lpar_addr); |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 241 | params = (struct os_area_params *)__va(lpar_addr |
| 242 | + OS_AREA_SEGMENT_SIZE); |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 243 | |
| 244 | result = verify_header(header); |
| 245 | |
| 246 | if (result) { |
| 247 | pr_debug("%s:%d verify_header failed\n", __func__, __LINE__); |
| 248 | dump_header(header); |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 249 | return; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | dump_header(header); |
| 253 | dump_params(params); |
| 254 | |
| 255 | saved_params.rtc_diff = params->rtc_diff; |
| 256 | saved_params.av_multi_out = params->av_multi_out; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 257 | |
Geoff Levand | 01263e8 | 2007-10-07 07:35:44 +1000 | [diff] [blame] | 258 | memset(header, 0, sizeof(*header)); |
| 259 | |
| 260 | pr_debug(" <- %s:%d\n", __func__, __LINE__); |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /** |
Geoff Levand | d7b98e3 | 2007-10-07 07:35:46 +1000 | [diff] [blame^] | 264 | * ps3_os_area_get_rtc_diff - Returns the rtc diff value. |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 265 | */ |
| 266 | |
Geoff Levand | d7b98e3 | 2007-10-07 07:35:46 +1000 | [diff] [blame^] | 267 | u64 ps3_os_area_get_rtc_diff(void) |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 268 | { |
Geoff Levand | ca94297 | 2007-10-07 07:35:43 +1000 | [diff] [blame] | 269 | return saved_params.rtc_diff ? saved_params.rtc_diff |
| 270 | : SECONDS_FROM_1970_TO_2000; |
Geoff Levand | 00a3e2e | 2006-11-23 00:46:58 +0100 | [diff] [blame] | 271 | } |
Geert Uytterhoeven | 098e274 | 2007-01-26 19:08:24 -0800 | [diff] [blame] | 272 | |
| 273 | /** |
Geoff Levand | d7b98e3 | 2007-10-07 07:35:46 +1000 | [diff] [blame^] | 274 | * ps3_os_area_set_rtc_diff - Set the rtc diff value. |
| 275 | * |
| 276 | * An asynchronous write is needed to support writing updates from |
| 277 | * the timer interrupt context. |
| 278 | */ |
| 279 | |
| 280 | void ps3_os_area_set_rtc_diff(u64 rtc_diff) |
| 281 | { |
| 282 | if (saved_params.rtc_diff != rtc_diff) { |
| 283 | saved_params.rtc_diff = rtc_diff; |
| 284 | os_area_queue_work(); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | /** |
Geert Uytterhoeven | 098e274 | 2007-01-26 19:08:24 -0800 | [diff] [blame] | 289 | * ps3_os_area_get_av_multi_out - Returns the default video mode. |
| 290 | */ |
| 291 | |
| 292 | enum ps3_param_av_multi_out ps3_os_area_get_av_multi_out(void) |
| 293 | { |
| 294 | return saved_params.av_multi_out; |
| 295 | } |
| 296 | EXPORT_SYMBOL_GPL(ps3_os_area_get_av_multi_out); |