blob: 98c6c71076a531064c6eefbd306e3ed04ece8b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef MAINBOARD_EMULATION_QEMU_SBSA_CHIP_H
#define MAINBOARD_EMULATION_QEMU_SBSA_CHIP_H
#include <types.h>
struct mainboard_emulation_qemu_sbsa_config {
uint32_t vgic_maintenance_interrupt;
uint32_t performance_interrupt_gsiv;
};
#endif
|