irqmp.h 556 B

1234567891011121314151617181920212223
  1. /* GRLIB IRQMP (IRQ Multi-processor controller) definitions
  2. *
  3. * (C) Copyright 2010, 2015
  4. * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __GRLIB_IRQMP_H__
  9. #define __GRLIB_IRQMP_H__
  10. typedef struct {
  11. volatile unsigned int ilevel;
  12. volatile unsigned int ipend;
  13. volatile unsigned int iforce;
  14. volatile unsigned int iclear;
  15. volatile unsigned int mstatus;
  16. volatile unsigned int notused[11];
  17. volatile unsigned int cpu_mask[16];
  18. volatile unsigned int cpu_force[16];
  19. } ambapp_dev_irqmp;
  20. #endif