mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 02:20:48 +00:00
Make EC FMAP more compliant to existing devices (EC_RO, EC_RW, RW_FWID), eliminating unnecessary areas (RO_SETION, EC_IMAGE), and add more detailed comments to each area. BUG=chrome-os-partner:11360 TEST=emerge-link chromeos-ec; dump_fmap -x ec.bin Change-Id: I3d30d6fe0d3cee2e944009dccef488f7215b6395 Signed-off-by: Hung-Te Lin <hungte@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/27739
159 lines
4.2 KiB
C
159 lines
4.2 KiB
C
/*
|
|
* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "board.h"
|
|
#include "common.h"
|
|
#include "config.h"
|
|
#include "version.h"
|
|
|
|
/* FMAP structs. See http://code.google.com/p/flashmap/wiki/FmapSpec */
|
|
#define FMAP_NAMELEN 32
|
|
#define FMAP_SIGNATURE "__FMAP__"
|
|
#define FMAP_SIGNATURE_SIZE 8
|
|
#define FMAP_VER_MAJOR 1
|
|
#define FMAP_VER_MINOR 0
|
|
|
|
typedef struct _FmapHeader {
|
|
char fmap_signature[FMAP_SIGNATURE_SIZE];
|
|
uint8_t fmap_ver_major;
|
|
uint8_t fmap_ver_minor;
|
|
uint64_t fmap_base;
|
|
uint32_t fmap_size;
|
|
char fmap_name[FMAP_NAMELEN];
|
|
uint16_t fmap_nareas;
|
|
} __packed FmapHeader;
|
|
|
|
#define FMAP_AREA_STATIC (1 << 0) /* can be checksummed */
|
|
#define FMAP_AREA_COMPRESSED (1 << 1) /* may be compressed */
|
|
#define FMAP_AREA_RO (1 << 2) /* writes may fail */
|
|
|
|
typedef struct _FmapAreaHeader {
|
|
uint32_t area_offset;
|
|
uint32_t area_size;
|
|
char area_name[FMAP_NAMELEN];
|
|
uint16_t area_flags;
|
|
} __packed FmapAreaHeader;
|
|
|
|
#ifdef CONFIG_VBOOT_SIG
|
|
#define NUM_EC_FMAP_AREAS (7 + 4)
|
|
#else
|
|
#define NUM_EC_FMAP_AREAS 7
|
|
#endif
|
|
|
|
const struct _ec_fmap {
|
|
FmapHeader header;
|
|
FmapAreaHeader area[NUM_EC_FMAP_AREAS];
|
|
} ec_fmap __attribute__((section(".google"))) = {
|
|
/* Header */
|
|
{
|
|
.fmap_signature = {'_', '_', 'F', 'M', 'A', 'P', '_', '_'},
|
|
.fmap_ver_major = FMAP_VER_MAJOR,
|
|
.fmap_ver_minor = FMAP_VER_MINOR,
|
|
.fmap_base = CONFIG_FLASH_BASE,
|
|
.fmap_size = CONFIG_FLASH_SIZE,
|
|
.fmap_name = "EC_FMAP",
|
|
.fmap_nareas = NUM_EC_FMAP_AREAS,
|
|
},
|
|
|
|
{
|
|
/* RO Firmware */
|
|
{
|
|
/* Range of RO firmware to be updated. Verified in
|
|
* factory finalization by hash. Should not have
|
|
* volatile data (ex, calibration results). */
|
|
.area_name = "EC_RO",
|
|
.area_offset = CONFIG_SECTION_RO_OFF,
|
|
.area_size = CONFIG_SECTION_RO_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
{
|
|
/* (Optional) RO firmware boot execution code. */
|
|
.area_name = "BOOT_STUB",
|
|
.area_offset = CONFIG_FW_RO_OFF,
|
|
.area_size = CONFIG_FW_RO_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
{
|
|
/* RO firmware version ID. Must be NULL terminated
|
|
* ASCIIZ, and padded with \0. */
|
|
.area_name = "RO_FRID",
|
|
.area_offset = CONFIG_FW_RO_OFF +
|
|
(uint32_t)__version_struct_offset +
|
|
offsetof(struct version_struct, version),
|
|
.area_size = sizeof(version_data.version),
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
|
|
/* Other RO stuff: FMAP, WP, KEYS, etc. */
|
|
{
|
|
.area_name = "FMAP",
|
|
.area_offset = (uint32_t)&ec_fmap,
|
|
.area_size = sizeof(ec_fmap),
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
{
|
|
/* The range for write protection, for factory
|
|
* finalization. Should include (or identical to)
|
|
* EC_RO and aligned to hardware specification. */
|
|
.area_name = "WP_RO",
|
|
.area_offset = CONFIG_SECTION_RO_OFF,
|
|
.area_size = CONFIG_SECTION_RO_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
#ifdef CONFIG_VBOOT_SIG
|
|
{
|
|
.area_name = "ROOT_KEY",
|
|
.area_offset = CONFIG_VBOOT_ROOTKEY_OFF,
|
|
.area_size = CONFIG_VBOOT_ROOTKEY_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
#endif
|
|
|
|
/* RW Firmware */
|
|
{
|
|
/* The range of RW firmware to be auto-updated. */
|
|
.area_name = "EC_RW",
|
|
.area_offset = CONFIG_SECTION_RW_OFF,
|
|
.area_size = CONFIG_SECTION_RW_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC | FMAP_AREA_RO,
|
|
},
|
|
{
|
|
/* RW firmware version ID. Must be NULL terminated
|
|
* ASCIIZ, and padded with \0. */
|
|
.area_name = "RW_FWID",
|
|
.area_offset = CONFIG_FW_RW_OFF +
|
|
(uint32_t)__version_struct_offset +
|
|
offsetof(struct version_struct, version),
|
|
.area_size = sizeof(version_data.version),
|
|
.area_flags = FMAP_AREA_STATIC,
|
|
},
|
|
|
|
#ifdef CONFIG_VBOOT_SIG
|
|
/* Firmware A */
|
|
{
|
|
.area_name = "RW_SECTION_A",
|
|
.area_offset = CONFIG_SECTION_RW_OFF,
|
|
.area_size = CONFIG_SECTION_RW_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC,
|
|
},
|
|
{
|
|
.area_name = "FW_MAIN_A",
|
|
.area_offset = CONFIG_FW_RW_OFF,
|
|
.area_size = CONFIG_FW_RW_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC,
|
|
},
|
|
{
|
|
.area_name = "VBLOCK_A",
|
|
.area_offset = CONFIG_VBLOCK_RW_OFF,
|
|
.area_size = CONFIG_VBLOCK_SIZE,
|
|
.area_flags = FMAP_AREA_STATIC,
|
|
},
|
|
#endif
|
|
}
|
|
};
|