blob: 25182b18c7b09310b5e7ac389ba4ae38c80ef57f [file] [log] [blame]
Joel Stanley7b62ce92016-10-31 17:27:13 +10301/* Copyright 2016 IBM Corp.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 * implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brad Bishop77390492016-04-13 10:47:19 -040017#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <fcntl.h>
21#include <sys/mman.h>
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <unistd.h>
25#include <byteswap.h>
26#include <stdint.h>
27#include <stdbool.h>
28#include <getopt.h>
29#include <limits.h>
30#include <arpa/inet.h>
31#include <assert.h>
Brad Bishop275524e2016-09-08 09:09:55 -040032#include <libflash/arch_flash.h>
Brad Bishop77390492016-04-13 10:47:19 -040033#include <libflash/libffs.h>
Brad Bishop275524e2016-09-08 09:09:55 -040034#include <libflash/blocklevel.h>
35#include <libflash/errors.h>
Brad Bishopf6c85682016-06-27 11:56:39 -040036#include <openbmc_intf.h>
37#include <openbmc.h>
Brad Bishop77390492016-04-13 10:47:19 -040038
39static const gchar* dbus_object_path = "/org/openbmc/control";
Brad Bishop77390492016-04-13 10:47:19 -040040static const gchar* dbus_name = "org.openbmc.control.Flasher";
41
42static GDBusObjectManagerServer *manager = NULL;
43
44#define __aligned(x) __attribute__((aligned(x)))
45
Brad Bishop77390492016-04-13 10:47:19 -040046#define FILE_BUF_SIZE 0x10000
47static uint8_t file_buf[FILE_BUF_SIZE] __aligned(0x1000);
48
Brad Bishop275524e2016-09-08 09:09:55 -040049static struct blocklevel_device *bl;
Brad Bishop77390492016-04-13 10:47:19 -040050static struct ffs_handle *ffsh;
Brad Bishop77390492016-04-13 10:47:19 -040051
52static uint8_t FLASH_OK = 0;
53static uint8_t FLASH_ERROR = 0x01;
54static uint8_t FLASH_SETUP_ERROR = 0x02;
Brad Bishop77390492016-04-13 10:47:19 -040055
56static int
57erase_chip(void)
58{
59 int rc = 0;
60
61 printf("Erasing... (may take a while !) ");
62 fflush(stdout);
63
Brad Bishop275524e2016-09-08 09:09:55 -040064 rc = arch_flash_erase_chip(bl);
Brad Bishop77390492016-04-13 10:47:19 -040065 if(rc) {
66 fprintf(stderr, "Error %d erasing chip\n", rc);
67 return(rc);
68 }
69
70 printf("done !\n");
71 return(rc);
72}
73
74void
75flash_message(GDBusConnection* connection,char* obj_path,char* method, char* error_msg)
76{
77 GDBusProxy *proxy;
78 GError *error;
79 GVariant *parm = NULL;
Brad Bishop77390492016-04-13 10:47:19 -040080 error = NULL;
81 proxy = g_dbus_proxy_new_sync(connection,
82 G_DBUS_PROXY_FLAGS_NONE,
83 NULL, /* GDBusInterfaceInfo* */
84 "org.openbmc.control.Flash", /* name */
85 obj_path, /* object path */
86 "org.openbmc.Flash", /* interface name */
87 NULL, /* GCancellable */
88 &error);
89 g_assert_no_error(error);
90
91 error = NULL;
92 if(strcmp(method,"error")==0) {
93 parm = g_variant_new("(s)",error_msg);
94 }
Brad Bishop0c82c602016-04-13 13:36:49 -040095 g_dbus_proxy_call_sync(proxy,
Brad Bishop77390492016-04-13 10:47:19 -040096 method,
97 parm,
98 G_DBUS_CALL_FLAGS_NONE,
99 -1,
100 NULL,
101 &error);
102
103 g_assert_no_error(error);
104}
105
106static int
107program_file(FlashControl* flash_control, const char *file, uint32_t start, uint32_t size)
108{
109 int fd, rc;
110 ssize_t len;
111 uint32_t actual_size = 0;
112
113 fd = open(file, O_RDONLY);
114 if(fd == -1) {
115 perror("Failed to open file");
116 return(fd);
117 }
118 printf("About to program \"%s\" at 0x%08x..0x%08x !\n",
119 file, start, size);
120
121 printf("Programming & Verifying...\n");
122 //progress_init(size >> 8);
123 unsigned int save_size = size;
124 uint8_t last_progress = 0;
125 while(size) {
126 len = read(fd, file_buf, FILE_BUF_SIZE);
127 if(len < 0) {
128 perror("Error reading file");
129 return(1);
130 }
131 if(len == 0)
132 break;
133 if(len > size)
134 len = size;
135 size -= len;
136 actual_size += len;
Brad Bishop275524e2016-09-08 09:09:55 -0400137 rc = blocklevel_write(bl, start, file_buf, len);
Brad Bishop77390492016-04-13 10:47:19 -0400138 if(rc) {
139 if(rc == FLASH_ERR_VERIFY_FAILURE)
140 fprintf(stderr, "Verification failed for"
141 " chunk at 0x%08x\n", start);
142 else
143 fprintf(stderr, "Flash write error %d for"
144 " chunk at 0x%08x\n", rc, start);
145 return(rc);
146 }
147 start += len;
148 unsigned int percent = (100*actual_size/save_size);
149 uint8_t progress = (uint8_t)(percent);
150 if(progress != last_progress) {
151 flash_control_emit_progress(flash_control,file,progress);
152 last_progress = progress;
153 }
154 }
155 close(fd);
156
Brad Bishop77390492016-04-13 10:47:19 -0400157 return(0);
158}
159
160static void
Brad Bishop77390492016-04-13 10:47:19 -0400161flash_access_cleanup_bmc(void)
162{
163 if(ffsh)
164 ffs_close(ffsh);
Brad Bishop275524e2016-09-08 09:09:55 -0400165 arch_flash_close(bl, NULL);
Brad Bishop77390492016-04-13 10:47:19 -0400166}
167
168static int
Joel Stanley66777052016-11-03 12:21:24 +1030169flash_access_setup_bmc(void)
Brad Bishop77390492016-04-13 10:47:19 -0400170{
171 int rc;
172 printf("Setting up BMC flash\n");
Brad Bishop77390492016-04-13 10:47:19 -0400173
Joel Stanley9d612372016-10-31 17:27:23 +1030174 if(arch_flash_bmc(bl, BMC_MTD) != BMC_MTD) {
Brad Bishop275524e2016-09-08 09:09:55 -0400175 fprintf(stderr, "Failed to init flash chip\n");
Brad Bishop77390492016-04-13 10:47:19 -0400176 return FLASH_SETUP_ERROR;
177 }
178
179 /* Setup cleanup function */
180 atexit(flash_access_cleanup_bmc);
181 return FLASH_OK;
182}
183
184static void
185flash_access_cleanup_pnor(void)
186{
Brad Bishop275524e2016-09-08 09:09:55 -0400187 flash_access_cleanup_bmc();
Brad Bishop77390492016-04-13 10:47:19 -0400188}
189
190static int
Joel Stanley66777052016-11-03 12:21:24 +1030191flash_access_setup_pnor(void)
Brad Bishop77390492016-04-13 10:47:19 -0400192{
193 int rc;
194 printf("Setting up BIOS flash\n");
195
Brad Bishop275524e2016-09-08 09:09:55 -0400196 /* Create the AST flash controller */
Brad Bishop77390492016-04-13 10:47:19 -0400197
198 /* Open flash chip */
Brad Bishop275524e2016-09-08 09:09:55 -0400199 rc = arch_flash_init(&bl, NULL, true);
Brad Bishop77390492016-04-13 10:47:19 -0400200 if(rc) {
201 fprintf(stderr, "Failed to open flash chip\n");
202 return FLASH_SETUP_ERROR;
203 }
204
Brad Bishop77390492016-04-13 10:47:19 -0400205 /* Setup cleanup function */
206 atexit(flash_access_cleanup_pnor);
207 return FLASH_OK;
208}
209
210uint8_t
211flash(FlashControl* flash_control,bool bmc_flash, uint32_t address, char* write_file, char* obj_path)
212{
Brad Bishop77390492016-04-13 10:47:19 -0400213 int rc;
214 printf("flasher: %s, BMC = %d, address = 0x%x\n",write_file,bmc_flash,address);
Brad Bishop77390492016-04-13 10:47:19 -0400215
216 /* Prepare for access */
217 if(bmc_flash) {
Joel Stanley66777052016-11-03 12:21:24 +1030218 rc = flash_access_setup_bmc();
Brad Bishop77390492016-04-13 10:47:19 -0400219 if(rc) {
220 return FLASH_SETUP_ERROR;
221 }
222 } else {
Joel Stanley66777052016-11-03 12:21:24 +1030223 rc = flash_access_setup_pnor();
Brad Bishop77390492016-04-13 10:47:19 -0400224 if(rc) {
225 return FLASH_SETUP_ERROR;
226 }
227 }
228
Brad Bishop77390492016-04-13 10:47:19 -0400229 if(strcmp(write_file,"")!=0)
230 {
231 // If file specified but not size, get size from file
232 struct stat stbuf;
233 if(stat(write_file, &stbuf)) {
234 perror("Failed to get file size");
235 return FLASH_ERROR;
236 }
237 uint32_t write_size = stbuf.st_size;
Brad Bishop77390492016-04-13 10:47:19 -0400238 rc = erase_chip();
239 if(rc) {
240 return FLASH_ERROR;
241 }
242 rc = program_file(flash_control, write_file, address, write_size);
243 if(rc) {
244 return FLASH_ERROR;
245 }
Brad Bishop77390492016-04-13 10:47:19 -0400246
247 printf("Flash done\n");
248 }
249 else
250 {
251 printf("Flash tuned\n");
252 }
253 return FLASH_OK;
254}
255
256static void
257on_bus_acquired(GDBusConnection *connection,
258 const gchar *name,
259 gpointer user_data)
260{
261 cmdline *cmd = user_data;
262 if(cmd->argc < 4)
263 {
264 g_print("flasher [flash name] [filename] [source object]\n");
265 g_main_loop_quit(cmd->loop);
266 return;
267 }
268 printf("Starting flasher: %s,%s,%s,\n",cmd->argv[1],cmd->argv[2],cmd->argv[3]);
269 ObjectSkeleton *object;
270 manager = g_dbus_object_manager_server_new(dbus_object_path);
271 gchar *s;
272 s = g_strdup_printf("%s/%s",dbus_object_path,cmd->argv[1]);
273
274 object = object_skeleton_new(s);
275 g_free(s);
276
277 FlashControl* flash_control = flash_control_skeleton_new();
278 object_skeleton_set_flash_control(object, flash_control);
279 g_object_unref(flash_control);
280
281 /* Export the object (@manager takes its own reference to @object) */
282 g_dbus_object_manager_server_export(manager, G_DBUS_OBJECT_SKELETON(object));
283 g_object_unref(object);
284
285 /* Export all objects */
286 g_dbus_object_manager_server_set_connection(manager, connection);
287 bool bmc_flash = false;
288 uint32_t address = 0;
289 if(strcmp(cmd->argv[1],"bmc")==0) {
290 bmc_flash = true;
291 }
292 if(strcmp(cmd->argv[1],"bmc_ramdisk")==0) {
293 bmc_flash = true;
294 address = 0x20300000;
295 }
296 if(strcmp(cmd->argv[1],"bmc_kernel")==0) {
297 bmc_flash = true;
298 address = 0x20080000;
299 }
300
301 int rc = flash(flash_control,bmc_flash,address,cmd->argv[2],cmd->argv[3]);
302 if(rc) {
303 flash_message(connection,cmd->argv[3],"error","Flash Error");
304 } else {
305 flash_message(connection,cmd->argv[3],"done","");
306 }
307
308 //Object exits when done flashing
309 g_main_loop_quit(cmd->loop);
310}
311
312int
313main(int argc, char *argv[])
314{
315 GMainLoop *loop;
316 cmdline cmd;
317 cmd.argc = argc;
318 cmd.argv = argv;
319
320 guint id;
321 loop = g_main_loop_new(NULL, FALSE);
322 cmd.loop = loop;
323
324 id = g_bus_own_name(DBUS_TYPE,
325 dbus_name,
326 G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
327 G_BUS_NAME_OWNER_FLAGS_REPLACE,
328 on_bus_acquired,
329 NULL,
330 NULL,
331 &cmd,
332 NULL);
333
334 g_main_loop_run(loop);
335
336 g_bus_unown_name(id);
337 g_main_loop_unref(loop);
338
339 return 0;
340}