diff options
| author | Tom Rini <trini@ti.com> | 2013-10-04 13:17:48 -0400 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-10-04 13:17:48 -0400 |
| commit | f835c77fb7e57508ffe8d8ca3a092ee28add77b2 (patch) | |
| tree | c3cecbfc7fa6adc834c6d2a365bb4e571a388b49 /arch/arm/include/asm/gic.h | |
| parent | 0c5274e6f3231a3a28dafc1204b3f71a3534c520 (diff) | |
| parent | e261c83aa04ce0396d57aaecf8dfe0970ffac03e (diff) | |
| download | olio-uboot-2014.01-f835c77fb7e57508ffe8d8ca3a092ee28add77b2.tar.xz olio-uboot-2014.01-f835c77fb7e57508ffe8d8ca3a092ee28add77b2.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'arch/arm/include/asm/gic.h')
| -rw-r--r-- | arch/arm/include/asm/gic.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/include/asm/gic.h b/arch/arm/include/asm/gic.h new file mode 100644 index 000000000..a0891cc09 --- /dev/null +++ b/arch/arm/include/asm/gic.h @@ -0,0 +1,19 @@ +#ifndef __GIC_V2_H__ +#define __GIC_V2_H__ + +/* register offsets for the ARM generic interrupt controller (GIC) */ + +#define GIC_DIST_OFFSET 0x1000 +#define GICD_CTLR 0x0000 +#define GICD_TYPER 0x0004 +#define GICD_IGROUPRn 0x0080 +#define GICD_SGIR 0x0F00 + +#define GIC_CPU_OFFSET_A9 0x0100 +#define GIC_CPU_OFFSET_A15 0x2000 +#define GICC_CTLR 0x0000 +#define GICC_PMR 0x0004 +#define GICC_IAR 0x000C +#define GICC_EOIR 0x0010 + +#endif |