blob: b5258a3e6d0ec18be907f128edbddb707a23e7e7 [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"
25#define ntohl(x) (host_bigendian?(x):swab32(x))
26#define htonl(x) (host_bigendian?(x):swab32(x))
27#define ntohll(x) (host_bigendian?(x):swab64(x))
28#define htonll(x) (host_bigendian?(x):swab64(x))
Patrick Georgib7b56dd82009-09-14 13:29:27 +000029
30extern void *offset;
Stefan Reinauer63217582012-10-29 16:52:36 -070031extern uint32_t romsize;
Stefan Reinauera1e48242011-10-21 14:24:57 -070032extern int host_bigendian;
David Hendricks90ca3b62012-11-16 14:48:22 -080033extern uint32_t arch;
34
35const char *arch_to_string(uint32_t a);
36uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000037
Stefan Reinauera1e48242011-10-21 14:24:57 -070038static inline void *phys_to_virt(uint32_t addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000039{
40 return offset + addr;
41}
42
Stefan Reinauera1e48242011-10-21 14:24:57 -070043static inline uint32_t virt_to_phys(void *addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000044{
Stefan Reinauer853270a2009-09-22 15:55:01 +000045 return (unsigned long)(addr - offset) & 0xffffffff;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000046}
47
48#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
49
Stefan Reinauer63217582012-10-29 16:52:36 -070050size_t getfilesize(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000051void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
52 int place);
53void *loadrom(const char *filename);
Stefan Reinauer9bb043852010-06-24 13:37:59 +000054int writerom(const char *filename, void *start, uint32_t size);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000055
56int iself(unsigned char *input);
57
58typedef void (*comp_func_ptr) (char *, int, char *, int *);
59typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
60
61comp_func_ptr compression_function(comp_algo algo);
62
63uint64_t intfiletype(const char *name);
64
65int parse_elf_to_payload(unsigned char *input, unsigned char **output,
66 comp_algo algo);
67int parse_elf_to_stage(unsigned char *input, unsigned char **output,
68 comp_algo algo, uint32_t * location);
69
70void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
71 uint32_t type, uint32_t * location);
72
73int create_cbfs_image(const char *romfile, uint32_t romsize,
Stefan Reinauera90bd522012-08-15 16:05:50 -070074 const char *bootblock, uint32_t align, uint32_t offs);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000075
76int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location);
Stefan Reinauera90bd522012-08-15 16:05:50 -070077int remove_file_from_cbfs(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000078void print_cbfs_directory(const char *filename);
Aurelien Guillaumefe7d6b92011-01-13 09:09:21 +000079int extract_file_from_cbfs(const char *filename, const char *payloadname, const char *outpath);
Mathias Krause5c581c42012-07-17 21:11:59 +020080int remove_file_from_cbfs(const char *filename);
Stefan Reinauer853270a2009-09-22 15:55:01 +000081
Patrick Georgi0da38dd2009-11-09 17:18:02 +000082uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
83 const char *filename, uint32_t align);
84
Stefan Reinauer07040582010-04-24 21:24:06 +000085void print_supported_filetypes(void);
86
Stefan Reinauer63217582012-10-29 16:52:36 -070087#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
88
89#endif