avic.c (e3372474cfa0dc016f10ec47baddbd1ed0abecf3) | avic.c (50f2de61269bbe2f40bead1969a9594fa8599b93) |
---|---|
1/* 2 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. 3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * as published by the Free Software Foundation; either version 2 8 * of the License, or (at your option) any later version. --- 10 unchanged lines hidden (view full) --- 19 20#include <linux/module.h> 21#include <linux/irq.h> 22#include <linux/irqdomain.h> 23#include <linux/io.h> 24#include <linux/of.h> 25#include <asm/mach/irq.h> 26#include <asm/exception.h> | 1/* 2 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. 3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License 7 * as published by the Free Software Foundation; either version 2 8 * of the License, or (at your option) any later version. --- 10 unchanged lines hidden (view full) --- 19 20#include <linux/module.h> 21#include <linux/irq.h> 22#include <linux/irqdomain.h> 23#include <linux/io.h> 24#include <linux/of.h> 25#include <asm/mach/irq.h> 26#include <asm/exception.h> |
27#include <mach/hardware.h> | |
28#include <mach/irqs.h> 29 30#include "common.h" | 27#include <mach/irqs.h> 28 29#include "common.h" |
30#include "hardware.h" |
|
31#include "irq-common.h" 32 33#define AVIC_INTCNTL 0x00 /* int control reg */ 34#define AVIC_NIMASK 0x04 /* int mask reg */ 35#define AVIC_INTENNUM 0x08 /* int enable number reg */ 36#define AVIC_INTDISNUM 0x0C /* int disable number reg */ 37#define AVIC_INTENABLEH 0x10 /* int enable reg high */ 38#define AVIC_INTENABLEL 0x14 /* int enable reg low */ --- 187 unchanged lines hidden --- | 31#include "irq-common.h" 32 33#define AVIC_INTCNTL 0x00 /* int control reg */ 34#define AVIC_NIMASK 0x04 /* int mask reg */ 35#define AVIC_INTENNUM 0x08 /* int enable number reg */ 36#define AVIC_INTDISNUM 0x0C /* int disable number reg */ 37#define AVIC_INTENABLEH 0x10 /* int enable reg high */ 38#define AVIC_INTENABLEL 0x14 /* int enable reg low */ --- 187 unchanged lines hidden --- |