1/**
2 * \file
3 * \brief Struct definition for the boot param struct supplied by the
4 *        K1OM boot loader
5 */
6
7/*
8 * Copyright (c) 2013 ETH Zurich.
9 * All rights reserved.
10 *
11 * This file is distributed under the terms in the attached LICENSE file.
12 * If you do not find this file, copies can be found by writing to:
13 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
14 *
15 * This is adapted from the Linux kernel (kernel.org)
16 *
17 */
18
19#ifndef KERNEL_IST_BIOS_H
20#define KERNEL_IST_BIOS_H
21
22struct ist_info {
23    uint32_t signature;
24    uint32_t command;
25    uint32_t event;
26    uint32_t perf_level;
27};
28
29#endif /* KERNEL_IST_BIOS_H */
30