blob: d39f8fbfbd3e67b736aef652c25eba8d3d30b173 [file] [log] [blame]
Patrick Georgi7333a112020-05-08 20:48:04 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgib7b56dd82009-09-14 13:29:27 +00002
Stefan Reinauer63217582012-10-29 16:52:36 -07003#ifndef __CBFSTOOL_COMMON_H
4#define __CBFSTOOL_COMMON_H
5
Sol Bouchere3260a02015-03-25 13:40:08 -07006#include <stdbool.h>
Sol Boucher69b88bf2015-02-26 11:47:19 -08007#include <stddef.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +00008#include <stdint.h>
Sol Bouchere3260a02015-03-25 13:40:08 -07009#include <string.h>
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080010#include <assert.h>
Hung-Te Lin332795c2013-01-28 15:53:34 +080011
Julius Wernerd4775652020-03-13 16:43:34 -070012#include <commonlib/bsd/cbfs_serialized.h>
Alex James02001a382021-12-19 16:41:59 -060013#include <commonlib/bsd/sysincludes.h>
Furquan Shaikh161d2332016-05-26 14:41:02 -070014#include <commonlib/helpers.h>
Aaron Durbind38e3de2015-10-01 14:25:19 -050015#include <console/console.h>
16
Furquan Shaikh19ba95f2020-11-20 22:50:26 -080017/*
18 * There are two address spaces that this tool deals with - SPI flash address space and host
19 * address space. This macros checks if the address is greater than 2GiB under the assumption
20 * that the low MMIO lives in the top half of the 4G address space of the host.
21 */
22#define IS_HOST_SPACE_ADDRESS(addr) ((uint32_t)(addr) > 0x80000000)
Sol Boucher67d59982015-05-07 02:39:22 -070023
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010024#define unused __attribute__((unused))
25
Julius Wernerefcee762014-11-10 13:14:24 -080026static inline uint32_t align_up(uint32_t value, uint32_t align)
27{
28 if (value % align)
29 value += align - (value % align);
30 return value;
31}
32
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080033/* Buffer and file I/O */
34struct buffer {
35 char *name;
36 char *data;
Sol Boucher64c6cd72015-04-26 02:32:43 -070037 size_t offset;
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080038 size_t size;
39};
40
Aaron Durbin6e8c2792014-03-04 22:01:12 -060041static inline void *buffer_get(const struct buffer *b)
42{
43 return b->data;
44}
45
46static inline size_t buffer_size(const struct buffer *b)
47{
48 return b->size;
49}
50
Aaron Durbin2dd5f4c2016-01-26 09:01:14 -060051static inline size_t buffer_offset(const struct buffer *b)
52{
53 return b->offset;
54}
55
Ricardo Quesadaff236ef2021-08-16 14:36:05 -070056static inline void *buffer_end(const struct buffer *b)
57{
58 return b->data + b->size;
59}
60
Sol Boucher64c6cd72015-04-26 02:32:43 -070061/*
62 * Shrink a buffer toward the beginning of its previous space.
63 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060064static inline void buffer_set_size(struct buffer *b, size_t size)
65{
66 b->size = size;
67}
68
Aaron Durbin4f3bb802014-03-26 22:57:55 -050069/* Initialize a buffer with the given constraints. */
70static inline void buffer_init(struct buffer *b, char *name, void *data,
71 size_t size)
72{
73 b->name = name;
74 b->data = data;
75 b->size = size;
Aaron Durbincd9ba8a2015-10-23 17:36:57 -050076 b->offset = 0;
Aaron Durbin4f3bb802014-03-26 22:57:55 -050077}
78
Sol Boucher1a3349f2015-05-05 18:25:18 -070079/* Splice a buffer into another buffer. Note that it's up to the caller to
Sol Boucher64c6cd72015-04-26 02:32:43 -070080 * bounds check the offset and size. The resulting buffer is backed by the same
81 * storage as the original, so although it is valid to buffer_delete() either
82 * one of them, doing so releases both simultaneously. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060083static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
84 size_t offset, size_t size)
85{
Sol Boucher64c6cd72015-04-26 02:32:43 -070086 dest->name = src->name;
87 dest->data = src->data + offset;
88 dest->offset = src->offset + offset;
89 dest->size = size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -060090}
91
Sol Boucher64c6cd72015-04-26 02:32:43 -070092/*
93 * Shallow copy a buffer. To clean up the resources, buffer_delete()
94 * either one, but not both. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060095static inline void buffer_clone(struct buffer *dest, const struct buffer *src)
96{
Sol Boucher1a3349f2015-05-05 18:25:18 -070097 buffer_splice(dest, src, 0, src->size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -060098}
99
Sol Boucher64c6cd72015-04-26 02:32:43 -0700100/*
101 * Shrink a buffer toward the end of its previous space.
102 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600103static inline void buffer_seek(struct buffer *b, size_t size)
104{
Sol Boucher64c6cd72015-04-26 02:32:43 -0700105 b->offset += size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600106 b->size -= size;
107 b->data += size;
108}
109
Sol Bouchere3260a02015-03-25 13:40:08 -0700110/* Returns whether the buffer begins with the specified magic bytes. */
111static inline bool buffer_check_magic(const struct buffer *b, const char *magic,
112 size_t magic_len)
113{
114 assert(magic);
115 return b && b->size >= magic_len &&
116 memcmp(b->data, magic, magic_len) == 0;
117}
118
Patrick Georgi9b24f7c2015-11-11 18:43:11 +0100119/* Returns the start of the underlying buffer, with the offset undone */
120static inline void *buffer_get_original_backing(const struct buffer *b)
121{
122 if (!b)
123 return NULL;
Aaron Durbin2dd5f4c2016-01-26 09:01:14 -0600124 return buffer_get(b) - buffer_offset(b);
Patrick Georgi9b24f7c2015-11-11 18:43:11 +0100125}
126
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800127/* Creates an empty memory buffer with given size.
128 * Returns 0 on success, otherwise non-zero. */
129int buffer_create(struct buffer *buffer, size_t size, const char *name);
130
131/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
132int buffer_from_file(struct buffer *buffer, const char *filename);
133
Furquan Shaikh2bfef8d2021-06-25 23:55:51 -0700134/* Loads a file into memory buffer (with buffer size rounded up to a multiple of
135 size_granularity). Returns 0 on success, otherwise non-zero. */
136int buffer_from_file_aligned_size(struct buffer *buffer, const char *filename,
137 size_t size_granularity);
138
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800139/* Writes memory buffer content into file.
140 * Returns 0 on success, otherwise non-zero. */
141int buffer_write_file(struct buffer *buffer, const char *filename);
142
143/* Destroys a memory buffer. */
144void buffer_delete(struct buffer *buffer);
145
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800146const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800147uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000148
Patrick Georgi61c82292015-08-26 12:53:41 +0200149/* Compress in_len bytes from in, storing the result at out, returning the
150 * resulting length in out_len.
151 * Returns 0 on error,
152 * != 0 otherwise, depending on the compressing function.
153 */
154typedef int (*comp_func_ptr) (char *in, int in_len, char *out, int *out_len);
155
156/* Decompress in_len bytes from in, storing the result at out, up to out_len
157 * bytes.
158 * Returns 0 on error,
159 * != 0 otherwise, depending on the decompressing function.
160 */
Aaron Durbin5213c532015-10-23 17:38:40 -0500161typedef int (*decomp_func_ptr) (char *in, int in_len, char *out, int out_len,
162 size_t *actual_size);
Patrick Georgi61c82292015-08-26 12:53:41 +0200163
Julius Wernerd4775652020-03-13 16:43:34 -0700164comp_func_ptr compression_function(enum cbfs_compression algo);
165decomp_func_ptr decompression_function(enum cbfs_compression algo);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000166
167uint64_t intfiletype(const char *name);
168
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800169/* cbfs-mkpayload.c */
Sol Boucher0e539312015-03-05 15:38:03 -0800170int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
Julius Wernerd4775652020-03-13 16:43:34 -0700171 enum cbfs_compression algo);
Sol Boucher6310ccc2015-05-07 21:12:28 -0700172int parse_fv_to_payload(const struct buffer *input, struct buffer *output,
Julius Wernerd4775652020-03-13 16:43:34 -0700173 enum cbfs_compression algo);
Patrick Rudolph7ee05ed2018-04-26 09:35:13 +0200174int parse_fit_to_payload(const struct buffer *input, struct buffer *output,
Julius Wernerd4775652020-03-13 16:43:34 -0700175 enum cbfs_compression algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200176int parse_bzImage_to_payload(const struct buffer *input,
177 struct buffer *output, const char *initrd,
Julius Wernerd4775652020-03-13 16:43:34 -0700178 char *cmdline, enum cbfs_compression algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800179int parse_flat_binary_to_payload(const struct buffer *input,
180 struct buffer *output,
181 uint32_t loadaddress,
182 uint32_t entrypoint,
Julius Wernerd4775652020-03-13 16:43:34 -0700183 enum cbfs_compression algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800184/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800185int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Julius Werner81dc20e2020-10-15 17:37:57 -0700186 const char *ignore_section,
187 struct cbfs_file_attr_stageheader *stageheader);
Aaron Durbin4be16742015-09-15 17:00:23 -0500188/* location is TOP aligned. */
189int parse_elf_to_xip_stage(const struct buffer *input, struct buffer *output,
Arthur Heymans5bb7dc42021-06-22 15:21:46 +0200190 uint32_t location, const char *ignore_section,
Julius Werner81dc20e2020-10-15 17:37:57 -0700191 struct cbfs_file_attr_stageheader *stageheader);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000192
Jonathan Neuschäferfbc66b92018-04-08 15:05:09 +0200193void print_supported_architectures(void);
Stefan Reinauer07040582010-04-24 21:24:06 +0000194void print_supported_filetypes(void);
195
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800196/* lzma/lzma.c */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800197int do_lzma_compress(char *in, int in_len, char *out, int *out_len);
Aaron Durbin5213c532015-10-23 17:38:40 -0500198int do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len,
199 size_t *actual_size);
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100200
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800201/* xdr.c */
202struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600203 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800204 uint16_t (*get16)(struct buffer *input);
205 uint32_t (*get32)(struct buffer *input);
206 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600207 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800208 void (*put16)(struct buffer *input, uint16_t val);
209 void (*put32)(struct buffer *input, uint32_t val);
210 void (*put64)(struct buffer *input, uint64_t val);
211};
212
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800213extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500214size_t bgets(struct buffer *input, void *output, size_t len);
215size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700216
Patrick Georgica97fa72015-10-01 15:52:56 +0200217/* Returns a 0-terminated string containing a hex representation of
218 * len bytes starting at data.
219 * The string is malloc'd and it's the caller's responsibility to free
220 * the memory.
221 * On error, bintohex returns NULL.
222 */
223char *bintohex(uint8_t *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700224#endif