2009-03-31 13:57:36 +02:00
|
|
|
/*
|
2009-09-14 15:29:27 +02:00
|
|
|
* Copyright (C) 2009 coresystems GmbH
|
|
|
|
* written by Patrick Georgi <patrick.georgi@coresystems.de>
|
2009-03-31 13:57:36 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-10-30 00:52:36 +01:00
|
|
|
#ifndef __CBFS_H
|
|
|
|
#define __CBFS_H
|
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
#include <stdint.h>
|
2013-12-30 22:16:18 +01:00
|
|
|
|
|
|
|
/* create a magic number in host-byte order.
|
|
|
|
* b3 is the high order byte.
|
|
|
|
* in the coreboot tools, we go with the 32-bit
|
|
|
|
* magic number convention.
|
|
|
|
* This was an inline func but that breaks anything
|
|
|
|
* that uses it in a case statement.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define makemagic(b3, b2, b1, b0)\
|
|
|
|
(((b3)<<24) | ((b2) << 16) | ((b1) << 8) | (b0))
|
2009-03-31 13:57:36 +02:00
|
|
|
|
2012-11-16 23:48:22 +01:00
|
|
|
#define CBFS_HEADER_MAGIC 0x4F524243
|
|
|
|
#define CBFS_HEADPTR_ADDR_X86 0xFFFFFFFC
|
2013-01-04 05:33:03 +01:00
|
|
|
#define CBFS_HEADER_VERSION1 0x31313131
|
|
|
|
#define CBFS_HEADER_VERSION2 0x31313132
|
|
|
|
#define CBFS_HEADER_VERSION CBFS_HEADER_VERSION2
|
2012-11-16 23:48:22 +01:00
|
|
|
|
2009-04-14 02:08:34 +02:00
|
|
|
struct cbfs_header {
|
2009-09-14 15:29:27 +02:00
|
|
|
uint32_t magic;
|
|
|
|
uint32_t version;
|
|
|
|
uint32_t romsize;
|
|
|
|
uint32_t bootblocksize;
|
|
|
|
uint32_t align;
|
|
|
|
uint32_t offset;
|
2012-11-16 23:48:22 +01:00
|
|
|
uint32_t architecture; /* Version 2 */
|
|
|
|
uint32_t pad[1];
|
2009-03-31 13:57:36 +02:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2012-11-16 23:48:22 +01:00
|
|
|
#define CBFS_ARCHITECTURE_UNKNOWN 0xFFFFFFFF
|
|
|
|
#define CBFS_ARCHITECTURE_X86 0x00000001
|
|
|
|
#define CBFS_ARCHITECTURE_ARMV7 0x00000010
|
|
|
|
|
2013-01-28 18:56:17 +01:00
|
|
|
#define CBFS_FILE_MAGIC "LARCHIVE"
|
|
|
|
|
2009-04-14 02:08:34 +02:00
|
|
|
struct cbfs_file {
|
2011-10-21 23:24:57 +02:00
|
|
|
uint8_t magic[8];
|
2009-09-14 15:29:27 +02:00
|
|
|
uint32_t len;
|
|
|
|
uint32_t type;
|
|
|
|
uint32_t checksum;
|
|
|
|
uint32_t offset;
|
2009-03-31 13:57:36 +02:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2009-04-14 02:08:34 +02:00
|
|
|
struct cbfs_stage {
|
2011-10-21 23:24:57 +02:00
|
|
|
uint32_t compression;
|
|
|
|
uint64_t entry;
|
|
|
|
uint64_t load;
|
|
|
|
uint32_t len;
|
|
|
|
uint32_t memlen;
|
2009-03-31 13:57:36 +02:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2013-12-30 22:16:18 +01:00
|
|
|
#define PAYLOAD_SEGMENT_CODE makemagic('C', 'O', 'D', 'E')
|
|
|
|
#define PAYLOAD_SEGMENT_DATA makemagic('D', 'A', 'T', 'A')
|
2014-04-17 07:52:59 +02:00
|
|
|
#define PAYLOAD_SEGMENT_BSS makemagic('B', 'S', 'S', ' ')
|
2013-12-30 22:16:18 +01:00
|
|
|
#define PAYLOAD_SEGMENT_PARAMS makemagic('P', 'A', 'R', 'A')
|
|
|
|
#define PAYLOAD_SEGMENT_ENTRY makemagic('E', 'N', 'T', 'R')
|
2009-03-31 13:57:36 +02:00
|
|
|
|
2009-04-14 02:08:34 +02:00
|
|
|
struct cbfs_payload_segment {
|
2011-10-21 23:24:57 +02:00
|
|
|
uint32_t type;
|
|
|
|
uint32_t compression;
|
|
|
|
uint32_t offset;
|
|
|
|
uint64_t load_addr;
|
|
|
|
uint32_t len;
|
|
|
|
uint32_t mem_len;
|
2009-03-31 13:57:36 +02:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2009-04-14 02:08:34 +02:00
|
|
|
struct cbfs_payload {
|
|
|
|
struct cbfs_payload_segment segments;
|
2009-09-14 15:29:27 +02:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
|
|
|
/** These are standard component types for well known
|
|
|
|
components (i.e - those that coreboot needs to consume.
|
|
|
|
Users are welcome to use any other value for their
|
|
|
|
components */
|
2009-03-31 13:57:36 +02:00
|
|
|
|
2010-03-01 09:34:19 +01:00
|
|
|
#define CBFS_COMPONENT_STAGE 0x10
|
|
|
|
#define CBFS_COMPONENT_PAYLOAD 0x20
|
|
|
|
#define CBFS_COMPONENT_OPTIONROM 0x30
|
|
|
|
#define CBFS_COMPONENT_BOOTSPLASH 0x40
|
|
|
|
#define CBFS_COMPONENT_RAW 0x50
|
|
|
|
#define CBFS_COMPONENT_VSA 0x51
|
|
|
|
#define CBFS_COMPONENT_MBI 0x52
|
|
|
|
#define CBFS_COMPONENT_MICROCODE 0x53
|
2011-01-14 08:40:24 +01:00
|
|
|
#define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
|
2011-01-18 14:56:36 +01:00
|
|
|
#define CBFS_COMPONENT_CMOS_LAYOUT 0x01aa
|
2009-03-31 13:57:36 +02:00
|
|
|
|
2009-09-14 15:29:27 +02:00
|
|
|
/* The deleted type is chosen to be a value
|
|
|
|
* that can be written in a FLASH from all other
|
2010-04-27 08:56:47 +02:00
|
|
|
* values.
|
2009-09-14 15:29:27 +02:00
|
|
|
*/
|
|
|
|
#define CBFS_COMPONENT_DELETED 0
|
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
/* for all known FLASH, this value can be changed
|
|
|
|
* to all other values. This allows NULL files to be
|
2009-09-14 15:29:27 +02:00
|
|
|
* changed without a block erase
|
|
|
|
*/
|
|
|
|
#define CBFS_COMPONENT_NULL 0xFFFFFFFF
|
2009-03-31 13:57:36 +02:00
|
|
|
|
2013-01-28 19:15:49 +01:00
|
|
|
#define CBFS_NAME(_c) (((char *) (_c)) + sizeof(struct cbfs_file))
|
2013-01-19 00:53:22 +01:00
|
|
|
#define CBFS_SUBHEADER(_p) ( (void *) ((((uint8_t *) (_p)) + ntohl((_p)->offset))) )
|
2013-12-30 22:16:18 +01:00
|
|
|
/* cbfs_image.c */
|
|
|
|
uint32_t get_cbfs_entry_type(const char *name, uint32_t default_value);
|
|
|
|
const char *get_cbfs_entry_type_name(uint32_t type);
|
|
|
|
uint32_t get_cbfs_compression(const char *name, uint32_t unknown);
|
|
|
|
|
2014-02-05 02:35:44 +01:00
|
|
|
/* common.c */
|
|
|
|
void cbfs_file_get_header(struct buffer *buf, struct cbfs_file *file);
|
|
|
|
|
2014-02-04 17:29:35 +01:00
|
|
|
/* cbfs-mkpayload.c */
|
|
|
|
void xdr_segs(struct buffer *output,
|
|
|
|
struct cbfs_payload_segment *segs, int nseg);
|
2014-08-05 17:48:20 +02:00
|
|
|
void xdr_get_seg(struct cbfs_payload_segment *out,
|
|
|
|
struct cbfs_payload_segment *in);
|
2014-02-04 17:29:35 +01:00
|
|
|
|
2012-10-30 00:52:36 +01:00
|
|
|
#endif
|