quancom_pci.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /***************************************************************************
  2. Quancom pci stuff
  3. copyright (C) 2005 by Frank Mori Hess <fmhess@users.sourceforge.net>
  4. ***************************************************************************/
  5. /***************************************************************************
  6. * *
  7. * This program is free software; you can redistribute it and/or modify *
  8. * it under the terms of the GNU General Public License as published by *
  9. * the Free Software Foundation; either version 2 of the License, or *
  10. * (at your option) any later version. *
  11. * *
  12. ***************************************************************************/
  13. #ifndef _QUANCOM_PCI_H
  14. #define _QUANCOM_PCI_H
  15. /* quancom registers */
  16. enum quancom_regs
  17. {
  18. QUANCOM_IRQ_CONTROL_STATUS_REG = 0xfc,
  19. };
  20. enum quancom_irq_control_status_bits
  21. {
  22. QUANCOM_IRQ_ASSERTED_BIT = 0x1, /* readable (any write to the register clears the interrupt)*/
  23. QUANCOM_IRQ_ENABLE_BIT = 0x4, /* writeable */
  24. };
  25. #endif // _QUANCOM_PCI_H