2 * Copyright (c) 2011 The Chromium OS Authors.
3 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/state.h>
12 DECLARE_GLOBAL_DATA_PTR;
14 /* Enable access to PCI memory with map_sysmem() */
15 static bool enable_pci_map;
18 /* Last device that was mapped into memory, and length of mapping */
19 static struct udevice *map_dev;
20 unsigned long map_len;
23 void reset_cpu(ulong ignored)
25 /* Do this here while it still has an effect */
33 /* This is considered normal termination for now */
37 int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
44 /* delay x useconds */
45 void __udelay(unsigned long usec)
50 int cleanup_before_linux(void)
55 void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
58 unsigned long plen = len;
62 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
64 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
65 __func__, paddr, len, plen);
72 return (void *)(gd->arch.ram_buf + paddr);
75 void unmap_physmem(const void *vaddr, unsigned long flags)
79 pci_unmap_physmem(vaddr, map_len, map_dev);
85 void sandbox_set_enable_pci_map(int enable)
87 enable_pci_map = enable;
90 phys_addr_t map_to_sysmem(const void *ptr)
92 return (u8 *)ptr - gd->arch.ram_buf;
95 void flush_dcache_range(unsigned long start, unsigned long stop)
99 int sandbox_read_fdt_from_file(void)
101 struct sandbox_state *state = state_get_current();
102 const char *fname = state->fdt_fname;
108 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
109 if (!state->fdt_fname) {
110 err = fdt_create_empty_tree(blob, 256);
113 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
117 err = os_get_filesize(fname, &size);
119 printf("Failed to file FDT file '%s'\n", fname);
122 fd = os_open(fname, OS_O_RDONLY);
124 printf("Failed to open FDT file '%s'\n", fname);
127 if (os_read(fd, blob, size) != size) {