busdevice.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef BUSDEVICE_H
  2. #define BUSDEVICE_H
  3. #include <linux/types.h>
  4. #include <linux/interrupt.h>
  5. #include <asm/hardware.h>
  6. #include <asm/gsc.h>
  7. #define OFFSET_IRR 0x0000   /* Interrupt request register */
  8. #define OFFSET_IMR 0x0004   /* Interrupt mask register */
  9. #define OFFSET_IPR 0x0008   /* Interrupt pending register */
  10. #define OFFSET_ICR 0x000C   /* Interrupt control register */
  11. #define OFFSET_IAR 0x0010   /* Interrupt address register */
  12. struct busdevice {
  13. struct parisc_device *gsc;
  14. unsigned long hpa;
  15. char *name;
  16. int version;
  17. int type;
  18. int parent_irq;
  19. int eim;
  20. struct irq_region *busdev_region;
  21. };
  22. /* short cut to keep the compiler happy */
  23. #define BUSDEV_DEV(x) ((struct busdevice *) (x))
  24. int gsc_common_irqsetup(struct parisc_device *parent, struct busdevice *busdev);
  25. void busdev_barked(int busdev_irq, void *dev, struct pt_regs *regs);
  26. #endif /* BUSDEVICE_H */