1/*
2 * Copyright 2017, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(DATA61_BSD)
11 */
12
13#include <platsupport/plat/acpi/acpi.h>
14#include "acpi.h"
15#include "regions.h"
16
17#ifdef CONFIG_LIB_SEL4_ACPI_DEBUG
18
19/*
20 * interactively browse the ACPI table at the given address
21 * User input required to traverse the tree
22 */
23void
24acpi_browse_tables(const acpi_rsdp_t* rsdp, size_t offset);
25
26/*
27 * interactively browse the tables given in the region list
28 */
29void
30acpi_browse_regions(const RegionList_t* regions);
31
32#else
33static inline void
34acpi_browse_tables(const acpi_rsdp_t* rsdp, size_t offset)
35{
36    (void)rsdp;
37    (void)offset;
38}
39
40static inline void
41acpi_browse_regions(const RegionList_t* regions)
42{
43    (void)regions;
44}
45
46#endif
47