]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/sandbox/cpu/cpu.c
sandbox: Add a warm and cold reset driver
[people/ms/u-boot.git] / arch / sandbox / cpu / cpu.c
CommitLineData
4b0730d2
SG
1/*
2 * Copyright (c) 2011 The Chromium OS Authors.
1a459660 3 * SPDX-License-Identifier: GPL-2.0+
4b0730d2 4 */
9569c406 5#define DEBUG
4b0730d2 6#include <common.h>
61336833 7#include <dm/root.h>
7a9219c1 8#include <os.h>
b45122fd 9#include <asm/io.h>
5c2859cd 10#include <asm/state.h>
4b0730d2
SG
11
12DECLARE_GLOBAL_DATA_PTR;
13
9569c406
SG
14/* 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
88bd0e9d 23void reset_cpu(ulong ignored)
4b0730d2 24{
8939df09
SG
25 /* Do this here while it still has an effect */
26 os_fd_restore();
5c2859cd
SG
27 if (state_uninit())
28 os_exit(2);
29
61336833
SG
30 if (dm_uninit())
31 os_exit(2);
32
7a9219c1
SG
33 /* This is considered normal termination for now */
34 os_exit(0);
88bd0e9d
SG
35}
36
37int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
38{
39 reset_cpu(0);
40
4b0730d2
SG
41 return 0;
42}
43
44/* delay x useconds */
45void __udelay(unsigned long usec)
46{
d99a6874 47 os_usleep(usec);
4b0730d2
SG
48}
49
4b0730d2
SG
50int cleanup_before_linux(void)
51{
52 return 0;
53}
54
29748515
SG
55int cleanup_before_linux_select(int flags)
56{
57 return 0;
58}
59
4b0730d2
SG
60void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
61{
9569c406
SG
62#ifdef CONFIG_PCI
63 unsigned long plen = len;
64 void *ptr;
65
66 map_dev = NULL;
67 if (enable_pci_map && !pci_map_physmem(paddr, &len, &map_dev, &ptr)) {
68 if (plen != len) {
69 printf("%s: Warning: partial map at %x, wanted %lx, got %lx\n",
70 __func__, paddr, len, plen);
71 }
72 map_len = len;
73 return ptr;
74 }
75#endif
76
8ee666a7 77 return (void *)(gd->arch.ram_buf + paddr);
4b0730d2
SG
78}
79
9569c406
SG
80void unmap_physmem(const void *vaddr, unsigned long flags)
81{
82#ifdef CONFIG_PCI
83 if (map_dev) {
84 pci_unmap_physmem(vaddr, map_len, map_dev);
85 map_dev = NULL;
86 }
87#endif
88}
89
90void sandbox_set_enable_pci_map(int enable)
91{
92 enable_pci_map = enable;
93}
94
66bd1cff 95phys_addr_t map_to_sysmem(const void *ptr)
781adb57
SG
96{
97 return (u8 *)ptr - gd->arch.ram_buf;
98}
99
4b0730d2
SG
100void flush_dcache_range(unsigned long start, unsigned long stop)
101{
102}
b45122fd
SG
103
104int sandbox_read_fdt_from_file(void)
105{
106 struct sandbox_state *state = state_get_current();
107 const char *fname = state->fdt_fname;
108 void *blob;
109 loff_t size;
110 int err;
111 int fd;
112
113 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
114 if (!state->fdt_fname) {
115 err = fdt_create_empty_tree(blob, 256);
116 if (!err)
117 goto done;
118 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
119 return -EINVAL;
120 }
121
122 err = os_get_filesize(fname, &size);
123 if (err < 0) {
124 printf("Failed to file FDT file '%s'\n", fname);
125 return err;
126 }
127 fd = os_open(fname, OS_O_RDONLY);
128 if (fd < 0) {
129 printf("Failed to open FDT file '%s'\n", fname);
130 return -EACCES;
131 }
132 if (os_read(fd, blob, size) != size) {
133 os_close(fd);
134 return -EIO;
135 }
136 os_close(fd);
137
138done:
139 gd->fdt_blob = blob;
140
141 return 0;
142}