blob: ee463d0f87ad7a5f2f81506df0027afb32caa5e1 [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>
23
24#include <asm/lmb.h>
Geoff Levand00a3e2e2006-11-23 00:46:58 +010025
26#include "platform.h"
27
28enum {
29 OS_AREA_SEGMENT_SIZE = 0X200,
30};
31
Geoff Levandca942972007-10-07 07:35:43 +100032enum os_area_ldr_format {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010033 HEADER_LDR_FORMAT_RAW = 0,
34 HEADER_LDR_FORMAT_GZIP = 1,
35};
36
37/**
38 * struct os_area_header - os area header segment.
39 * @magic_num: Always 'cell_ext_os_area'.
40 * @hdr_version: Header format version number.
41 * @os_area_offset: Starting segment number of os image area.
42 * @ldr_area_offset: Starting segment number of bootloader image area.
43 * @ldr_format: HEADER_LDR_FORMAT flag.
44 * @ldr_size: Size of bootloader image in bytes.
45 *
46 * Note that the docs refer to area offsets. These are offsets in units of
47 * segments from the start of the os area (top of the header). These are
48 * better thought of as segment numbers. The os area of the os area is
49 * reserved for the os image.
50 */
51
52struct os_area_header {
Geoff Levandca942972007-10-07 07:35:43 +100053 u8 magic_num[16];
Geoff Levand00a3e2e2006-11-23 00:46:58 +010054 u32 hdr_version;
55 u32 os_area_offset;
56 u32 ldr_area_offset;
57 u32 _reserved_1;
58 u32 ldr_format;
59 u32 ldr_size;
60 u32 _reserved_2[6];
Geoff Levanda8229a92007-01-26 19:07:56 -080061};
Geoff Levand00a3e2e2006-11-23 00:46:58 +010062
Geoff Levandca942972007-10-07 07:35:43 +100063enum os_area_boot_flag {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010064 PARAM_BOOT_FLAG_GAME_OS = 0,
65 PARAM_BOOT_FLAG_OTHER_OS = 1,
66};
67
Geoff Levandca942972007-10-07 07:35:43 +100068enum os_area_ctrl_button {
Geoff Levand00a3e2e2006-11-23 00:46:58 +010069 PARAM_CTRL_BUTTON_O_IS_YES = 0,
70 PARAM_CTRL_BUTTON_X_IS_YES = 1,
71};
72
73/**
74 * struct os_area_params - os area params segment.
75 * @boot_flag: User preference of operating system, PARAM_BOOT_FLAG flag.
76 * @num_params: Number of params in this (params) segment.
77 * @rtc_diff: Difference in seconds between 1970 and the ps3 rtc value.
78 * @av_multi_out: User preference of AV output, PARAM_AV_MULTI_OUT flag.
79 * @ctrl_button: User preference of controller button config, PARAM_CTRL_BUTTON
80 * flag.
81 * @static_ip_addr: User preference of static IP address.
82 * @network_mask: User preference of static network mask.
83 * @default_gateway: User preference of static default gateway.
84 * @dns_primary: User preference of static primary dns server.
85 * @dns_secondary: User preference of static secondary dns server.
86 *
Geoff Levandca942972007-10-07 07:35:43 +100087 * The ps3 rtc maintains a read-only value that approximates seconds since
88 * 2000-01-01 00:00:00 UTC.
89 *
Geoff Levand00a3e2e2006-11-23 00:46:58 +010090 * User preference of zero for static_ip_addr means use dhcp.
91 */
92
93struct os_area_params {
94 u32 boot_flag;
95 u32 _reserved_1[3];
96 u32 num_params;
97 u32 _reserved_2[3];
98 /* param 0 */
99 s64 rtc_diff;
100 u8 av_multi_out;
101 u8 ctrl_button;
102 u8 _reserved_3[6];
103 /* param 1 */
104 u8 static_ip_addr[4];
105 u8 network_mask[4];
106 u8 default_gateway[4];
107 u8 _reserved_4[4];
108 /* param 2 */
109 u8 dns_primary[4];
110 u8 dns_secondary[4];
111 u8 _reserved_5[8];
Geoff Levanda8229a92007-01-26 19:07:56 -0800112};
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100113
Geoff Levandca942972007-10-07 07:35:43 +1000114#define SECONDS_FROM_1970_TO_2000 946684800LL
115
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100116/**
117 * struct saved_params - Static working copies of data from the 'Other OS' area.
118 *
119 * For the convinience of the guest, the HV makes a copy of the 'Other OS' area
120 * in flash to a high address in the boot memory region and then puts that RAM
121 * address and the byte count into the repository for retreval by the guest.
122 * We copy the data we want into a static variable and allow the memory setup
123 * by the HV to be claimed by the lmb manager.
124 */
125
126struct saved_params {
127 /* param 0 */
128 s64 rtc_diff;
129 unsigned int av_multi_out;
130 unsigned int ctrl_button;
131 /* param 1 */
132 u8 static_ip_addr[4];
133 u8 network_mask[4];
134 u8 default_gateway[4];
135 /* param 2 */
136 u8 dns_primary[4];
137 u8 dns_secondary[4];
138} static saved_params;
139
140#define dump_header(_a) _dump_header(_a, __func__, __LINE__)
Geert Uytterhoeven670ad352007-06-16 07:19:04 +1000141static void _dump_header(const struct os_area_header *h, const char *func,
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100142 int line)
143{
144 pr_debug("%s:%d: h.magic_num: '%s'\n", func, line,
145 h->magic_num);
146 pr_debug("%s:%d: h.hdr_version: %u\n", func, line,
147 h->hdr_version);
148 pr_debug("%s:%d: h.os_area_offset: %u\n", func, line,
149 h->os_area_offset);
150 pr_debug("%s:%d: h.ldr_area_offset: %u\n", func, line,
151 h->ldr_area_offset);
152 pr_debug("%s:%d: h.ldr_format: %u\n", func, line,
153 h->ldr_format);
154 pr_debug("%s:%d: h.ldr_size: %xh\n", func, line,
155 h->ldr_size);
156}
157
158#define dump_params(_a) _dump_params(_a, __func__, __LINE__)
Geert Uytterhoeven670ad352007-06-16 07:19:04 +1000159static void _dump_params(const struct os_area_params *p, const char *func,
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100160 int line)
161{
162 pr_debug("%s:%d: p.boot_flag: %u\n", func, line, p->boot_flag);
163 pr_debug("%s:%d: p.num_params: %u\n", func, line, p->num_params);
164 pr_debug("%s:%d: p.rtc_diff %ld\n", func, line, p->rtc_diff);
165 pr_debug("%s:%d: p.av_multi_out %u\n", func, line, p->av_multi_out);
166 pr_debug("%s:%d: p.ctrl_button: %u\n", func, line, p->ctrl_button);
167 pr_debug("%s:%d: p.static_ip_addr: %u.%u.%u.%u\n", func, line,
168 p->static_ip_addr[0], p->static_ip_addr[1],
169 p->static_ip_addr[2], p->static_ip_addr[3]);
170 pr_debug("%s:%d: p.network_mask: %u.%u.%u.%u\n", func, line,
171 p->network_mask[0], p->network_mask[1],
172 p->network_mask[2], p->network_mask[3]);
173 pr_debug("%s:%d: p.default_gateway: %u.%u.%u.%u\n", func, line,
174 p->default_gateway[0], p->default_gateway[1],
175 p->default_gateway[2], p->default_gateway[3]);
176 pr_debug("%s:%d: p.dns_primary: %u.%u.%u.%u\n", func, line,
177 p->dns_primary[0], p->dns_primary[1],
178 p->dns_primary[2], p->dns_primary[3]);
179 pr_debug("%s:%d: p.dns_secondary: %u.%u.%u.%u\n", func, line,
180 p->dns_secondary[0], p->dns_secondary[1],
181 p->dns_secondary[2], p->dns_secondary[3]);
182}
183
184static int __init verify_header(const struct os_area_header *header)
185{
186 if (memcmp(header->magic_num, "cell_ext_os_area", 16)) {
187 pr_debug("%s:%d magic_num failed\n", __func__, __LINE__);
188 return -1;
189 }
190
191 if (header->hdr_version < 1) {
192 pr_debug("%s:%d hdr_version failed\n", __func__, __LINE__);
193 return -1;
194 }
195
196 if (header->os_area_offset > header->ldr_area_offset) {
197 pr_debug("%s:%d offsets failed\n", __func__, __LINE__);
198 return -1;
199 }
200
201 return 0;
202}
203
204int __init ps3_os_area_init(void)
205{
206 int result;
207 u64 lpar_addr;
208 unsigned int size;
209 struct os_area_header *header;
210 struct os_area_params *params;
211
212 result = ps3_repository_read_boot_dat_info(&lpar_addr, &size);
213
214 if (result) {
215 pr_debug("%s:%d ps3_repository_read_boot_dat_info failed\n",
216 __func__, __LINE__);
217 return result;
218 }
219
220 header = (struct os_area_header *)__va(lpar_addr);
Geoff Levandca942972007-10-07 07:35:43 +1000221 params = (struct os_area_params *)__va(lpar_addr
222 + OS_AREA_SEGMENT_SIZE);
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100223
224 result = verify_header(header);
225
226 if (result) {
227 pr_debug("%s:%d verify_header failed\n", __func__, __LINE__);
228 dump_header(header);
229 return -EIO;
230 }
231
232 dump_header(header);
233 dump_params(params);
234
235 saved_params.rtc_diff = params->rtc_diff;
236 saved_params.av_multi_out = params->av_multi_out;
237 saved_params.ctrl_button = params->ctrl_button;
238 memcpy(saved_params.static_ip_addr, params->static_ip_addr, 4);
239 memcpy(saved_params.network_mask, params->network_mask, 4);
240 memcpy(saved_params.default_gateway, params->default_gateway, 4);
241 memcpy(saved_params.dns_secondary, params->dns_secondary, 4);
242
243 return result;
244}
245
246/**
Geoff Levandca942972007-10-07 07:35:43 +1000247 * ps3_os_area_rtc_diff - Returns the rtc diff value.
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100248 */
249
250u64 ps3_os_area_rtc_diff(void)
251{
Geoff Levandca942972007-10-07 07:35:43 +1000252 return saved_params.rtc_diff ? saved_params.rtc_diff
253 : SECONDS_FROM_1970_TO_2000;
Geoff Levand00a3e2e2006-11-23 00:46:58 +0100254}
Geert Uytterhoeven098e2742007-01-26 19:08:24 -0800255
256/**
257 * ps3_os_area_get_av_multi_out - Returns the default video mode.
258 */
259
260enum ps3_param_av_multi_out ps3_os_area_get_av_multi_out(void)
261{
262 return saved_params.av_multi_out;
263}
264EXPORT_SYMBOL_GPL(ps3_os_area_get_av_multi_out);