diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2011-10-24 22:49:08 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2011-10-24 22:49:08 +0000 |
commit | 44d661c7e0a659eeaae1fdf2d7f038b78a694f03 (patch) | |
tree | 685aa13e05c5287dbb49da3351846ec500738a3e /sys/arch/arm/include | |
parent | 900a7eff33959bbff285c9d314a8fe7ce0cc9d74 (diff) |
Introduce a pluggable interrupt controller infrastructure for beagle,
to allow panda to share the port.
Diffstat (limited to 'sys/arch/arm/include')
-rw-r--r-- | sys/arch/arm/include/cpu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/arm/include/cpu.h b/sys/arch/arm/include/cpu.h index 0f197bedd67..28e06c5c0ac 100644 --- a/sys/arch/arm/include/cpu.h +++ b/sys/arch/arm/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.28 2011/09/20 22:02:13 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.29 2011/10/24 22:49:07 drahn Exp $ */ /* $NetBSD: cpu.h,v 1.34 2003/06/23 11:01:08 martin Exp $ */ /* @@ -194,6 +194,9 @@ struct cpu_info { u_int32_t ci_arm_cpurev; /* CPU revision */ u_int32_t ci_ctrl; /* The CPU control register */ u_int32_t ci_randseed; + + uint32_t ci_cpl; + uint32_t ci_ipending; }; #ifndef MULTIPROCESSOR |