blob: 48636ab63919b1143f848c66826e035c455807d8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass4b0730d2011-09-26 14:10:39 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass4b0730d2011-09-26 14:10:39 +00004 */
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +02005
Simon Glass4b0730d2011-09-26 14:10:39 +00006#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -06007#include <bootstage.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glassf4289cb2016-07-04 11:57:48 -06009#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060012#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000014#include <os.h>
Simon Glassb45122f2015-02-27 22:06:34 -070015#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <asm/malloc.h>
Simon Glass30eef212018-05-16 09:42:22 -060017#include <asm/setjmp.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070018#include <asm/state.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000019
20DECLARE_GLOBAL_DATA_PTR;
21
Simon Glass9569c402015-03-05 12:25:26 -070022/* Enable access to PCI memory with map_sysmem() */
23static bool enable_pci_map;
24
25#ifdef CONFIG_PCI
26/* Last device that was mapped into memory, and length of mapping */
27static struct udevice *map_dev;
28unsigned long map_len;
29#endif
30
Simon Glass5010d982015-07-06 12:54:29 -060031void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000032{
Simon Glass8939df02015-05-10 21:07:27 -060033 /* Do this here while it still has an effect */
34 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070035
Simon Glassc1195282021-03-15 18:11:24 +130036 if (state_uninit())
Simon Glass61336832014-07-23 06:55:02 -060037 os_exit(2);
38
Simon Glass7a9219c2011-10-03 19:26:44 +000039 /* This is considered normal termination for now */
40 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070041}
42
Simon Glass4b0730d2011-09-26 14:10:39 +000043/* delay x useconds */
44void __udelay(unsigned long usec)
45{
Simon Glass97235632015-11-08 23:47:43 -070046 struct sandbox_state *state = state_get_current();
47
48 if (!state->skip_delays)
49 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000050}
51
Simon Glass4b0730d2011-09-26 14:10:39 +000052int cleanup_before_linux(void)
53{
54 return 0;
55}
56
Simon Glass29748512015-05-13 07:02:26 -060057int cleanup_before_linux_select(int flags)
58{
59 return 0;
60}
61
Simon Glass428aa0c2018-09-15 00:50:56 -060062/**
63 * is_in_sandbox_mem() - Checks if a pointer is within sandbox's emulated DRAM
64 *
65 * This provides a way to check if a pointer is owned by sandbox (and is within
66 * its RAM) or not. Sometimes pointers come from a test which conceptually runs
67 * output sandbox, potentially with direct access to the C-library malloc()
68 * function, or the sandbox stack (which is not actually within the emulated
69 * DRAM.
70 *
71 * Such pointers obviously cannot be mapped into sandbox's DRAM, so we must
72 * detect them an process them separately, by recording a mapping to a tag,
73 * which we can use to map back to the pointer later.
74 *
75 * @ptr: Pointer to check
76 * @return true if this is within sandbox emulated DRAM, false if not
77 */
78static bool is_in_sandbox_mem(const void *ptr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070079{
Simon Glass428aa0c2018-09-15 00:50:56 -060080 return (const uint8_t *)ptr >= gd->arch.ram_buf &&
81 (const uint8_t *)ptr < gd->arch.ram_buf + gd->ram_size;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070082}
83
Simon Glass428aa0c2018-09-15 00:50:56 -060084/**
85 * phys_to_virt() - Converts a sandbox RAM address to a pointer
86 *
87 * Sandbox uses U-Boot addresses from 0 to the size of DRAM. These index into
88 * the emulated DRAM buffer used by sandbox. This function converts such an
89 * address to a pointer into this buffer, which can be used to access the
90 * memory.
91 *
92 * If the address is outside this range, it is assumed to be a tag
93 */
94void *phys_to_virt(phys_addr_t paddr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070095{
Simon Glass428aa0c2018-09-15 00:50:56 -060096 struct sandbox_mapmem_entry *mentry;
97 struct sandbox_state *state;
98
99 /* If the address is within emulated DRAM, calculate the value */
100 if (paddr < gd->ram_size)
101 return (void *)(gd->arch.ram_buf + paddr);
102
103 /*
104 * Otherwise search out list of tags for the correct pointer previously
105 * created by map_to_sysmem()
106 */
107 state = state_get_current();
108 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
109 if (mentry->tag == paddr) {
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200110 debug("%s: Used map from %lx to %p\n", __func__,
111 (ulong)paddr, mentry->ptr);
Simon Glass428aa0c2018-09-15 00:50:56 -0600112 return mentry->ptr;
113 }
114 }
115
116 printf("%s: Cannot map sandbox address %lx (SDRAM from 0 to %lx)\n",
117 __func__, (ulong)paddr, (ulong)gd->ram_size);
118 os_abort();
119
120 /* Not reached */
121 return NULL;
122}
123
124struct sandbox_mapmem_entry *find_tag(const void *ptr)
125{
126 struct sandbox_mapmem_entry *mentry;
127 struct sandbox_state *state = state_get_current();
128
129 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
130 if (mentry->ptr == ptr) {
131 debug("%s: Used map from %p to %lx\n", __func__, ptr,
132 mentry->tag);
133 return mentry;
134 }
135 }
136 return NULL;
137}
138
139phys_addr_t virt_to_phys(void *ptr)
140{
141 struct sandbox_mapmem_entry *mentry;
142
143 /*
144 * If it is in emulated RAM, don't bother looking for a tag. Just
145 * calculate the pointer using the provides offset into the RAM buffer.
146 */
147 if (is_in_sandbox_mem(ptr))
148 return (phys_addr_t)((uint8_t *)ptr - gd->arch.ram_buf);
149
150 mentry = find_tag(ptr);
151 if (!mentry) {
152 /* Abort so that gdb can be used here */
153 printf("%s: Cannot map sandbox address %p (SDRAM from 0 to %lx)\n",
154 __func__, ptr, (ulong)gd->ram_size);
155 os_abort();
156 }
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200157 debug("%s: Used map from %p to %lx\n", __func__, ptr, mentry->tag);
Simon Glass428aa0c2018-09-15 00:50:56 -0600158
159 return mentry->tag;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700160}
161
Simon Glass4b0730d2011-09-26 14:10:39 +0000162void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
163{
Simon Glassa7d9cae2016-07-04 11:57:49 -0600164#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass9569c402015-03-05 12:25:26 -0700165 unsigned long plen = len;
166 void *ptr;
167
168 map_dev = NULL;
169 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
170 if (plen != len) {
171 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
Mario Sixc6b89f32018-02-12 08:05:57 +0100172 __func__, (uint)paddr, len, plen);
Simon Glass9569c402015-03-05 12:25:26 -0700173 }
174 map_len = len;
175 return ptr;
176 }
177#endif
178
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700179 return phys_to_virt(paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +0000180}
181
Simon Glass428aa0c2018-09-15 00:50:56 -0600182void unmap_physmem(const void *ptr, unsigned long flags)
Simon Glass9569c402015-03-05 12:25:26 -0700183{
184#ifdef CONFIG_PCI
185 if (map_dev) {
Simon Glass428aa0c2018-09-15 00:50:56 -0600186 pci_unmap_physmem(ptr, map_len, map_dev);
Simon Glass9569c402015-03-05 12:25:26 -0700187 map_dev = NULL;
188 }
189#endif
190}
191
Simon Glass428aa0c2018-09-15 00:50:56 -0600192phys_addr_t map_to_sysmem(const void *ptr)
193{
194 struct sandbox_mapmem_entry *mentry;
195
196 /*
197 * If it is in emulated RAM, don't bother creating a tag. Just return
198 * the offset into the RAM buffer.
199 */
200 if (is_in_sandbox_mem(ptr))
201 return (u8 *)ptr - gd->arch.ram_buf;
202
203 /*
204 * See if there is an existing tag with this pointer. If not, set up a
205 * new one.
206 */
207 mentry = find_tag(ptr);
208 if (!mentry) {
209 struct sandbox_state *state = state_get_current();
210
211 mentry = malloc(sizeof(*mentry));
212 if (!mentry) {
213 printf("%s: Error: Out of memory\n", __func__);
214 os_exit(ENOMEM);
215 }
216 mentry->tag = state->next_tag++;
217 mentry->ptr = (void *)ptr;
218 list_add_tail(&mentry->sibling_node, &state->mapmem_head);
219 debug("%s: Added map from %p to %lx\n", __func__, ptr,
220 (ulong)mentry->tag);
221 }
222
223 /*
224 * Return the tag as the address to use. A later call to map_sysmem()
225 * will return ptr
226 */
227 return mentry->tag;
228}
229
Simon Glasse77663c2019-09-25 08:56:09 -0600230unsigned int sandbox_read(const void *addr, enum sandboxio_size_t size)
231{
232 struct sandbox_state *state = state_get_current();
233
234 if (!state->allow_memio)
235 return 0;
236
237 switch (size) {
238 case SB_SIZE_8:
239 return *(u8 *)addr;
240 case SB_SIZE_16:
241 return *(u16 *)addr;
242 case SB_SIZE_32:
243 return *(u32 *)addr;
244 case SB_SIZE_64:
245 return *(u64 *)addr;
246 }
247
248 return 0;
249}
250
Simon Glass84173852019-10-11 16:16:47 -0600251void sandbox_write(void *addr, unsigned int val, enum sandboxio_size_t size)
Simon Glasse77663c2019-09-25 08:56:09 -0600252{
253 struct sandbox_state *state = state_get_current();
254
255 if (!state->allow_memio)
256 return;
257
258 switch (size) {
259 case SB_SIZE_8:
260 *(u8 *)addr = val;
261 break;
262 case SB_SIZE_16:
263 *(u16 *)addr = val;
264 break;
265 case SB_SIZE_32:
266 *(u32 *)addr = val;
267 break;
268 case SB_SIZE_64:
269 *(u64 *)addr = val;
270 break;
271 }
272}
273
274void sandbox_set_enable_memio(bool enable)
275{
276 struct sandbox_state *state = state_get_current();
277
278 state->allow_memio = enable;
279}
280
Simon Glass9569c402015-03-05 12:25:26 -0700281void sandbox_set_enable_pci_map(int enable)
282{
283 enable_pci_map = enable;
284}
285
Simon Glass4b0730d2011-09-26 14:10:39 +0000286void flush_dcache_range(unsigned long start, unsigned long stop)
287{
288}
Simon Glassb45122f2015-02-27 22:06:34 -0700289
Bin Meng0d1414b2017-08-22 08:15:18 -0700290void invalidate_dcache_range(unsigned long start, unsigned long stop)
291{
292}
293
Simon Glassb45122f2015-02-27 22:06:34 -0700294int sandbox_read_fdt_from_file(void)
295{
296 struct sandbox_state *state = state_get_current();
297 const char *fname = state->fdt_fname;
298 void *blob;
299 loff_t size;
300 int err;
301 int fd;
302
303 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
304 if (!state->fdt_fname) {
305 err = fdt_create_empty_tree(blob, 256);
306 if (!err)
307 goto done;
308 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
309 return -EINVAL;
310 }
311
312 err = os_get_filesize(fname, &size);
313 if (err < 0) {
314 printf("Failed to file FDT file '%s'\n", fname);
315 return err;
316 }
317 fd = os_open(fname, OS_O_RDONLY);
318 if (fd < 0) {
319 printf("Failed to open FDT file '%s'\n", fname);
320 return -EACCES;
321 }
322 if (os_read(fd, blob, size) != size) {
323 os_close(fd);
324 return -EIO;
325 }
326 os_close(fd);
327
328done:
329 gd->fdt_blob = blob;
330
331 return 0;
332}
Simon Glassc87dc382017-05-22 05:05:23 -0600333
334ulong timer_get_boot_us(void)
335{
336 static uint64_t base_count;
337 uint64_t count = os_get_nsec();
338
339 if (!base_count)
340 base_count = count;
341
342 return (count - base_count) / 1000;
343}