blob: 3a5bddbbda9af086219a5e3eafb40eb3ea755f62 [file] [log] [blame]
Patrick Georgi269e9322011-01-21 07:24:08 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Jordan Crouse <jordan@cosmicpenguin.net>
5 *
6 * This file is dual-licensed. You can choose between:
7 * - The GNU GPL, version 2, as published by the Free Software Foundation
8 * - The revised BSD license (without advertising clause)
9 *
10 * ---------------------------------------------------------------------------
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Patrick Georgi269e9322011-01-21 07:24:08 +000019 * ---------------------------------------------------------------------------
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 * 3. The name of the author may not be used to endorse or promote products
29 * derived from this software without specific prior written permission.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
32 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
35 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
39 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * SUCH DAMAGE.
42 * ---------------------------------------------------------------------------
43 */
44
45#ifndef _CBFS_H_
46#define _CBFS_H_
47
48#include "coreboot_tables.h"
49
50typedef uint64_t u64;
51typedef uint32_t u32;
52typedef uint16_t u16;
53typedef uint8_t u8;
54
55/** These are standard values for the known compression
56 alogrithms that coreboot knows about for stages and
57 payloads. Of course, other CBFS users can use whatever
58 values they want, as long as they understand them. */
59
60#define CBFS_COMPRESS_NONE 0
61#define CBFS_COMPRESS_LZMA 1
Julius Werner09f29212015-09-29 13:51:35 -070062#define CBFS_COMPRESS_LZ4 2
Patrick Georgi269e9322011-01-21 07:24:08 +000063
64/** These are standard component types for well known
65 components (i.e - those that coreboot needs to consume.
66 Users are welcome to use any other value for their
67 components */
68
69#define CBFS_TYPE_STAGE 0x10
70#define CBFS_TYPE_PAYLOAD 0x20
71#define CBFS_TYPE_OPTIONROM 0x30
72#define CBFS_TYPE_BOOTSPLASH 0x40
73#define CBFS_TYPE_RAW 0x50
74#define CBFS_TYPE_VSA 0x51
75#define CBFS_TYPE_MBI 0x52
76#define CBFS_TYPE_MICROCODE 0x53
77#define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
78#define CBFS_COMPONENT_CMOS_LAYOUT 0x01aa
79
80
81/** this is the master cbfs header - it need to be
82 located somewhere in the bootblock. Where it
83 actually lives is up to coreboot. A pointer to
84 this header will live at 0xFFFFFFFc, so we can
85 easily find it. */
86
87#define CBFS_HEADER_MAGIC 0x4F524243
88#define CBFS_HEADPTR_ADDR 0xFFFFFFFc
Hung-Te Lin086842a2013-01-04 12:33:03 +080089#define CBFS_HEADER_VERSION1 0x31313131
Patrick Georgi269e9322011-01-21 07:24:08 +000090
91struct cbfs_header {
92 u32 magic;
93 u32 version;
94 u32 romsize;
95 u32 bootblocksize;
96 u32 align;
97 u32 offset;
98 u32 pad[2];
99} __attribute__((packed));
100
101/** This is a component header - every entry in the CBFS
102 will have this header.
103
104 This is how the component is arranged in the ROM:
105
106 -------------- <- 0
107 component header
108 -------------- <- sizeof(struct component)
109 component name
110 -------------- <- offset
111 data
112 ...
113 -------------- <- offset + len
114*/
115
116#define CBFS_FILE_MAGIC "LARCHIVE"
117
118struct cbfs_file {
119 char magic[8];
120 u32 len;
121 u32 type;
122 u32 checksum;
123 u32 offset;
124} __attribute__((packed));
125
126/*** Component sub-headers ***/
127
128/* Following are component sub-headers for the "standard"
129 component types */
130
131/** This is the sub-header for stage components. Stages are
132 loaded by coreboot during the normal boot process */
133
134struct cbfs_stage {
135 u32 compression; /** Compression type */
136 u64 entry; /** entry point */
137 u64 load; /** Where to load in memory */
138 u32 len; /** length of data to load */
139 u32 memlen; /** total length of object in memory */
140} __attribute__((packed));
141
142/** this is the sub-header for payload components. Payloads
143 are loaded by coreboot at the end of the boot process */
144
145struct cbfs_payload_segment {
146 u32 type;
147 u32 compression;
148 u32 offset;
149 u64 load_addr;
150 u32 len;
151 u32 mem_len;
152} __attribute__((packed));
153
154struct cbfs_payload {
155 struct cbfs_payload_segment segments;
156};
157
158#define PAYLOAD_SEGMENT_CODE 0x45444F43
159#define PAYLOAD_SEGMENT_DATA 0x41544144
160#define PAYLOAD_SEGMENT_BSS 0x20535342
161#define PAYLOAD_SEGMENT_PARAMS 0x41524150
162#define PAYLOAD_SEGMENT_ENTRY 0x52544E45
163
164struct cbfs_optionrom {
165 u32 compression;
166 u32 len;
167} __attribute__((packed));
168
169#define CBFS_NAME(_c) (((char *) (_c)) + sizeof(struct cbfs_file))
170#define CBFS_SUBHEADER(_p) ( (void *) ((((u8 *) (_p)) + ntohl((_p)->offset))) )
171
172void * cbfs_get_file(const char *name);
173struct cbfs_file *cbfs_find(const char *name);
174void *cbfs_find_file(const char *name, unsigned int type, unsigned int *len);
175
176void open_cbfs(const char *filename);
177#endif