blob: 473aee8580ce35d15961d589a12f9bba9052dd83 [file] [log] [blame]
Geoff Levand00a3e2e2006-11-23 00:46:58 +01001/*
Geoff Levandca942972007-10-07 07:35:43 +10002 * PS3 flash memory os area.
Geoff Levand00a3e2e2006-11-23 00:46:58 +01003 *
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 Levand418ef202007-10-07 07:35:45 +100023#include <linux/workqueue.h>
Geoff Levand00a3e2e2006-11-23 00:46:58 +010024
25#include <asm/lmb.h>
Geoff Levand00a3e2e2006-11-23 00:46:58 +010026
27#include "platform.h"
28
29enum {
30 OS_AREA_SEGMENT_SIZE = 0X200,
31};
32
Geoff Levandca942972007-10-07 07:35:43 +100033enum os_area_ldr_format {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010034 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
53struct os_area_header {
Geoff Levandca942972007-10-07 07:35:43 +100054 u8 magic_num[16];
Geoff Levand00a3e2e2006-11-23 00:46:58 +010055 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 Levanda8229a92007-01-26 19:07:56 -080062};
Geoff Levand00a3e2e2006-11-23 00:46:58 +010063
Geoff Levandca942972007-10-07 07:35:43 +100064enum os_area_boot_flag {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010065 PARAM_BOOT_FLAG_GAME_OS = 0,
66 PARAM_BOOT_FLAG_OTHER_OS = 1,
67};
68
Geoff Levandca942972007-10-07 07:35:43 +100069enum os_area_ctrl_button {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010070 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 Levandca942972007-10-07 07:35:43 +100088 * The ps3 rtc maintains a read-only value that approximates seconds since
89 * 2000-01-01 00:00:00 UTC.
90 *
Geoff Levand00a3e2e2006-11-23 00:46:58 +010091 * User preference of zero for static_ip_addr means use dhcp.
92 */
93
94struct 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 Levanda8229a92007-01-26 19:07:56 -0800113};
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100114
Geoff Levandca942972007-10-07 07:35:43 +1000115#define SECONDS_FROM_1970_TO_2000 946684800LL
116
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100117/**
Geoff Levand01263e82007-10-07 07:35:44 +1000118 * struct saved_params - Static working copies of data from the PS3 'os area'.
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100119 */
120
121struct saved_params {
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100122 s64 rtc_diff;
123 unsigned int av_multi_out;
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100124} static saved_params;
125
126#define dump_header(_a) _dump_header(_a, __func__, __LINE__)
Geert Uytterhoeven670ad352007-06-16 07:19:04 +1000127static void _dump_header(const struct os_area_header *h, const char *func,
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100128 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 Uytterhoeven670ad352007-06-16 07:19:04 +1000145static void _dump_params(const struct os_area_params *p, const char *func,
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100146 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
170static 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 Levand01263e82007-10-07 07:35:44 +1000190/**
Geoff Levand418ef202007-10-07 07:35:45 +1000191 * 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
197static 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
204static 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 Levand01263e82007-10-07 07:35:44 +1000213 * 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
222void __init ps3_os_area_save_params(void)
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100223{
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 Levand01263e82007-10-07 07:35:44 +1000230 pr_debug(" -> %s:%d\n", __func__, __LINE__);
231
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100232 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 Levand01263e82007-10-07 07:35:44 +1000237 return;
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100238 }
239
240 header = (struct os_area_header *)__va(lpar_addr);
Geoff Levandca942972007-10-07 07:35:43 +1000241 params = (struct os_area_params *)__va(lpar_addr
242 + OS_AREA_SEGMENT_SIZE);
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100243
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 Levand01263e82007-10-07 07:35:44 +1000249 return;
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100250 }
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 Levand00a3e2e2006-11-23 00:46:58 +0100257
Geoff Levand01263e82007-10-07 07:35:44 +1000258 memset(header, 0, sizeof(*header));
259
260 pr_debug(" <- %s:%d\n", __func__, __LINE__);
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100261}
262
263/**
Geoff Levandd7b98e32007-10-07 07:35:46 +1000264 * ps3_os_area_get_rtc_diff - Returns the rtc diff value.
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100265 */
266
Geoff Levandd7b98e32007-10-07 07:35:46 +1000267u64 ps3_os_area_get_rtc_diff(void)
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100268{
Geoff Levandca942972007-10-07 07:35:43 +1000269 return saved_params.rtc_diff ? saved_params.rtc_diff
270 : SECONDS_FROM_1970_TO_2000;
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100271}
Geert Uytterhoeven098e2742007-01-26 19:08:24 -0800272
273/**
Geoff Levandd7b98e32007-10-07 07:35:46 +1000274 * 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
280void 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 Uytterhoeven098e2742007-01-26 19:08:24 -0800289 * ps3_os_area_get_av_multi_out - Returns the default video mode.
290 */
291
292enum ps3_param_av_multi_out ps3_os_area_get_av_multi_out(void)
293{
294 return saved_params.av_multi_out;
295}
296EXPORT_SYMBOL_GPL(ps3_os_area_get_av_multi_out);