blob: 4a20fde787a3a1ccd4d104d3412381fde5a6af51 [file] [log] [blame]
Simon Glass3d750d72011-09-26 14:10:39 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glass3d750d72011-09-26 14:10:39 +00004 */
Simon Glass70778bc2015-03-05 12:25:26 -07005#define DEBUG
Simon Glass3d750d72011-09-26 14:10:39 +00006#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -06007#include <dm.h>
Simon Glass141e5a02016-07-04 11:57:48 -06008#include <errno.h>
9#include <libfdt.h>
Simon Glasscd0684f2011-10-03 19:26:44 +000010#include <os.h>
Simon Glass26b78b22015-02-27 22:06:34 -070011#include <asm/io.h>
Simon Glass9dd10bf2013-11-10 10:27:03 -070012#include <asm/state.h>
Simon Glassbe310372016-07-04 11:57:47 -060013#include <dm/root.h>
Simon Glass3d750d72011-09-26 14:10:39 +000014
15DECLARE_GLOBAL_DATA_PTR;
16
Simon Glass70778bc2015-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 Glassd860f222015-07-06 12:54:29 -060026void sandbox_exit(void)
Simon Glass3d750d72011-09-26 14:10:39 +000027{
Simon Glass9c3b7d62015-05-10 21:07:27 -060028 /* Do this here while it still has an effect */
29 os_fd_restore();
Simon Glass9dd10bf2013-11-10 10:27:03 -070030 if (state_uninit())
31 os_exit(2);
32
Simon Glass19200512014-07-23 06:55:02 -060033 if (dm_uninit())
34 os_exit(2);
35
Simon Glasscd0684f2011-10-03 19:26:44 +000036 /* This is considered normal termination for now */
37 os_exit(0);
Simon Glassdc9f8cd2013-11-10 10:27:00 -070038}
39
Simon Glass3d750d72011-09-26 14:10:39 +000040/* delay x useconds */
41void __udelay(unsigned long usec)
42{
Simon Glassb25fa312015-11-08 23:47:43 -070043 struct sandbox_state *state = state_get_current();
44
45 if (!state->skip_delays)
46 os_usleep(usec);
Simon Glass3d750d72011-09-26 14:10:39 +000047}
48
Simon Glass3d750d72011-09-26 14:10:39 +000049int cleanup_before_linux(void)
50{
51 return 0;
52}
53
Simon Glass770d93f2015-05-13 07:02:26 -060054int cleanup_before_linux_select(int flags)
55{
56 return 0;
57}
58
Paul Burton51369252017-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 Glass3d750d72011-09-26 14:10:39 +000069void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
70{
Simon Glassf44a3a52016-07-04 11:57:49 -060071#if defined(CONFIG_PCI) && !defined(CONFIG_SPL_BUILD)
Simon Glass70778bc2015-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",
Mario Six61efece2018-02-12 08:05:57 +010079 __func__, (uint)paddr, len, plen);
Simon Glass70778bc2015-03-05 12:25:26 -070080 }
81 map_len = len;
82 return ptr;
83 }
84#endif
85
Paul Burton51369252017-09-14 15:05:13 -070086 return phys_to_virt(paddr);
Simon Glass3d750d72011-09-26 14:10:39 +000087}
88
Simon Glass70778bc2015-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 Glassf7c3f6f2014-02-27 13:25:55 -0700104phys_addr_t map_to_sysmem(const void *ptr)
Simon Glasse23d2932013-04-20 08:42:37 +0000105{
106 return (u8 *)ptr - gd->arch.ram_buf;
107}
108
Simon Glass3d750d72011-09-26 14:10:39 +0000109void flush_dcache_range(unsigned long start, unsigned long stop)
110{
111}
Simon Glass26b78b22015-02-27 22:06:34 -0700112
Bin Meng843c2992017-08-22 08:15:18 -0700113void invalidate_dcache_range(unsigned long start, unsigned long stop)
114{
115}
116
Simon Glass26b78b22015-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 Glass38e79742017-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}