/* SPDX-License-Identifier: GPL-2.0 */12/***************************************************************************3* Quancom pci stuff4* copyright (C) 2005 by Frank Mori Hess5***************************************************************************/67#ifndef _QUANCOM_PCI_H8#define _QUANCOM_PCI_H910/* quancom registers */11enum quancom_regs {12QUANCOM_IRQ_CONTROL_STATUS_REG = 0xfc,13};1415enum quancom_irq_control_status_bits {16QUANCOM_IRQ_ASSERTED_BIT = 0x1, /* readable */17/* (any write to the register clears the interrupt)*/18QUANCOM_IRQ_ENABLE_BIT = 0x4, /* writeable */19};2021#endif // _QUANCOM_PCI_H222324