blob: fb857e53d59265974bd749431daad2dd02e31289 [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 Glass9d922452017-05-17 17:18:03 -06009#include <dm.h>
Simon Glassf4289cb2016-07-04 11:57:48 -060010#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.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 Glass6e206502016-07-04 11:57:47 -060019#include <dm/root.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000020
21DECLARE_GLOBAL_DATA_PTR;
22
Simon Glass9569c402015-03-05 12:25:26 -070023/* Enable access to PCI memory with map_sysmem() */
24static bool enable_pci_map;
25
26#ifdef CONFIG_PCI
27/* Last device that was mapped into memory, and length of mapping */
28static struct udevice *map_dev;
29unsigned long map_len;
30#endif
31
Simon Glass5010d982015-07-06 12:54:29 -060032void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000033{
Simon Glass8939df02015-05-10 21:07:27 -060034 /* Do this here while it still has an effect */
35 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070036 if (state_uninit())
37 os_exit(2);
38
Simon Glass61336832014-07-23 06:55:02 -060039 if (dm_uninit())
40 os_exit(2);
41
Simon Glass7a9219c2011-10-03 19:26:44 +000042 /* This is considered normal termination for now */
43 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070044}
45
Simon Glass4b0730d2011-09-26 14:10:39 +000046/* delay x useconds */
47void __udelay(unsigned long usec)
48{
Simon Glass97235632015-11-08 23:47:43 -070049 struct sandbox_state *state = state_get_current();
50
51 if (!state->skip_delays)
52 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000053}
54
Simon Glass4b0730d2011-09-26 14:10:39 +000055int cleanup_before_linux(void)
56{
57 return 0;
58}
59
Simon Glass29748512015-05-13 07:02:26 -060060int cleanup_before_linux_select(int flags)
61{
62 return 0;
63}
64
Simon Glass428aa0c2018-09-15 00:50:56 -060065/**
66 * is_in_sandbox_mem() - Checks if a pointer is within sandbox's emulated DRAM
67 *
68 * This provides a way to check if a pointer is owned by sandbox (and is within
69 * its RAM) or not. Sometimes pointers come from a test which conceptually runs
70 * output sandbox, potentially with direct access to the C-library malloc()
71 * function, or the sandbox stack (which is not actually within the emulated
72 * DRAM.
73 *
74 * Such pointers obviously cannot be mapped into sandbox's DRAM, so we must
75 * detect them an process them separately, by recording a mapping to a tag,
76 * which we can use to map back to the pointer later.
77 *
78 * @ptr: Pointer to check
79 * @return true if this is within sandbox emulated DRAM, false if not
80 */
81static bool is_in_sandbox_mem(const void *ptr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070082{
Simon Glass428aa0c2018-09-15 00:50:56 -060083 return (const uint8_t *)ptr >= gd->arch.ram_buf &&
84 (const uint8_t *)ptr < gd->arch.ram_buf + gd->ram_size;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070085}
86
Simon Glass428aa0c2018-09-15 00:50:56 -060087/**
88 * phys_to_virt() - Converts a sandbox RAM address to a pointer
89 *
90 * Sandbox uses U-Boot addresses from 0 to the size of DRAM. These index into
91 * the emulated DRAM buffer used by sandbox. This function converts such an
92 * address to a pointer into this buffer, which can be used to access the
93 * memory.
94 *
95 * If the address is outside this range, it is assumed to be a tag
96 */
97void *phys_to_virt(phys_addr_t paddr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070098{
Simon Glass428aa0c2018-09-15 00:50:56 -060099 struct sandbox_mapmem_entry *mentry;
100 struct sandbox_state *state;
101
102 /* If the address is within emulated DRAM, calculate the value */
103 if (paddr < gd->ram_size)
104 return (void *)(gd->arch.ram_buf + paddr);
105
106 /*
107 * Otherwise search out list of tags for the correct pointer previously
108 * created by map_to_sysmem()
109 */
110 state = state_get_current();
111 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
112 if (mentry->tag == paddr) {
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200113 debug("%s: Used map from %lx to %p\n", __func__,
114 (ulong)paddr, mentry->ptr);
Simon Glass428aa0c2018-09-15 00:50:56 -0600115 return mentry->ptr;
116 }
117 }
118
119 printf("%s: Cannot map sandbox address %lx (SDRAM from 0 to %lx)\n",
120 __func__, (ulong)paddr, (ulong)gd->ram_size);
121 os_abort();
122
123 /* Not reached */
124 return NULL;
125}
126
127struct sandbox_mapmem_entry *find_tag(const void *ptr)
128{
129 struct sandbox_mapmem_entry *mentry;
130 struct sandbox_state *state = state_get_current();
131
132 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
133 if (mentry->ptr == ptr) {
134 debug("%s: Used map from %p to %lx\n", __func__, ptr,
135 mentry->tag);
136 return mentry;
137 }
138 }
139 return NULL;
140}
141
142phys_addr_t virt_to_phys(void *ptr)
143{
144 struct sandbox_mapmem_entry *mentry;
145
146 /*
147 * If it is in emulated RAM, don't bother looking for a tag. Just
148 * calculate the pointer using the provides offset into the RAM buffer.
149 */
150 if (is_in_sandbox_mem(ptr))
151 return (phys_addr_t)((uint8_t *)ptr - gd->arch.ram_buf);
152
153 mentry = find_tag(ptr);
154 if (!mentry) {
155 /* Abort so that gdb can be used here */
156 printf("%s: Cannot map sandbox address %p (SDRAM from 0 to %lx)\n",
157 __func__, ptr, (ulong)gd->ram_size);
158 os_abort();
159 }
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200160 debug("%s: Used map from %p to %lx\n", __func__, ptr, mentry->tag);
Simon Glass428aa0c2018-09-15 00:50:56 -0600161
162 return mentry->tag;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700163}
164
Simon Glass4b0730d2011-09-26 14:10:39 +0000165void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
166{
Simon Glassa7d9cae2016-07-04 11:57:49 -0600167#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass9569c402015-03-05 12:25:26 -0700168 unsigned long plen = len;
169 void *ptr;
170
171 map_dev = NULL;
172 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
173 if (plen != len) {
174 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
Mario Sixc6b89f32018-02-12 08:05:57 +0100175 __func__, (uint)paddr, len, plen);
Simon Glass9569c402015-03-05 12:25:26 -0700176 }
177 map_len = len;
178 return ptr;
179 }
180#endif
181
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700182 return phys_to_virt(paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +0000183}
184
Simon Glass428aa0c2018-09-15 00:50:56 -0600185void unmap_physmem(const void *ptr, unsigned long flags)
Simon Glass9569c402015-03-05 12:25:26 -0700186{
187#ifdef CONFIG_PCI
188 if (map_dev) {
Simon Glass428aa0c2018-09-15 00:50:56 -0600189 pci_unmap_physmem(ptr, map_len, map_dev);
Simon Glass9569c402015-03-05 12:25:26 -0700190 map_dev = NULL;
191 }
192#endif
193}
194
Simon Glass428aa0c2018-09-15 00:50:56 -0600195phys_addr_t map_to_sysmem(const void *ptr)
196{
197 struct sandbox_mapmem_entry *mentry;
198
199 /*
200 * If it is in emulated RAM, don't bother creating a tag. Just return
201 * the offset into the RAM buffer.
202 */
203 if (is_in_sandbox_mem(ptr))
204 return (u8 *)ptr - gd->arch.ram_buf;
205
206 /*
207 * See if there is an existing tag with this pointer. If not, set up a
208 * new one.
209 */
210 mentry = find_tag(ptr);
211 if (!mentry) {
212 struct sandbox_state *state = state_get_current();
213
214 mentry = malloc(sizeof(*mentry));
215 if (!mentry) {
216 printf("%s: Error: Out of memory\n", __func__);
217 os_exit(ENOMEM);
218 }
219 mentry->tag = state->next_tag++;
220 mentry->ptr = (void *)ptr;
221 list_add_tail(&mentry->sibling_node, &state->mapmem_head);
222 debug("%s: Added map from %p to %lx\n", __func__, ptr,
223 (ulong)mentry->tag);
224 }
225
226 /*
227 * Return the tag as the address to use. A later call to map_sysmem()
228 * will return ptr
229 */
230 return mentry->tag;
231}
232
Simon Glasse77663c2019-09-25 08:56:09 -0600233unsigned int sandbox_read(const void *addr, enum sandboxio_size_t size)
234{
235 struct sandbox_state *state = state_get_current();
236
237 if (!state->allow_memio)
238 return 0;
239
240 switch (size) {
241 case SB_SIZE_8:
242 return *(u8 *)addr;
243 case SB_SIZE_16:
244 return *(u16 *)addr;
245 case SB_SIZE_32:
246 return *(u32 *)addr;
247 case SB_SIZE_64:
248 return *(u64 *)addr;
249 }
250
251 return 0;
252}
253
Simon Glass84173852019-10-11 16:16:47 -0600254void sandbox_write(void *addr, unsigned int val, enum sandboxio_size_t size)
Simon Glasse77663c2019-09-25 08:56:09 -0600255{
256 struct sandbox_state *state = state_get_current();
257
258 if (!state->allow_memio)
259 return;
260
261 switch (size) {
262 case SB_SIZE_8:
263 *(u8 *)addr = val;
264 break;
265 case SB_SIZE_16:
266 *(u16 *)addr = val;
267 break;
268 case SB_SIZE_32:
269 *(u32 *)addr = val;
270 break;
271 case SB_SIZE_64:
272 *(u64 *)addr = val;
273 break;
274 }
275}
276
277void sandbox_set_enable_memio(bool enable)
278{
279 struct sandbox_state *state = state_get_current();
280
281 state->allow_memio = enable;
282}
283
Simon Glass9569c402015-03-05 12:25:26 -0700284void sandbox_set_enable_pci_map(int enable)
285{
286 enable_pci_map = enable;
287}
288
Simon Glass4b0730d2011-09-26 14:10:39 +0000289void flush_dcache_range(unsigned long start, unsigned long stop)
290{
291}
Simon Glassb45122f2015-02-27 22:06:34 -0700292
Bin Meng0d1414b2017-08-22 08:15:18 -0700293void invalidate_dcache_range(unsigned long start, unsigned long stop)
294{
295}
296
Simon Glassb45122f2015-02-27 22:06:34 -0700297int sandbox_read_fdt_from_file(void)
298{
299 struct sandbox_state *state = state_get_current();
300 const char *fname = state->fdt_fname;
301 void *blob;
302 loff_t size;
303 int err;
304 int fd;
305
306 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
307 if (!state->fdt_fname) {
308 err = fdt_create_empty_tree(blob, 256);
309 if (!err)
310 goto done;
311 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
312 return -EINVAL;
313 }
314
315 err = os_get_filesize(fname, &size);
316 if (err < 0) {
317 printf("Failed to file FDT file '%s'\n", fname);
318 return err;
319 }
320 fd = os_open(fname, OS_O_RDONLY);
321 if (fd < 0) {
322 printf("Failed to open FDT file '%s'\n", fname);
323 return -EACCES;
324 }
325 if (os_read(fd, blob, size) != size) {
326 os_close(fd);
327 return -EIO;
328 }
329 os_close(fd);
330
331done:
332 gd->fdt_blob = blob;
333
334 return 0;
335}
Simon Glassc87dc382017-05-22 05:05:23 -0600336
337ulong timer_get_boot_us(void)
338{
339 static uint64_t base_count;
340 uint64_t count = os_get_nsec();
341
342 if (!base_count)
343 base_count = count;
344
345 return (count - base_count) / 1000;
346}