blob: fdfb209f77dbd16b30c05d9b20505983e96430e3 [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 Glass9d922452017-05-17 17:18:03 -06007#include <dm.h>
Simon Glassf4289cb2016-07-04 11:57:48 -06008#include <errno.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +09009#include <linux/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 Glass30eef212018-05-16 09:42:22 -060012#include <asm/setjmp.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070013#include <asm/state.h>
Simon Glass6e206502016-07-04 11:57:47 -060014#include <dm/root.h>
Simon Glass4b0730d2011-09-26 14:10:39 +000015
16DECLARE_GLOBAL_DATA_PTR;
17
Simon Glass9569c402015-03-05 12:25:26 -070018/* Enable access to PCI memory with map_sysmem() */
19static bool enable_pci_map;
20
21#ifdef CONFIG_PCI
22/* Last device that was mapped into memory, and length of mapping */
23static struct udevice *map_dev;
24unsigned long map_len;
25#endif
26
Simon Glass5010d982015-07-06 12:54:29 -060027void sandbox_exit(void)
Simon Glass4b0730d2011-09-26 14:10:39 +000028{
Simon Glass8939df02015-05-10 21:07:27 -060029 /* Do this here while it still has an effect */
30 os_fd_restore();
Simon Glass5c2859c2013-11-10 10:27:03 -070031 if (state_uninit())
32 os_exit(2);
33
Simon Glass61336832014-07-23 06:55:02 -060034 if (dm_uninit())
35 os_exit(2);
36
Simon Glass7a9219c2011-10-03 19:26:44 +000037 /* This is considered normal termination for now */
38 os_exit(0);
Simon Glass88bd0e92013-11-10 10:27:00 -070039}
40
Simon Glass4b0730d2011-09-26 14:10:39 +000041/* delay x useconds */
42void __udelay(unsigned long usec)
43{
Simon Glass97235632015-11-08 23:47:43 -070044 struct sandbox_state *state = state_get_current();
45
46 if (!state->skip_delays)
47 os_usleep(usec);
Simon Glass4b0730d2011-09-26 14:10:39 +000048}
49
Simon Glass4b0730d2011-09-26 14:10:39 +000050int cleanup_before_linux(void)
51{
52 return 0;
53}
54
Simon Glass29748512015-05-13 07:02:26 -060055int cleanup_before_linux_select(int flags)
56{
57 return 0;
58}
59
Simon Glass428aa0c2018-09-15 00:50:56 -060060/**
61 * is_in_sandbox_mem() - Checks if a pointer is within sandbox's emulated DRAM
62 *
63 * This provides a way to check if a pointer is owned by sandbox (and is within
64 * its RAM) or not. Sometimes pointers come from a test which conceptually runs
65 * output sandbox, potentially with direct access to the C-library malloc()
66 * function, or the sandbox stack (which is not actually within the emulated
67 * DRAM.
68 *
69 * Such pointers obviously cannot be mapped into sandbox's DRAM, so we must
70 * detect them an process them separately, by recording a mapping to a tag,
71 * which we can use to map back to the pointer later.
72 *
73 * @ptr: Pointer to check
74 * @return true if this is within sandbox emulated DRAM, false if not
75 */
76static bool is_in_sandbox_mem(const void *ptr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070077{
Simon Glass428aa0c2018-09-15 00:50:56 -060078 return (const uint8_t *)ptr >= gd->arch.ram_buf &&
79 (const uint8_t *)ptr < gd->arch.ram_buf + gd->ram_size;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070080}
81
Simon Glass428aa0c2018-09-15 00:50:56 -060082/**
83 * phys_to_virt() - Converts a sandbox RAM address to a pointer
84 *
85 * Sandbox uses U-Boot addresses from 0 to the size of DRAM. These index into
86 * the emulated DRAM buffer used by sandbox. This function converts such an
87 * address to a pointer into this buffer, which can be used to access the
88 * memory.
89 *
90 * If the address is outside this range, it is assumed to be a tag
91 */
92void *phys_to_virt(phys_addr_t paddr)
Paul Burtonf7ae1ca2017-09-14 15:05:13 -070093{
Simon Glass428aa0c2018-09-15 00:50:56 -060094 struct sandbox_mapmem_entry *mentry;
95 struct sandbox_state *state;
96
97 /* If the address is within emulated DRAM, calculate the value */
98 if (paddr < gd->ram_size)
99 return (void *)(gd->arch.ram_buf + paddr);
100
101 /*
102 * Otherwise search out list of tags for the correct pointer previously
103 * created by map_to_sysmem()
104 */
105 state = state_get_current();
106 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
107 if (mentry->tag == paddr) {
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200108 debug("%s: Used map from %lx to %p\n", __func__,
109 (ulong)paddr, mentry->ptr);
Simon Glass428aa0c2018-09-15 00:50:56 -0600110 return mentry->ptr;
111 }
112 }
113
114 printf("%s: Cannot map sandbox address %lx (SDRAM from 0 to %lx)\n",
115 __func__, (ulong)paddr, (ulong)gd->ram_size);
116 os_abort();
117
118 /* Not reached */
119 return NULL;
120}
121
122struct sandbox_mapmem_entry *find_tag(const void *ptr)
123{
124 struct sandbox_mapmem_entry *mentry;
125 struct sandbox_state *state = state_get_current();
126
127 list_for_each_entry(mentry, &state->mapmem_head, sibling_node) {
128 if (mentry->ptr == ptr) {
129 debug("%s: Used map from %p to %lx\n", __func__, ptr,
130 mentry->tag);
131 return mentry;
132 }
133 }
134 return NULL;
135}
136
137phys_addr_t virt_to_phys(void *ptr)
138{
139 struct sandbox_mapmem_entry *mentry;
140
141 /*
142 * If it is in emulated RAM, don't bother looking for a tag. Just
143 * calculate the pointer using the provides offset into the RAM buffer.
144 */
145 if (is_in_sandbox_mem(ptr))
146 return (phys_addr_t)((uint8_t *)ptr - gd->arch.ram_buf);
147
148 mentry = find_tag(ptr);
149 if (!mentry) {
150 /* Abort so that gdb can be used here */
151 printf("%s: Cannot map sandbox address %p (SDRAM from 0 to %lx)\n",
152 __func__, ptr, (ulong)gd->ram_size);
153 os_abort();
154 }
Heinrich Schuchardt9190a3e2018-10-14 20:45:32 +0200155 debug("%s: Used map from %p to %lx\n", __func__, ptr, mentry->tag);
Simon Glass428aa0c2018-09-15 00:50:56 -0600156
157 return mentry->tag;
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700158}
159
Simon Glass4b0730d2011-09-26 14:10:39 +0000160void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
161{
Simon Glassa7d9cae2016-07-04 11:57:49 -0600162#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass9569c402015-03-05 12:25:26 -0700163 unsigned long plen = len;
164 void *ptr;
165
166 map_dev = NULL;
167 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
168 if (plen != len) {
169 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
Mario Sixc6b89f32018-02-12 08:05:57 +0100170 __func__, (uint)paddr, len, plen);
Simon Glass9569c402015-03-05 12:25:26 -0700171 }
172 map_len = len;
173 return ptr;
174 }
175#endif
176
Paul Burtonf7ae1ca2017-09-14 15:05:13 -0700177 return phys_to_virt(paddr);
Simon Glass4b0730d2011-09-26 14:10:39 +0000178}
179
Simon Glass428aa0c2018-09-15 00:50:56 -0600180void unmap_physmem(const void *ptr, unsigned long flags)
Simon Glass9569c402015-03-05 12:25:26 -0700181{
182#ifdef CONFIG_PCI
183 if (map_dev) {
Simon Glass428aa0c2018-09-15 00:50:56 -0600184 pci_unmap_physmem(ptr, map_len, map_dev);
Simon Glass9569c402015-03-05 12:25:26 -0700185 map_dev = NULL;
186 }
187#endif
188}
189
Simon Glass428aa0c2018-09-15 00:50:56 -0600190phys_addr_t map_to_sysmem(const void *ptr)
191{
192 struct sandbox_mapmem_entry *mentry;
193
194 /*
195 * If it is in emulated RAM, don't bother creating a tag. Just return
196 * the offset into the RAM buffer.
197 */
198 if (is_in_sandbox_mem(ptr))
199 return (u8 *)ptr - gd->arch.ram_buf;
200
201 /*
202 * See if there is an existing tag with this pointer. If not, set up a
203 * new one.
204 */
205 mentry = find_tag(ptr);
206 if (!mentry) {
207 struct sandbox_state *state = state_get_current();
208
209 mentry = malloc(sizeof(*mentry));
210 if (!mentry) {
211 printf("%s: Error: Out of memory\n", __func__);
212 os_exit(ENOMEM);
213 }
214 mentry->tag = state->next_tag++;
215 mentry->ptr = (void *)ptr;
216 list_add_tail(&mentry->sibling_node, &state->mapmem_head);
217 debug("%s: Added map from %p to %lx\n", __func__, ptr,
218 (ulong)mentry->tag);
219 }
220
221 /*
222 * Return the tag as the address to use. A later call to map_sysmem()
223 * will return ptr
224 */
225 return mentry->tag;
226}
227
Simon Glass9569c402015-03-05 12:25:26 -0700228void sandbox_set_enable_pci_map(int enable)
229{
230 enable_pci_map = enable;
231}
232
Simon Glass4b0730d2011-09-26 14:10:39 +0000233void flush_dcache_range(unsigned long start, unsigned long stop)
234{
235}
Simon Glassb45122f2015-02-27 22:06:34 -0700236
Bin Meng0d1414b2017-08-22 08:15:18 -0700237void invalidate_dcache_range(unsigned long start, unsigned long stop)
238{
239}
240
Simon Glassb45122f2015-02-27 22:06:34 -0700241int sandbox_read_fdt_from_file(void)
242{
243 struct sandbox_state *state = state_get_current();
244 const char *fname = state->fdt_fname;
245 void *blob;
246 loff_t size;
247 int err;
248 int fd;
249
250 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
251 if (!state->fdt_fname) {
252 err = fdt_create_empty_tree(blob, 256);
253 if (!err)
254 goto done;
255 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
256 return -EINVAL;
257 }
258
259 err = os_get_filesize(fname, &size);
260 if (err < 0) {
261 printf("Failed to file FDT file '%s'\n", fname);
262 return err;
263 }
264 fd = os_open(fname, OS_O_RDONLY);
265 if (fd < 0) {
266 printf("Failed to open FDT file '%s'\n", fname);
267 return -EACCES;
268 }
269 if (os_read(fd, blob, size) != size) {
270 os_close(fd);
271 return -EIO;
272 }
273 os_close(fd);
274
275done:
276 gd->fdt_blob = blob;
277
278 return 0;
279}
Simon Glassc87dc382017-05-22 05:05:23 -0600280
281ulong timer_get_boot_us(void)
282{
283 static uint64_t base_count;
284 uint64_t count = os_get_nsec();
285
286 if (!base_count)
287 base_count = count;
288
289 return (count - base_count) / 1000;
290}