npcm7xx_mc.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Nuvoton NPCM7xx Memory Controller stub
  3. *
  4. * Copyright 2020 Google LLC
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14. * for more details.
  15. */
  16. #ifndef NPCM7XX_MC_H
  17. #define NPCM7XX_MC_H
  18. #include "exec/memory.h"
  19. #include "hw/sysbus.h"
  20. /**
  21. * struct NPCM7xxMCState - Device state for the memory controller.
  22. * @parent: System bus device.
  23. * @mmio: Memory region through which registers are accessed.
  24. */
  25. typedef struct NPCM7xxMCState {
  26. SysBusDevice parent;
  27. MemoryRegion mmio;
  28. } NPCM7xxMCState;
  29. #define TYPE_NPCM7XX_MC "npcm7xx-mc"
  30. #define NPCM7XX_MC(obj) OBJECT_CHECK(NPCM7xxMCState, (obj), TYPE_NPCM7XX_MC)
  31. #endif /* NPCM7XX_MC_H */