diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2013-02-17 16:38:58 +0400 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2019-01-28 11:55:20 -0800 |
commit | 10df8ff146ff0219cf746ac13ffa870c4cf0350a (patch) | |
tree | 78dc8fcc630a6659520a2542375f84eab84d7e0b /hw/xtensa/Makefile.objs | |
parent | 17a86b0e9f64c00f3e438d903d3fa475255630cf (diff) |
target/xtensa: add MX interrupt controller
MX interrupt controller is a collection of the following devices
accessible through the external registers interface:
- interrupt distributor can route each external IRQ line to the
corresponding external IRQ pin of selected subset of connected xtensa
cores. It has per-CPU and per-IRQ enable signals and per-IRQ software
assert signals;
- IPI controller has 16 per-CPU IPI signals that may be routed to a
combination of 3 designated external IRQ pins of connected xtensa
cores;
- cache coherecy register controls core L1 cache participation in the
SMP cluster cache coherency protocol;
- runstall register lets BSP core stall and unstall AP cores.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'hw/xtensa/Makefile.objs')
-rw-r--r-- | hw/xtensa/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/xtensa/Makefile.objs b/hw/xtensa/Makefile.objs index cb4998d2bf..f30e4a7e07 100644 --- a/hw/xtensa/Makefile.objs +++ b/hw/xtensa/Makefile.objs @@ -1,3 +1,4 @@ +obj-y += mx_pic.o obj-y += pic_cpu.o obj-y += sim.o obj-y += xtensa_memory.o |