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

chipidea.h (314B)


      1#ifndef CHIPIDEA_H
      2#define CHIPIDEA_H
      3
      4#include "hw/usb/hcd-ehci.h"
      5#include "qom/object.h"
      6
      7struct ChipideaState {
      8    /*< private >*/
      9    EHCISysBusState parent_obj;
     10
     11    MemoryRegion iomem[3];
     12};
     13
     14#define TYPE_CHIPIDEA "usb-chipidea"
     15OBJECT_DECLARE_SIMPLE_TYPE(ChipideaState, CHIPIDEA)
     16
     17#endif /* CHIPIDEA_H */