aboutsummaryrefslogtreecommitdiff
path: root/hw/Makefile.inc
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2020-04-02 22:13:56 +1100
committerOliver O'Halloran <oohall@gmail.com>2020-04-08 14:38:33 +1000
commite991415a88dbfd6c1690c5c2d8840288f45ec925 (patch)
treec3e814c5f255def7f8bb410e5ba34ad832bdaa1e /hw/Makefile.inc
parent38b5c3179d59489320e116b810ab21eec8205657 (diff)
downloadskiboot-e991415a88dbfd6c1690c5c2d8840288f45ec925.zip
skiboot-e991415a88dbfd6c1690c5c2d8840288f45ec925.tar.gz
skiboot-e991415a88dbfd6c1690c5c2d8840288f45ec925.tar.bz2
hw/ocmb: Add OCMB SCOM support
Add a driver for the SCOM ranges of the OCMB. Unlike most chips the OCMB has two different (three if you count OpenCAPI config space) register spaces and we need to ensure that the right access size is used on each. Additionally the SCOM interface is a bit non-standard in that a full physical address is passed as the SCOM address rather than a register number so we don't need to perform any address transformations, we just need to verify that the address falls into one of the nominated address ranges. Cc: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'hw/Makefile.inc')
-rw-r--r--hw/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/Makefile.inc b/hw/Makefile.inc
index b708bdf..a7f450c 100644
--- a/hw/Makefile.inc
+++ b/hw/Makefile.inc
@@ -9,6 +9,7 @@ HW_OBJS += fake-nvram.o lpc-mbox.o npu2.o npu2-hw-procedures.o
HW_OBJS += npu2-common.o npu2-opencapi.o phys-map.o sbe-p9.o capp.o
HW_OBJS += occ-sensor.o vas.o sbe-p8.o dio-p9.o lpc-port80h.o cache-p9.o
HW_OBJS += npu-opal.o npu3.o npu3-nvlink.o npu3-hw-procedures.o
+HW_OBJS += ocmb.o
HW=hw/built-in.a
include $(SRC)/hw/fsp/Makefile.inc