blob: 5315e69bed86d9fe94ecf4bd501c52b1f28cf9bb [file] [log] [blame]
Patrick Georgib7b56dd82009-09-14 13:29:27 +00001/*
2 * Copyright (C) 2009 coresystems GmbH
3 * written by Patrick Georgi <patrick.georgi@coresystems.de>
David Hendricks90ca3b62012-11-16 14:48:22 -08004 * Copyright (C) 2012 Google, Inc.
Patrick Georgib7b56dd82009-09-14 13:29:27 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
18 */
19
Stefan Reinauer63217582012-10-29 16:52:36 -070020#ifndef __CBFSTOOL_COMMON_H
21#define __CBFSTOOL_COMMON_H
22
Patrick Georgib7b56dd82009-09-14 13:29:27 +000023#include <stdint.h>
Hung-Te Lin332795c2013-01-28 15:53:34 +080024
25/* Endianess */
Stefan Reinauera1e48242011-10-21 14:24:57 -070026#include "swab.h"
Stefan Reinauer9da75702013-01-04 13:51:36 -080027#ifndef __APPLE__
Hung-Te Lin332795c2013-01-28 15:53:34 +080028#define ntohl(x) (is_big_endian() ? (x) : swab32(x))
29#define htonl(x) (is_big_endian() ? (x) : swab32(x))
Stefan Reinauer9da75702013-01-04 13:51:36 -080030#endif
Hung-Te Lin332795c2013-01-28 15:53:34 +080031#define ntohll(x) (is_big_endian() ? (x) : swab64(x))
32#define htonll(x) (is_big_endian() ? (x) : swab64(x))
33extern int is_big_endian(void);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000034
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080035/* Message output */
36extern int verbose;
37#define ERROR(x...) { fprintf(stderr, "E: " x); }
38#define WARN(x...) { fprintf(stderr, "W: " x); }
39#define LOG(x...) { fprintf(stderr, x); }
40#define INFO(x...) { if (verbose > 0) fprintf(stderr, "INFO: " x); }
41#define DEBUG(x...) { if (verbose > 1) fprintf(stderr, "DEBUG: " x); }
42
Patrick Georgib7b56dd82009-09-14 13:29:27 +000043extern void *offset;
Stefan Reinauer63217582012-10-29 16:52:36 -070044extern uint32_t romsize;
Stefan Reinauera1e48242011-10-21 14:24:57 -070045extern int host_bigendian;
David Hendricks90ca3b62012-11-16 14:48:22 -080046extern uint32_t arch;
47
48const char *arch_to_string(uint32_t a);
49uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000050
Stefan Reinauera1e48242011-10-21 14:24:57 -070051static inline void *phys_to_virt(uint32_t addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000052{
53 return offset + addr;
54}
55
Stefan Reinauera1e48242011-10-21 14:24:57 -070056static inline uint32_t virt_to_phys(void *addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000057{
Stefan Reinauer853270a2009-09-22 15:55:01 +000058 return (unsigned long)(addr - offset) & 0xffffffff;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000059}
60
61#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
62
Stefan Reinauer63217582012-10-29 16:52:36 -070063size_t getfilesize(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000064void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
65 int place);
66void *loadrom(const char *filename);
Stefan Reinauer9bb043852010-06-24 13:37:59 +000067int writerom(const char *filename, void *start, uint32_t size);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000068
69int iself(unsigned char *input);
70
71typedef void (*comp_func_ptr) (char *, int, char *, int *);
72typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
73
74comp_func_ptr compression_function(comp_algo algo);
75
76uint64_t intfiletype(const char *name);
77
Hung-Te Lin05dccae2013-01-28 15:04:30 +080078/* cbfs-mkpayload.c */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000079int parse_elf_to_payload(unsigned char *input, unsigned char **output,
80 comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +080081int parse_flat_binary_to_payload(unsigned char *input, unsigned char **output,
82 int32_t input_size, uint32_t loadaddress,
83 uint32_t entrypoint, comp_algo algo);
84/* cbfs-mkstage.c */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000085int parse_elf_to_stage(unsigned char *input, unsigned char **output,
86 comp_algo algo, uint32_t * location);
87
88void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
89 uint32_t type, uint32_t * location);
90
91int create_cbfs_image(const char *romfile, uint32_t romsize,
Stefan Reinauera90bd522012-08-15 16:05:50 -070092 const char *bootblock, uint32_t align, uint32_t offs);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000093
94int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location);
Stefan Reinauera90bd522012-08-15 16:05:50 -070095int remove_file_from_cbfs(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000096void print_cbfs_directory(const char *filename);
Aurelien Guillaumefe7d6b92011-01-13 09:09:21 +000097int extract_file_from_cbfs(const char *filename, const char *payloadname, const char *outpath);
Mathias Krause5c581c42012-07-17 21:11:59 +020098int remove_file_from_cbfs(const char *filename);
Stefan Reinauer853270a2009-09-22 15:55:01 +000099
Patrick Georgi0da38dd2009-11-09 17:18:02 +0000100uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
101 const char *filename, uint32_t align);
102
Stefan Reinauer07040582010-04-24 21:24:06 +0000103void print_supported_filetypes(void);
104
Stefan Reinauer63217582012-10-29 16:52:36 -0700105#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
106
107#endif