cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

hppa_sys.h (580B)


      1/* HPPA cores and system support chips.  */
      2
      3#ifndef HW_HPPA_SYS_H
      4#define HW_HPPA_SYS_H
      5
      6#include "hw/pci/pci.h"
      7#include "hw/pci/pci_host.h"
      8#include "hw/boards.h"
      9#include "hw/intc/i8259.h"
     10
     11#include "hppa_hardware.h"
     12
     13PCIBus *dino_init(MemoryRegion *, qemu_irq *, qemu_irq *);
     14DeviceState *lasi_init(MemoryRegion *);
     15#define enable_lasi_lan()       0
     16
     17#define TYPE_DINO_PCI_HOST_BRIDGE "dino-pcihost"
     18
     19/* hppa_pci.c.  */
     20extern const MemoryRegionOps hppa_pci_ignore_ops;
     21extern const MemoryRegionOps hppa_pci_conf1_ops;
     22extern const MemoryRegionOps hppa_pci_iack_ops;
     23
     24#endif