Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Unified Diff: lib/chromeos/load_util.c

Issue 6628009: Add a wrapper function of LoadKernel() (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Fix bug found when integrated with recovery firmware Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/chromeos/Makefile ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/chromeos/load_util.c
diff --git a/lib/chromeos/load_util.c b/lib/chromeos/load_util.c
new file mode 100644
index 0000000000000000000000000000000000000000..6f3659fa0d9a57568179ae5792d887ed408ba372
--- /dev/null
+++ b/lib/chromeos/load_util.c
@@ -0,0 +1,107 @@
+/*
+ * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ * Alternatively, this software may be distributed under the terms of the
+ * GNU General Public License ("GPL") version 2 as published by the Free
+ * Software Foundation.
+ */
+
+#include <common.h>
+#include <malloc.h>
+#include <chromeos/boot_device_impl.h>
+#include <chromeos/firmware_storage.h>
+#include <chromeos/load_util.h>
+
+/* vboot_reference interface */
+#include <vboot_struct.h>
+
+#define PREFIX "load_kernel_wrapper: "
+
+int load_kernel_wrapper(LoadKernelParams *params, uint64_t boot_flags)
+{
+ int status = LOAD_KERNEL_NOT_FOUND;
+ firmware_storage_t file;
+ block_dev_desc_t *dev_desc;
+ VbNvContext vnc;
+
+ if (init_firmware_storage(&file)) {
+ debug(PREFIX "init_firmware_storage fail\n");
+ return LOAD_KERNEL_NOT_FOUND;
+ }
+
+ dev_desc = get_bootdev();
+ if (!dev_desc) {
+ debug(PREFIX "get_bootdev fail\n");
+ goto EXIT;
+ }
+
+ if (boot_flags | BOOT_FLAG_RECOVERY) {
+ params->shared_data_blob = NULL;
+ params->shared_data_size = 0;
+ } else {
+ params->shared_data_blob =
+ (uint8_t *) CONFIG_VB_SHARED_DATA_BLOB;
+ params->shared_data_size = CONFIG_VB_SHARED_DATA_SIZE;
+ }
+
+ params->bytes_per_lba = (uint64_t) dev_desc->blksz;
+ params->ending_lba = (uint64_t) get_limit() - 1;
+
+ params->kernel_buffer = (uint8_t *) CONFIG_LOADADDR;
+ params->kernel_buffer_size = CONFIG_MAX_KERNEL_SIZE;
+
+ params->boot_flags = boot_flags;
+
+ /* read gbb */
+ params->gbb_size = CONFIG_LENGTH_GBB;
+ params->gbb_data = malloc(CONFIG_LENGTH_GBB);
+ if (!params->gbb_data) {
+ debug(PREFIX "cannot malloc gbb\n");
+ goto EXIT;
+ }
+ if (read_firmware_device(&file, CONFIG_OFFSET_GBB,
+ params->gbb_data,
+ params->gbb_size)) {
+ debug(PREFIX "read gbb fail\n");
+ goto EXIT;
+ }
+
+ /* TODO: load vnc.raw from NV storage */
+ params->nv_context = &vnc;
+
+ debug(PREFIX "call LoadKernel() with parameters...\n");
+ debug(PREFIX "header_sign_key_blob: 0x%p\n",
+ params.header_sign_key_blob);
+ debug(PREFIX "bytes_per_lba: %d\n",
+ (int) params.bytes_per_lba);
+ debug(PREFIX "ending_lba: 0x%08x\n",
+ (int) params.ending_lba);
+ debug(PREFIX "kernel_buffer: 0x%p\n",
+ params.kernel_buffer);
+ debug(PREFIX "kernel_buffer_size: 0x%08x\n",
+ (int) params.kernel_buffer_size);
+ debug(PREFIX "boot_flags: 0x%08x\n",
+ (int) params.boot_flags);
+
+ status = LoadKernel(params);
+
+ debug(PREFIX "LoadKernel status: %d\n", status);
+ if (status == LOAD_KERNEL_SUCCESS) {
+ debug(PREFIX "partition_number: 0x%08x\n",
+ (int) params->partition_number);
+ debug(PREFIX "bootloader_address: 0x%08x\n",
+ (int) params->bootloader_address);
+ debug(PREFIX "bootloader_size: 0x%08x\n",
+ (int) params->bootloader_size);
+ }
+
+ if (vnc.raw_changed) {
+ /* TODO: save vnc.raw to NV storage */
+ }
+
+EXIT:
+ release_firmware_storage(&file);
robotboy 2011/03/11 18:56:18 Should the malloced gbb_data be freed here if the
Che-Liang Chiou 2011/03/14 05:51:40 Good point. Change the logic here to 'not fee gbb
+ return status;
+}
« no previous file with comments | « lib/chromeos/Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698