2
0

digic.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Misc Canon DIGIC declarations.
  3. *
  4. * Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the 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,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #ifndef HW_ARM_DIGIC_H
  18. #define HW_ARM_DIGIC_H
  19. #include "cpu.h"
  20. #include "hw/timer/digic-timer.h"
  21. #include "hw/char/digic-uart.h"
  22. #include "qom/object.h"
  23. #define TYPE_DIGIC "digic"
  24. OBJECT_DECLARE_SIMPLE_TYPE(DigicState, DIGIC)
  25. #define DIGIC4_NB_TIMERS 3
  26. struct DigicState {
  27. /*< private >*/
  28. DeviceState parent_obj;
  29. /*< public >*/
  30. ARMCPU cpu;
  31. DigicTimerState timer[DIGIC4_NB_TIMERS];
  32. DigicUartState uart;
  33. };
  34. #endif /* HW_ARM_DIGIC_H */