common: Drop linux/delay.h from common header
[oweals/u-boot.git] / arch / sandbox / cpu / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5
6 #include <common.h>
7 #include <bootstage.h>
8 #include <cpu_func.h>
9 #include <dm.h>
10 #include <errno.h>
11 #include <log.h>
12 #include <linux/delay.h>
13 #include <linux/libfdt.h>
14 #include <os.h>
15 #include <asm/io.h>
16 #include <asm/malloc.h>
17 #include <asm/setjmp.h>
18 #include <asm/state.h>
19 #include <dm/root.h>
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 /* Enable access to PCI memory with map_sysmem() */
24 static bool enable_pci_map;
25
26 #ifdef CONFIG_PCI
27 /* Last device that was mapped into memory, and length of mapping */
28 static struct udevice *map_dev;
29 unsigned long map_len;
30 #endif
31
32 void sandbox_exit(void)
33 {
34         /* Do this here while it still has an effect */
35         os_fd_restore();
36         if (state_uninit())
37                 os_exit(2);
38
39         if (dm_uninit())
40                 os_exit(2);
41
42         /* This is considered normal termination for now */
43         os_exit(0);
44 }
45
46 /* delay x useconds */
47 void __udelay(unsigned long usec)
48 {
49         struct sandbox_state *state = state_get_current();
50
51         if (!state->skip_delays)
52                 os_usleep(usec);
53 }
54
55 int cleanup_before_linux(void)
56 {
57         return 0;
58 }
59
60 int cleanup_before_linux_select(int flags)
61 {
62         return 0;
63 }
64
65 /**
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  */
81 static bool is_in_sandbox_mem(const void *ptr)
82 {
83         return (const uint8_t *)ptr >= gd->arch.ram_buf &&
84                 (const uint8_t *)ptr < gd->arch.ram_buf + gd->ram_size;
85 }
86
87 /**
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  */
97 void *phys_to_virt(phys_addr_t paddr)
98 {
99         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) {
113                         debug("%s: Used map from %lx to %p\n", __func__,
114                               (ulong)paddr, mentry->ptr);
115                         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
127 struct 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
142 phys_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         }
160         debug("%s: Used map from %p to %lx\n", __func__, ptr, mentry->tag);
161
162         return mentry->tag;
163 }
164
165 void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
166 {
167 #if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
168         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",
175                                __func__, (uint)paddr, len, plen);
176                 }
177                 map_len = len;
178                 return ptr;
179         }
180 #endif
181
182         return phys_to_virt(paddr);
183 }
184
185 void unmap_physmem(const void *ptr, unsigned long flags)
186 {
187 #ifdef CONFIG_PCI
188         if (map_dev) {
189                 pci_unmap_physmem(ptr, map_len, map_dev);
190                 map_dev = NULL;
191         }
192 #endif
193 }
194
195 phys_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
233 unsigned 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
254 void sandbox_write(void *addr, unsigned int val, enum sandboxio_size_t size)
255 {
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
277 void sandbox_set_enable_memio(bool enable)
278 {
279         struct sandbox_state *state = state_get_current();
280
281         state->allow_memio = enable;
282 }
283
284 void sandbox_set_enable_pci_map(int enable)
285 {
286         enable_pci_map = enable;
287 }
288
289 void flush_dcache_range(unsigned long start, unsigned long stop)
290 {
291 }
292
293 void invalidate_dcache_range(unsigned long start, unsigned long stop)
294 {
295 }
296
297 int 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
331 done:
332         gd->fdt_blob = blob;
333
334         return 0;
335 }
336
337 ulong 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 }