blob: 026b73c96560b3b0d01fe91ec8e2c256621d36fe [file] [log] [blame]
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +02001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2011 secunet Security Networks AG
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Gabe Black0af03d22012-03-19 03:06:46 -070030#include <endian.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020031#include <stdio.h>
32#include <string.h>
33#include <cbfs.h>
34
35#ifdef CONFIG_LZMA
36#define CBFS_CORE_WITH_LZMA
37#include <lzma.h>
38#endif
39
40#define ERROR(x...) printf(x)
41#define LOG(x...)
42
Patrick Georgi409d17d2012-01-17 15:52:05 +010043static uint32_t host_virt_to_phys(void *addr);
44static void *host_phys_to_virt(uint32_t addr);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020045
46uint32_t romstart(void);
47uint32_t romend(void);
48
49#include <arch/virtual.h>
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080050static uint32_t host_virt_to_phys(void *addr)
51{
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020052 return virt_to_phys(addr);
53}
54
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080055static void *host_phys_to_virt(uint32_t addr)
56{
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020057 return phys_to_virt(addr);
58}
59#undef virt_to_phys
60#undef phys_to_virt
61
62uint32_t (*virt_to_phys)(void *) = host_virt_to_phys;
63void* (*phys_to_virt)(uint32_t) = host_phys_to_virt;
64
65
66uint32_t _romstart = 0xffffffff;
67uint32_t _romend = 0;
68
69uint32_t romstart(void)
70{
71 return _romstart;
72}
73
74uint32_t romend(void)
75{
76 return _romend;
77}
78
79#include "cbfs_core.c"
80
Patrick Georgi409d17d2012-01-17 15:52:05 +010081static uint32_t ram_cbfs_offset;
82
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080083static uint32_t ram_virt_to_phys(void *addr)
84{
Patrick Georgi409d17d2012-01-17 15:52:05 +010085 return (uint32_t)addr - ram_cbfs_offset;
86}
87
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080088static void *ram_phys_to_virt(uint32_t addr)
89{
Patrick Georgi409d17d2012-01-17 15:52:05 +010090 return (void*)addr + ram_cbfs_offset;
91}
92
93void setup_cbfs_from_ram(void* start, uint32_t size)
94{
95 /* assumes rollover */
96 ram_cbfs_offset = (uint32_t)start + size;
97 virt_to_phys = ram_virt_to_phys;
98 phys_to_virt = ram_phys_to_virt;
99}
100
Stefan Reinauer09e16dc2013-01-14 10:20:15 -0800101void setup_cbfs_from_flash(void)
Patrick Georgi409d17d2012-01-17 15:52:05 +0100102{
103 virt_to_phys = host_virt_to_phys;
104 phys_to_virt = host_phys_to_virt;
105}