Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2-rc5 29 lines 610 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * PKUNITY Interrupt Controller (INTC) Registers 4 */ 5/* 6 * INTC Level Reg INTC_ICLR. 7 */ 8#define INTC_ICLR (PKUNITY_INTC_BASE + 0x0000) 9/* 10 * INTC Mask Reg INTC_ICMR. 11 */ 12#define INTC_ICMR (PKUNITY_INTC_BASE + 0x0004) 13/* 14 * INTC Pending Reg INTC_ICPR. 15 */ 16#define INTC_ICPR (PKUNITY_INTC_BASE + 0x0008) 17/* 18 * INTC IRQ Pending Reg INTC_ICIP. 19 */ 20#define INTC_ICIP (PKUNITY_INTC_BASE + 0x000C) 21/* 22 * INTC REAL Pending Reg INTC_ICFP. 23 */ 24#define INTC_ICFP (PKUNITY_INTC_BASE + 0x0010) 25/* 26 * INTC Control Reg INTC_ICCR. 27 */ 28#define INTC_ICCR (PKUNITY_INTC_BASE + 0x0014) 29