The AR71xx has APB interrupts in the MISC registers from 0-7, later
chips have more. So for now, let's allow more. We should teach the apb code to just reject interrupts that lie outside what the chip can do at runtime.
This commit is contained in:
parent
fee24a79d9
commit
d1dfc4a67e
@ -23,21 +23,23 @@
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _APBVAR_H_
|
||||
#define _APBVAR_H_
|
||||
|
||||
#define APB_IRQ_BASE 0
|
||||
#define APB_IRQ_END 7
|
||||
#define APB_NIRQS 8
|
||||
#define APB_IRQ_END 31
|
||||
#define APB_NIRQS 32
|
||||
|
||||
struct apb_softc {
|
||||
struct rman apb_irq_rman;
|
||||
struct rman apb_mem_rman;
|
||||
/* IRQ events structs for child devices */
|
||||
struct intr_event *sc_eventstab[APB_NIRQS];
|
||||
mips_intrcnt_t sc_intr_counter[APB_NIRQS];
|
||||
struct intr_event *sc_eventstab[APB_NIRQS];
|
||||
mips_intrcnt_t sc_intr_counter[APB_NIRQS];
|
||||
/* Resources and cookies for MIPS CPU INTs */
|
||||
struct resource *sc_misc_irq;
|
||||
void *sc_misc_ih;
|
||||
|
Loading…
x
Reference in New Issue
Block a user