]> git.ozlabs.org Git - petitboot/blob - ui/common/ps3.c
cb1c8d1e3b9fadbb0027835d21ba0f34fca4d218
[petitboot] / ui / common / ps3.c
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/ioctl.h>
27 #include <ps3-flash.h>
28 #include <ps3-av.h>
29
30 #include "log/log.h"
31 #include "ui-system.h"
32 #include "ps3.h"
33
34 static const char flash_dev[] = "/dev/ps3flash";
35 static const char fb_dev[] = "/dev/fb0";
36
37 static const struct os_area_db_id id_default_item =
38 {
39         .owner = OS_AREA_DB_OWNER_PETITBOOT, /* 3 */
40         .key = 1,
41 };
42 static const struct os_area_db_id id_video_mode =
43 {
44         .owner = OS_AREA_DB_OWNER_PETITBOOT, /* 3 */
45         .key = OS_AREA_DB_KEY_VIDEO_MODE,    /* 2 */
46 };
47 static const struct os_area_db_id id_flags =
48 {
49         .owner = OS_AREA_DB_OWNER_PETITBOOT, /* 3 */
50         .key = 3,
51 };
52 static const struct os_area_db_id id_timeout =
53 {
54         .owner = OS_AREA_DB_OWNER_PETITBOOT, /* 3 */
55         .key = 4,
56 };
57
58 struct ps3_flash_ctx {
59         FILE *dev;
60         struct os_area_header header;
61         struct os_area_params params;
62         struct os_area_db db;
63 };
64
65 static void ps3_flash_close(struct ps3_flash_ctx *fc)
66 {
67         assert(fc->dev);
68
69         fclose(fc->dev);
70         fc->dev = NULL;
71 }
72
73 static int ps3_flash_open(struct ps3_flash_ctx *fc, const char *mode)
74 {
75         int result;
76
77         fc->dev = fopen(flash_dev, mode);
78
79         if (!fc->dev) {
80                 pb_log("%s: fopen failed: %s: %s\n", __func__, strerror(errno),
81                         flash_dev);
82                 return -1;
83         }
84
85         os_area_set_log_stream(pb_log_get_stream());
86
87         result = os_area_fixed_read(&fc->header, &fc->params, fc->dev);
88
89         if (result) {
90                 pb_log("%s: os_area_fixed_read failed: %s\n", __func__);
91                 goto fail;
92         }
93
94         return 0;
95
96 fail:
97         ps3_flash_close(fc);
98         return -1;
99 }
100
101 /**
102  * ps3_flash_get_values - Read values from the PS3 flash memory database.
103  *
104  * Returns zero on success.
105  */
106
107 int ps3_flash_get_values(struct ps3_flash_values *values)
108 {
109         int result;
110         int sum;
111         struct ps3_flash_ctx fc;
112         uint64_t tmp;
113
114         result = ps3_flash_open(&fc, "r");
115
116         if (result)
117                 goto done;
118
119         result = os_area_db_read(&fc.db, &fc.header, fc.dev);
120
121         ps3_flash_close(&fc);
122
123         if (result) {
124                 pb_log("%s: os_area_db_read failed: %s\n", __func__,
125                         strerror(errno));
126                 goto done;
127         }
128
129         sum = result = os_area_db_get(&fc.db, &id_default_item, &tmp);
130
131         if (!result)
132                 values->default_item = (uint32_t)tmp;
133
134         result = os_area_db_get(&fc.db, &id_timeout, &tmp);
135
136         if (!result)
137                 values->timeout = (uint8_t)tmp;
138
139         sum += result = os_area_db_get(&fc.db, &id_video_mode, &tmp);
140
141         if (!result)
142                 values->video_mode = (uint16_t)tmp;
143
144 done:
145         pb_log("%s: default_item: %x\n", __func__,
146                 (unsigned int)values->default_item);
147         pb_log("%s: timeout: %u\n", __func__,
148                 (unsigned int)values->timeout);
149         pb_log("%s: video_mode:   %u\n", __func__,
150                 (unsigned int)values->video_mode);
151
152         return (result || sum) ? -1 : 0;
153 }
154
155 /**
156  * ps3_flash_set_values - Writes values from the PS3 flash memory database.
157  *
158  * Formats the flash database before writing if a valid database if not found.
159  * Returns zero on success.
160  */
161
162 int ps3_flash_set_values(const struct ps3_flash_values *values)
163 {
164         int result;
165         struct ps3_flash_ctx fc;
166
167         pb_log("%s: default_item: %u\n", __func__, values->default_item);
168         pb_log("%s: video_mode:   %u\n", __func__, values->video_mode);
169
170         result = ps3_flash_open(&fc, "r+");
171
172         if (result)
173                 return result;
174
175         result = os_area_db_read(&fc.db, &fc.header, fc.dev);
176
177         if (result) {
178                 pb_log("%s: os_area_db_read failed: %s\n", __func__,
179                         strerror(errno));
180                 pb_log("%s: formating db\n", __func__);
181
182                 result = os_area_db_format(&fc.db, &fc.header, fc.dev);
183
184                 if (result) {
185                         pb_log("%s: db_format failed: %s\n", __func__,
186                                 strerror(errno));
187                         goto fail;
188                 }
189         }
190
191         /* timeout is currently read-only, set with ps3-bl-option */
192
193         result = os_area_db_set_32(&fc.db, &id_default_item,
194                 values->default_item);
195         result += os_area_db_set_16(&fc.db, &id_video_mode,
196                 values->video_mode);
197
198         result += os_area_db_write(&fc.db, &fc.header, fc.dev);
199
200         ps3_flash_close(&fc);
201         return result;
202
203 fail:
204         ps3_flash_close(&fc);
205         return -1;
206 }
207
208 /**
209  * ps3_video_ioctl - Low level ioctl helper.
210  *
211  * Use ps3_get_video_mode or ps3_set_video_mode().
212  */
213
214 static int ps3_video_ioctl(int request, unsigned int *mode_id)
215 {
216         int result;
217         int fd;
218
219         fd = open(fb_dev, O_RDWR);
220
221         if (fd < 0) {
222                 pb_log("%s: open failed: %s: %s\n", __func__, strerror(errno),
223                         fb_dev);
224                 return -1;
225         }
226
227         result = ioctl(fd, request, (unsigned long)mode_id);
228
229         close(fd);
230
231         if (result < 0) {
232                 pb_log("%s: ioctl failed: %s: %s\n", __func__, strerror(errno),
233                         fb_dev);
234                 return -1;
235         }
236
237         return 0;
238 }
239
240 /**
241  * ps3_set_video_mode - Set the PS3 video mode.
242  * @mode_id: The PS3 video mode_id as documented in the ps3-video-mode man page.
243  *
244  * Returns zero on success.
245  */
246
247 int ps3_set_video_mode(unsigned int mode_id)
248 {
249         pb_log("%s: %u\n", __func__, mode_id);
250         return ps3_video_ioctl(PS3FB_IOCTL_SETMODE, &mode_id);
251 }
252
253 /**
254  * ps3_set_video_mode - Get the current PS3 video mode.
255  * @mode_id: The PS3 video mode_id as documented in the ps3-video-mode man page.
256  *
257  * Returns zero on success.
258  */
259
260 int ps3_get_video_mode(unsigned int *mode_id)
261 {
262         int result;
263
264         *mode_id = 0;
265
266         result =  ps3_video_ioctl(PS3FB_IOCTL_GETMODE, mode_id);
267
268         pb_log("%s: %u\n", __func__, *mode_id);
269         return result;
270 }