.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Interrupt Control Unit |
---|
3 | | - * |
---|
4 | | - * This program is free software; you can redistribute it and/or modify |
---|
5 | | - * it under the terms of the GNU General Public License version 2 as |
---|
6 | | - * published by the Free Software Foundation. |
---|
7 | 4 | */ |
---|
8 | 5 | |
---|
9 | 6 | #ifndef __ASM_MACH_ICU_H |
---|
.. | .. |
---|
14 | 11 | #define ICU_VIRT_BASE (AXI_VIRT_BASE + 0x82000) |
---|
15 | 12 | #define ICU_REG(x) (ICU_VIRT_BASE + (x)) |
---|
16 | 13 | |
---|
| 14 | +#define ICU2_VIRT_BASE (AXI_VIRT_BASE + 0x84000) |
---|
| 15 | +#define ICU2_REG(x) (ICU2_VIRT_BASE + (x)) |
---|
| 16 | + |
---|
17 | 17 | #define ICU_INT_CONF(n) ICU_REG((n) << 2) |
---|
18 | 18 | #define ICU_INT_CONF_MASK (0xf) |
---|
19 | 19 | |
---|