quancom_pci.h 611 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /***************************************************************************
  3. * Quancom pci stuff
  4. * copyright (C) 2005 by Frank Mori Hess
  5. ***************************************************************************/
  6. #ifndef _QUANCOM_PCI_H
  7. #define _QUANCOM_PCI_H
  8. /* quancom registers */
  9. enum quancom_regs {
  10. QUANCOM_IRQ_CONTROL_STATUS_REG = 0xfc,
  11. };
  12. enum quancom_irq_control_status_bits {
  13. QUANCOM_IRQ_ASSERTED_BIT = 0x1, /* readable */
  14. /* (any write to the register clears the interrupt)*/
  15. QUANCOM_IRQ_ENABLE_BIT = 0x4, /* writeable */
  16. };
  17. #endif // _QUANCOM_PCI_H