blob: 853e5298a48c6bc60a897d3e2ae3b1ae53ac5e97 [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>
Stefan Reinauera1e48242011-10-21 14:24:57 -070024#include "swab.h"
Stefan Reinauer9da75702013-01-04 13:51:36 -080025#ifndef __APPLE__
Stefan Reinauera1e48242011-10-21 14:24:57 -070026#define ntohl(x) (host_bigendian?(x):swab32(x))
27#define htonl(x) (host_bigendian?(x):swab32(x))
Stefan Reinauer9da75702013-01-04 13:51:36 -080028#endif
Stefan Reinauera1e48242011-10-21 14:24:57 -070029#define ntohll(x) (host_bigendian?(x):swab64(x))
30#define htonll(x) (host_bigendian?(x):swab64(x))
Patrick Georgib7b56dd82009-09-14 13:29:27 +000031
32extern void *offset;
Stefan Reinauer63217582012-10-29 16:52:36 -070033extern uint32_t romsize;
Stefan Reinauera1e48242011-10-21 14:24:57 -070034extern int host_bigendian;
David Hendricks90ca3b62012-11-16 14:48:22 -080035extern uint32_t arch;
36
37const char *arch_to_string(uint32_t a);
38uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000039
Stefan Reinauera1e48242011-10-21 14:24:57 -070040static inline void *phys_to_virt(uint32_t addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000041{
42 return offset + addr;
43}
44
Stefan Reinauera1e48242011-10-21 14:24:57 -070045static inline uint32_t virt_to_phys(void *addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000046{
Stefan Reinauer853270a2009-09-22 15:55:01 +000047 return (unsigned long)(addr - offset) & 0xffffffff;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000048}
49
50#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
51
Stefan Reinauer63217582012-10-29 16:52:36 -070052size_t getfilesize(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000053void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
54 int place);
55void *loadrom(const char *filename);
Stefan Reinauer9bb043852010-06-24 13:37:59 +000056int writerom(const char *filename, void *start, uint32_t size);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000057
58int iself(unsigned char *input);
59
60typedef void (*comp_func_ptr) (char *, int, char *, int *);
61typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
62
63comp_func_ptr compression_function(comp_algo algo);
64
65uint64_t intfiletype(const char *name);
66
67int parse_elf_to_payload(unsigned char *input, unsigned char **output,
68 comp_algo algo);
69int parse_elf_to_stage(unsigned char *input, unsigned char **output,
70 comp_algo algo, uint32_t * location);
71
72void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
73 uint32_t type, uint32_t * location);
74
75int create_cbfs_image(const char *romfile, uint32_t romsize,
Stefan Reinauera90bd522012-08-15 16:05:50 -070076 const char *bootblock, uint32_t align, uint32_t offs);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000077
78int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location);
Stefan Reinauera90bd522012-08-15 16:05:50 -070079int remove_file_from_cbfs(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000080void print_cbfs_directory(const char *filename);
Aurelien Guillaumefe7d6b92011-01-13 09:09:21 +000081int extract_file_from_cbfs(const char *filename, const char *payloadname, const char *outpath);
Mathias Krause5c581c42012-07-17 21:11:59 +020082int remove_file_from_cbfs(const char *filename);
Stefan Reinauer853270a2009-09-22 15:55:01 +000083
Patrick Georgi0da38dd2009-11-09 17:18:02 +000084uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
85 const char *filename, uint32_t align);
86
Stefan Reinauer07040582010-04-24 21:24:06 +000087void print_supported_filetypes(void);
88
Stefan Reinauer63217582012-10-29 16:52:36 -070089#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
90
91#endif