blob: 66c3a6a88a7ced30da396dd48af2a816a3cdb9c7 [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 Glass9d922452017-05-17 17:18:03 -06007#include <dm.h>
Simon Glassf4289cb2016-07-04 11:57:48 -06008#include <errno.h>
9#include <libfdt.h>
Simon Glass7a9219c2011-10-03 19:26:44 +000010#include <os.h>
Simon Glassb45122f2015-02-27 22:06:34 -070011#include <asm/io.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070012#include <asm/state.h>
Simon Glass6e206502016-07-04 11:57:47 -060013#include <dm/root.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000014
15DECLARE_GLOBAL_DATA_PTR;
16
Simon Glass9569c402015-03-05 12:25:26 -070017/* Enable access to PCI memory with map_sysmem() */
18static bool enable_pci_map;
19
20#ifdef CONFIG_PCI
21/* Last device that was mapped into memory, and length of mapping */
22static struct udevice *map_dev;
23unsigned long map_len;
24#endif
25
Simon Glass5010d982015-07-06 12:54:29 -060026void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000027{
Simon Glass8939df02015-05-10 21:07:27 -060028 /* Do this here while it still has an effect */
29 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070030 if (state_uninit())
31 os_exit(2);
32
Simon Glass61336832014-07-23 06:55:02 -060033 if (dm_uninit())
34 os_exit(2);
35
Simon Glass7a9219c2011-10-03 19:26:44 +000036 /* This is considered normal termination for now */
37 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070038}
39
Simon Glass4b0730d2011-09-26 14:10:39 +000040/* delay x useconds */
41void __udelay(unsigned long usec)
42{
Simon Glass97235632015-11-08 23:47:43 -070043 struct sandbox_state *state = state_get_current();
44
45 if (!state->skip_delays)
46 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000047}
48
Simon Glass4b0730d2011-09-26 14:10:39 +000049int cleanup_before_linux(void)
50{
51 return 0;
52}
53
Simon Glass29748512015-05-13 07:02:26 -060054int cleanup_before_linux_select(int flags)
55{
56 return 0;
57}
58
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070059void *phys_to_virt(phys_addr_t paddr)
60{
61 return (void *)(gd->arch.ram_buf + paddr);
62}
63
64phys_addr_t virt_to_phys(void *vaddr)
65{
66 return (phys_addr_t)((uint8_t *)vaddr - gd->arch.ram_buf);
67}
68
Simon Glass4b0730d2011-09-26 14:10:39 +000069void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
70{
Simon Glassa7d9cae2016-07-04 11:57:49 -060071#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass9569c402015-03-05 12:25:26 -070072 unsigned long plen = len;
73 void *ptr;
74
75 map_dev = NULL;
76 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
77 if (plen != len) {
78 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
79 __func__, paddr, len, plen);
80 }
81 map_len = len;
82 return ptr;
83 }
84#endif
85
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070086 return phys_to_virt(paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +000087}
88
Simon Glass9569c402015-03-05 12:25:26 -070089void unmap_physmem(const void *vaddr, unsigned long flags)
90{
91#ifdef CONFIG_PCI
92 if (map_dev) {
93 pci_unmap_physmem(vaddr, map_len, map_dev);
94 map_dev = NULL;
95 }
96#endif
97}
98
99void sandbox_set_enable_pci_map(int enable)
100{
101 enable_pci_map = enable;
102}
103
Simon Glass66bd1cf2014-02-27 13:25:55 -0700104phys_addr_t map_to_sysmem(const void *ptr)
Simon Glass781adb52013-04-20 08:42:37 +0000105{
106 return (u8 *)ptr - gd->arch.ram_buf;
107}
108
Simon Glass4b0730d2011-09-26 14:10:39 +0000109void flush_dcache_range(unsigned long start, unsigned long stop)
110{
111}
Simon Glassb45122f2015-02-27 22:06:34 -0700112
Bin Meng0d1414b2017-08-22 08:15:18 -0700113void invalidate_dcache_range(unsigned long start, unsigned long stop)
114{
115}
116
Simon Glassb45122f2015-02-27 22:06:34 -0700117int sandbox_read_fdt_from_file(void)
118{
119 struct sandbox_state *state = state_get_current();
120 const char *fname = state->fdt_fname;
121 void *blob;
122 loff_t size;
123 int err;
124 int fd;
125
126 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
127 if (!state->fdt_fname) {
128 err = fdt_create_empty_tree(blob, 256);
129 if (!err)
130 goto done;
131 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
132 return -EINVAL;
133 }
134
135 err = os_get_filesize(fname, &size);
136 if (err < 0) {
137 printf("Failed to file FDT file '%s'\n", fname);
138 return err;
139 }
140 fd = os_open(fname, OS_O_RDONLY);
141 if (fd < 0) {
142 printf("Failed to open FDT file '%s'\n", fname);
143 return -EACCES;
144 }
145 if (os_read(fd, blob, size) != size) {
146 os_close(fd);
147 return -EIO;
148 }
149 os_close(fd);
150
151done:
152 gd->fdt_blob = blob;
153
154 return 0;
155}
Simon Glassc87dc382017-05-22 05:05:23 -0600156
157ulong timer_get_boot_us(void)
158{
159 static uint64_t base_count;
160 uint64_t count = os_get_nsec();
161
162 if (!base_count)
163 base_count = count;
164
165 return (count - base_count) / 1000;
166}