blob: 798d0030773ed07b1505cd0a8e9c97ad72303b0b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass744d9852011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
Simon Glass744d9852011-10-10 08:22:14 +000012 */
13
14#ifndef _U_BOOT_SANDBOX_H_
15#define _U_BOOT_SANDBOX_H_
16
17/* board/.../... */
18int board_init(void);
Simon Glass744d9852011-10-10 08:22:14 +000019
Simon Glassab4e07e2012-02-26 17:38:50 -050020/* start.c */
Simon Glass70db4212012-02-15 15:51:16 -080021int sandbox_early_getopt_check(void);
Simon Glassab4e07e2012-02-26 17:38:50 -050022int sandbox_main_loop_init(void);
23
Simon Glassb88eb322013-11-10 10:27:07 -070024int cleanup_before_linux(void);
25
Simon Glass7d95f2a2014-02-27 13:26:19 -070026/* drivers/video/sandbox_sdl.c */
27int sandbox_lcd_sdl_early_init(void);
28
AKASHI Takahirod11ef4d2019-10-04 13:45:18 +090029struct udevice;
30
Simon Glass9569c402015-03-05 12:25:26 -070031/**
32 * pci_map_physmem() - map a PCI device into memory
33 *
34 * This is used on sandbox to map a device into memory so that it can be
35 * used with normal memory access. After this call, some part of the device's
36 * internal structure becomes visible.
37 *
38 * This function is normally called from sandbox's map_sysmem() automatically.
39 *
40 * @paddr: Physical memory address, normally corresponding to a PCI BAR
41 * @lenp: On entry, the size of the area to map, On exit it is updated
42 * to the size actually mapped, which may be less if the device
43 * has less space
44 * @devp: Returns the device which mapped into this space
45 * @ptrp: Returns a pointer to the mapped address. The device's space
46 * can be accessed as @lenp bytes starting here
47 * @return 0 if OK, -ve on error
48 */
49int pci_map_physmem(phys_addr_t paddr, unsigned long *lenp,
50 struct udevice **devp, void **ptrp);
51
52/**
53 * pci_unmap_physmem() - undo a memory mapping
54 *
55 * This must be called after pci_map_physmem() to undo the mapping.
56 *
57 * @paddr: Physical memory address, as passed to pci_map_physmem()
58 * @len: Size of area mapped, as returned by pci_map_physmem()
59 * @dev: Device to unmap, as returned by pci_map_physmem()
60 * @return 0 if OK, -ve on error
61 */
62int pci_unmap_physmem(const void *addr, unsigned long len,
63 struct udevice *dev);
64
65/**
66 * sandbox_set_enable_pci_map() - Enable / disable PCI address mapping
67 *
68 * Since address mapping involves calling every driver, provide a way to
69 * enable and disable this. It can be handled automatically by the emulator
70 * uclass, which knows if any emulators are currently active.
71 *
72 * If this is disabled, pci_map_physmem() will not be called from
73 * map_sysmem().
74 *
75 * @enable: 0 to disable, 1 to enable
76 */
77void sandbox_set_enable_pci_map(int enable);
78
Simon Glassb45122f2015-02-27 22:06:34 -070079/**
80 * sandbox_read_fdt_from_file() - Read a device tree from a file
81 *
82 * Read a device tree file from a host file and set it up for use as the
83 * control FDT.
84 */
85int sandbox_read_fdt_from_file(void);
86
Simon Glass5010d982015-07-06 12:54:29 -060087/* Exit sandbox (quit U-Boot) */
88void sandbox_exit(void);
89
Simon Glass744d9852011-10-10 08:22:14 +000090#endif /* _U_BOOT_SANDBOX_H_ */