blob: 4fcc1eee68155f02111bc12d5bf59e0f73edd315 [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>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
17 */
18
Stefan Reinauer63217582012-10-29 16:52:36 -070019#ifndef __CBFSTOOL_COMMON_H
20#define __CBFSTOOL_COMMON_H
21
Patrick Georgib7b56dd82009-09-14 13:29:27 +000022#include <stdint.h>
Stefan Reinauera1e48242011-10-21 14:24:57 -070023#include "swab.h"
24#define ntohl(x) (host_bigendian?(x):swab32(x))
25#define htonl(x) (host_bigendian?(x):swab32(x))
26#define ntohll(x) (host_bigendian?(x):swab64(x))
27#define htonll(x) (host_bigendian?(x):swab64(x))
Patrick Georgib7b56dd82009-09-14 13:29:27 +000028
29extern void *offset;
Stefan Reinauer63217582012-10-29 16:52:36 -070030extern uint32_t romsize;
Stefan Reinauera1e48242011-10-21 14:24:57 -070031extern int host_bigendian;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000032
Stefan Reinauera1e48242011-10-21 14:24:57 -070033static inline void *phys_to_virt(uint32_t addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000034{
35 return offset + addr;
36}
37
Stefan Reinauera1e48242011-10-21 14:24:57 -070038static inline uint32_t virt_to_phys(void *addr)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000039{
Stefan Reinauer853270a2009-09-22 15:55:01 +000040 return (unsigned long)(addr - offset) & 0xffffffff;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000041}
42
43#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
44
Stefan Reinauer63217582012-10-29 16:52:36 -070045size_t getfilesize(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000046void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
47 int place);
48void *loadrom(const char *filename);
Stefan Reinauer9bb043852010-06-24 13:37:59 +000049int writerom(const char *filename, void *start, uint32_t size);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000050
51int iself(unsigned char *input);
52
53typedef void (*comp_func_ptr) (char *, int, char *, int *);
54typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
55
56comp_func_ptr compression_function(comp_algo algo);
57
58uint64_t intfiletype(const char *name);
59
60int parse_elf_to_payload(unsigned char *input, unsigned char **output,
61 comp_algo algo);
62int parse_elf_to_stage(unsigned char *input, unsigned char **output,
63 comp_algo algo, uint32_t * location);
64
65void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
66 uint32_t type, uint32_t * location);
67
68int create_cbfs_image(const char *romfile, uint32_t romsize,
Stefan Reinauera90bd522012-08-15 16:05:50 -070069 const char *bootblock, uint32_t align, uint32_t offs);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000070
71int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location);
Stefan Reinauera90bd522012-08-15 16:05:50 -070072int remove_file_from_cbfs(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000073void print_cbfs_directory(const char *filename);
Aurelien Guillaumefe7d6b92011-01-13 09:09:21 +000074int extract_file_from_cbfs(const char *filename, const char *payloadname, const char *outpath);
Mathias Krause5c581c42012-07-17 21:11:59 +020075int remove_file_from_cbfs(const char *filename);
Stefan Reinauer853270a2009-09-22 15:55:01 +000076
Patrick Georgi0da38dd2009-11-09 17:18:02 +000077uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
78 const char *filename, uint32_t align);
79
Stefan Reinauer07040582010-04-24 21:24:06 +000080void print_supported_filetypes(void);
81
Stefan Reinauer63217582012-10-29 16:52:36 -070082#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
83
84#endif