blob: 7a622c8092d8a80fbdf8e5bbfd78e2323aa51c81 [file] [log] [blame]
Simon Glass4b0730d2011-09-26 14:10:39 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glass4b0730d2011-09-26 14:10:39 +00004 */
Simon Glass9569c402015-03-05 12:25:26 -07005#define DEBUG
Simon Glass4b0730d2011-09-26 14:10:39 +00006#include <common.h>
Simon Glass7a9219c2011-10-03 19:26:44 +00007#include <os.h>
Simon Glassb45122f2015-02-27 22:06:34 -07008#include <asm/io.h>
Simon Glass5c2859c2013-11-10 10:27:03 -07009#include <asm/state.h>
Simon Glass6e206502016-07-04 11:57:47 -060010#include <dm/root.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000011
12DECLARE_GLOBAL_DATA_PTR;
13
Simon Glass9569c402015-03-05 12:25:26 -070014/* Enable access to PCI memory with map_sysmem() */
15static bool enable_pci_map;
16
17#ifdef CONFIG_PCI
18/* Last device that was mapped into memory, and length of mapping */
19static struct udevice *map_dev;
20unsigned long map_len;
21#endif
22
Simon Glass5010d982015-07-06 12:54:29 -060023void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000024{
Simon Glass8939df02015-05-10 21:07:27 -060025 /* Do this here while it still has an effect */
26 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070027 if (state_uninit())
28 os_exit(2);
29
Simon Glass61336832014-07-23 06:55:02 -060030 if (dm_uninit())
31 os_exit(2);
32
Simon Glass7a9219c2011-10-03 19:26:44 +000033 /* This is considered normal termination for now */
34 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070035}
36
Simon Glass4b0730d2011-09-26 14:10:39 +000037/* delay x useconds */
38void __udelay(unsigned long usec)
39{
Simon Glass97235632015-11-08 23:47:43 -070040 struct sandbox_state *state = state_get_current();
41
42 if (!state->skip_delays)
43 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000044}
45
Simon Glass4b0730d2011-09-26 14:10:39 +000046int cleanup_before_linux(void)
47{
48 return 0;
49}
50
Simon Glass29748512015-05-13 07:02:26 -060051int cleanup_before_linux_select(int flags)
52{
53 return 0;
54}
55
Simon Glass4b0730d2011-09-26 14:10:39 +000056void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
57{
Simon Glass9569c402015-03-05 12:25:26 -070058#ifdef CONFIG_PCI
59 unsigned long plen = len;
60 void *ptr;
61
62 map_dev = NULL;
63 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
64 if (plen != len) {
65 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
66 __func__, paddr, len, plen);
67 }
68 map_len = len;
69 return ptr;
70 }
71#endif
72
Simon Glass8ee666a2012-12-13 20:49:11 +000073 return (void *)(gd->arch.ram_buf + paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +000074}
75
Simon Glass9569c402015-03-05 12:25:26 -070076void unmap_physmem(const void *vaddr, unsigned long flags)
77{
78#ifdef CONFIG_PCI
79 if (map_dev) {
80 pci_unmap_physmem(vaddr, map_len, map_dev);
81 map_dev = NULL;
82 }
83#endif
84}
85
86void sandbox_set_enable_pci_map(int enable)
87{
88 enable_pci_map = enable;
89}
90
Simon Glass66bd1cf2014-02-27 13:25:55 -070091phys_addr_t map_to_sysmem(const void *ptr)
Simon Glass781adb52013-04-20 08:42:37 +000092{
93 return (u8 *)ptr - gd->arch.ram_buf;
94}
95
Simon Glass4b0730d2011-09-26 14:10:39 +000096void flush_dcache_range(unsigned long start, unsigned long stop)
97{
98}
Simon Glassb45122f2015-02-27 22:06:34 -070099
100int sandbox_read_fdt_from_file(void)
101{
102 struct sandbox_state *state = state_get_current();
103 const char *fname = state->fdt_fname;
104 void *blob;
105 loff_t size;
106 int err;
107 int fd;
108
109 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
110 if (!state->fdt_fname) {
111 err = fdt_create_empty_tree(blob, 256);
112 if (!err)
113 goto done;
114 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
115 return -EINVAL;
116 }
117
118 err = os_get_filesize(fname, &size);
119 if (err < 0) {
120 printf("Failed to file FDT file '%s'\n", fname);
121 return err;
122 }
123 fd = os_open(fname, OS_O_RDONLY);
124 if (fd < 0) {
125 printf("Failed to open FDT file '%s'\n", fname);
126 return -EACCES;
127 }
128 if (os_read(fd, blob, size) != size) {
129 os_close(fd);
130 return -EIO;
131 }
132 os_close(fd);
133
134done:
135 gd->fdt_blob = blob;
136
137 return 0;
138}