blob: ff7430393ffe80cc31e67e741b9002af46978869 [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 Glass1eb69ae2019-11-14 12:57:39 -07007#include <cpu_func.h>
Simon Glass9d922452017-05-17 17:18:03 -06008#include <dm.h>
Simon Glassf4289cb2016-07-04 11:57:48 -06009#include <errno.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000011#include <os.h>
Simon Glassb45122f2015-02-27 22:06:34 -070012#include <asm/io.h>
Simon Glass30eef212018-05-16 09:42:22 -060013#include <asm/setjmp.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070014#include <asm/state.h>
Simon Glass6e206502016-07-04 11:57:47 -060015#include <dm/root.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000016
17DECLARE_GLOBAL_DATA_PTR;
18
Simon Glass9569c402015-03-05 12:25:26 -070019/* Enable access to PCI memory with map_sysmem() */
20static bool enable_pci_map;
21
22#ifdef CONFIG_PCI
23/* Last device that was mapped into memory, and length of mapping */
24static struct udevice *map_dev;
25unsigned long map_len;
26#endif
27
Simon Glass5010d982015-07-06 12:54:29 -060028void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000029{
Simon Glass8939df02015-05-10 21:07:27 -060030 /* Do this here while it still has an effect */
31 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070032 if (state_uninit())
33 os_exit(2);
34
Simon Glass61336832014-07-23 06:55:02 -060035 if (dm_uninit())
36 os_exit(2);
37
Simon Glass7a9219c2011-10-03 19:26:44 +000038 /* This is considered normal termination for now */
39 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070040}
41
Simon Glass4b0730d2011-09-26 14:10:39 +000042/* delay x useconds */
43void __udelay(unsigned long usec)
44{
Simon Glass97235632015-11-08 23:47:43 -070045 struct sandbox_state *state = state_get_current();
46
47 if (!state->skip_delays)
48 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000049}
50
Simon Glass4b0730d2011-09-26 14:10:39 +000051int cleanup_before_linux(void)
52{
53 return 0;
54}
55
Simon Glass29748512015-05-13 07:02:26 -060056int cleanup_before_linux_select(int flags)
57{
58 return 0;
59}
60
Simon Glass428aa0c2018-09-15 00:50:56 -060061/**
62 * is_in_sandbox_mem() - Checks if a pointer is within sandbox's emulated DRAM
63 *
64 * This provides a way to check if a pointer is owned by sandbox (and is within
65 * its RAM) or not. Sometimes pointers come from a test which conceptually runs
66 * output sandbox, potentially with direct access to the C-library malloc()
67 * function, or the sandbox stack (which is not actually within the emulated
68 * DRAM.
69 *
70 * Such pointers obviously cannot be mapped into sandbox's DRAM, so we must
71 * detect them an process them separately, by recording a mapping to a tag,
72 * which we can use to map back to the pointer later.
73 *
74 * @ptr: Pointer to check
75 * @return true if this is within sandbox emulated DRAM, false if not
76 */
77static bool is_in_sandbox_mem(const void *ptr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070078{
Simon Glass428aa0c2018-09-15 00:50:56 -060079 return (const uint8_t *)ptr >= gd->arch.ram_buf &&
80 (const uint8_t *)ptr < gd->arch.ram_buf + gd->ram_size;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070081}
82
Simon Glass428aa0c2018-09-15 00:50:56 -060083/**
84 * phys_to_virt() - Converts a sandbox RAM address to a pointer
85 *
86 * Sandbox uses U-Boot addresses from 0 to the size of DRAM. These index into
87 * the emulated DRAM buffer used by sandbox. This function converts such an
88 * address to a pointer into this buffer, which can be used to access the
89 * memory.
90 *
91 * If the address is outside this range, it is assumed to be a tag
92 */
93void *phys_to_virt(phys_addr_t paddr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070094{
Simon Glass428aa0c2018-09-15 00:50:56 -060095 struct sandbox_mapmem_entry *mentry;
96 struct sandbox_state *state;
97
98 /* If the address is within emulated DRAM, calculate the value */
99 if (paddr < gd->ram_size)
100 return (void *)(gd->arch.ram_buf + paddr);
101
102 /*
103 * Otherwise search out list of tags for the correct pointer previously
104 * created by map_to_sysmem()
105 */
106 state = state_get_current();
107 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
108 if (mentry->tag == paddr) {
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200109 debug("%s: Used map from %lx to %p\n", __func__,
110 (ulong)paddr, mentry->ptr);
Simon Glass428aa0c2018-09-15 00:50:56 -0600111 return mentry->ptr;
112 }
113 }
114
115 printf("%s: Cannot map sandbox address %lx (SDRAM from 0 to %lx)\n",
116 __func__, (ulong)paddr, (ulong)gd->ram_size);
117 os_abort();
118
119 /* Not reached */
120 return NULL;
121}
122
123struct sandbox_mapmem_entry *find_tag(const void *ptr)
124{
125 struct sandbox_mapmem_entry *mentry;
126 struct sandbox_state *state = state_get_current();
127
128 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
129 if (mentry->ptr == ptr) {
130 debug("%s: Used map from %p to %lx\n", __func__, ptr,
131 mentry->tag);
132 return mentry;
133 }
134 }
135 return NULL;
136}
137
138phys_addr_t virt_to_phys(void *ptr)
139{
140 struct sandbox_mapmem_entry *mentry;
141
142 /*
143 * If it is in emulated RAM, don't bother looking for a tag. Just
144 * calculate the pointer using the provides offset into the RAM buffer.
145 */
146 if (is_in_sandbox_mem(ptr))
147 return (phys_addr_t)((uint8_t *)ptr - gd->arch.ram_buf);
148
149 mentry = find_tag(ptr);
150 if (!mentry) {
151 /* Abort so that gdb can be used here */
152 printf("%s: Cannot map sandbox address %p (SDRAM from 0 to %lx)\n",
153 __func__, ptr, (ulong)gd->ram_size);
154 os_abort();
155 }
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200156 debug("%s: Used map from %p to %lx\n", __func__, ptr, mentry->tag);
Simon Glass428aa0c2018-09-15 00:50:56 -0600157
158 return mentry->tag;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700159}
160
Simon Glass4b0730d2011-09-26 14:10:39 +0000161void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
162{
Simon Glassa7d9cae2016-07-04 11:57:49 -0600163#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass9569c402015-03-05 12:25:26 -0700164 unsigned long plen = len;
165 void *ptr;
166
167 map_dev = NULL;
168 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
169 if (plen != len) {
170 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
Mario Sixc6b89f32018-02-12 08:05:57 +0100171 __func__, (uint)paddr, len, plen);
Simon Glass9569c402015-03-05 12:25:26 -0700172 }
173 map_len = len;
174 return ptr;
175 }
176#endif
177
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700178 return phys_to_virt(paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +0000179}
180
Simon Glass428aa0c2018-09-15 00:50:56 -0600181void unmap_physmem(const void *ptr, unsigned long flags)
Simon Glass9569c402015-03-05 12:25:26 -0700182{
183#ifdef CONFIG_PCI
184 if (map_dev) {
Simon Glass428aa0c2018-09-15 00:50:56 -0600185 pci_unmap_physmem(ptr, map_len, map_dev);
Simon Glass9569c402015-03-05 12:25:26 -0700186 map_dev = NULL;
187 }
188#endif
189}
190
Simon Glass428aa0c2018-09-15 00:50:56 -0600191phys_addr_t map_to_sysmem(const void *ptr)
192{
193 struct sandbox_mapmem_entry *mentry;
194
195 /*
196 * If it is in emulated RAM, don't bother creating a tag. Just return
197 * the offset into the RAM buffer.
198 */
199 if (is_in_sandbox_mem(ptr))
200 return (u8 *)ptr - gd->arch.ram_buf;
201
202 /*
203 * See if there is an existing tag with this pointer. If not, set up a
204 * new one.
205 */
206 mentry = find_tag(ptr);
207 if (!mentry) {
208 struct sandbox_state *state = state_get_current();
209
210 mentry = malloc(sizeof(*mentry));
211 if (!mentry) {
212 printf("%s: Error: Out of memory\n", __func__);
213 os_exit(ENOMEM);
214 }
215 mentry->tag = state->next_tag++;
216 mentry->ptr = (void *)ptr;
217 list_add_tail(&mentry->sibling_node, &state->mapmem_head);
218 debug("%s: Added map from %p to %lx\n", __func__, ptr,
219 (ulong)mentry->tag);
220 }
221
222 /*
223 * Return the tag as the address to use. A later call to map_sysmem()
224 * will return ptr
225 */
226 return mentry->tag;
227}
228
Simon Glasse77663c2019-09-25 08:56:09 -0600229unsigned int sandbox_read(const void *addr, enum sandboxio_size_t size)
230{
231 struct sandbox_state *state = state_get_current();
232
233 if (!state->allow_memio)
234 return 0;
235
236 switch (size) {
237 case SB_SIZE_8:
238 return *(u8 *)addr;
239 case SB_SIZE_16:
240 return *(u16 *)addr;
241 case SB_SIZE_32:
242 return *(u32 *)addr;
243 case SB_SIZE_64:
244 return *(u64 *)addr;
245 }
246
247 return 0;
248}
249
Simon Glass84173852019-10-11 16:16:47 -0600250void sandbox_write(void *addr, unsigned int val, enum sandboxio_size_t size)
Simon Glasse77663c2019-09-25 08:56:09 -0600251{
252 struct sandbox_state *state = state_get_current();
253
254 if (!state->allow_memio)
255 return;
256
257 switch (size) {
258 case SB_SIZE_8:
259 *(u8 *)addr = val;
260 break;
261 case SB_SIZE_16:
262 *(u16 *)addr = val;
263 break;
264 case SB_SIZE_32:
265 *(u32 *)addr = val;
266 break;
267 case SB_SIZE_64:
268 *(u64 *)addr = val;
269 break;
270 }
271}
272
273void sandbox_set_enable_memio(bool enable)
274{
275 struct sandbox_state *state = state_get_current();
276
277 state->allow_memio = enable;
278}
279
Simon Glass9569c402015-03-05 12:25:26 -0700280void sandbox_set_enable_pci_map(int enable)
281{
282 enable_pci_map = enable;
283}
284
Simon Glass4b0730d2011-09-26 14:10:39 +0000285void flush_dcache_range(unsigned long start, unsigned long stop)
286{
287}
Simon Glassb45122f2015-02-27 22:06:34 -0700288
Bin Meng0d1414b2017-08-22 08:15:18 -0700289void invalidate_dcache_range(unsigned long start, unsigned long stop)
290{
291}
292
Simon Glassb45122f2015-02-27 22:06:34 -0700293int sandbox_read_fdt_from_file(void)
294{
295 struct sandbox_state *state = state_get_current();
296 const char *fname = state->fdt_fname;
297 void *blob;
298 loff_t size;
299 int err;
300 int fd;
301
302 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
303 if (!state->fdt_fname) {
304 err = fdt_create_empty_tree(blob, 256);
305 if (!err)
306 goto done;
307 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
308 return -EINVAL;
309 }
310
311 err = os_get_filesize(fname, &size);
312 if (err < 0) {
313 printf("Failed to file FDT file '%s'\n", fname);
314 return err;
315 }
316 fd = os_open(fname, OS_O_RDONLY);
317 if (fd < 0) {
318 printf("Failed to open FDT file '%s'\n", fname);
319 return -EACCES;
320 }
321 if (os_read(fd, blob, size) != size) {
322 os_close(fd);
323 return -EIO;
324 }
325 os_close(fd);
326
327done:
328 gd->fdt_blob = blob;
329
330 return 0;
331}
Simon Glassc87dc382017-05-22 05:05:23 -0600332
333ulong timer_get_boot_us(void)
334{
335 static uint64_t base_count;
336 uint64_t count = os_get_nsec();
337
338 if (!base_count)
339 base_count = count;
340
341 return (count - base_count) / 1000;
342}