blob: eaf5e71f60d297656bd55b7346bf2eb141bf0588 [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
19#include <stdint.h>
Patrick Georgi26774f22009-11-21 19:54:02 +000020#ifndef WIN32
21#include <arpa/inet.h>
22#else
23#define ntohl(x) (((x)>>24) | ((x)<<24) | (((x)>>8)&0xff00) | (((x)<<8)&0xff0000))
24#define htonl ntohl
25#endif
Patrick Georgib7b56dd82009-09-14 13:29:27 +000026
27extern void *offset;
28extern struct cbfs_header *master_header;
29extern uint32_t phys_start, phys_end, align, romsize;
30
31static void *phys_to_virt(uint32_t addr)
32{
33 return offset + addr;
34}
35
36static uint32_t virt_to_phys(void *addr)
37{
Stefan Reinauer853270a2009-09-22 15:55:01 +000038 return (unsigned long)(addr - offset) & 0xffffffff;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000039}
40
41#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
42
Patrick Georgi0da38dd2009-11-09 17:18:02 +000043uint32_t getfilesize(const char *filename);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000044void *loadfile(const char *filename, uint32_t * romsize_p, void *content,
45 int place);
46void *loadrom(const char *filename);
47void writerom(const char *filename, void *start, uint32_t size);
48
49int iself(unsigned char *input);
50
51typedef void (*comp_func_ptr) (char *, int, char *, int *);
52typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
53
54comp_func_ptr compression_function(comp_algo algo);
55
56uint64_t intfiletype(const char *name);
57
58int parse_elf_to_payload(unsigned char *input, unsigned char **output,
59 comp_algo algo);
60int parse_elf_to_stage(unsigned char *input, unsigned char **output,
61 comp_algo algo, uint32_t * location);
62
63void *create_cbfs_file(const char *filename, void *data, uint32_t * datasize,
64 uint32_t type, uint32_t * location);
65
66int create_cbfs_image(const char *romfile, uint32_t romsize,
67 const char *bootblock, uint32_t align);
68
69int add_file_to_cbfs(void *content, uint32_t contentsize, uint32_t location);
70void print_cbfs_directory(const char *filename);
Stefan Reinauer853270a2009-09-22 15:55:01 +000071
Patrick Georgi0da38dd2009-11-09 17:18:02 +000072uint32_t cbfs_find_location(const char *romfile, uint32_t filesize,
73 const char *filename, uint32_t align);
74
Stefan Reinauer07040582010-04-24 21:24:06 +000075void print_supported_filetypes(void);
76
Stefan Reinauer853270a2009-09-22 15:55:01 +000077#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))