From 08fbf3358af0b2fe4e8a50259707dc5c0c360bad Mon Sep 17 00:00:00 2001 From: Melissa Jost Date: Sun, 24 Oct 2021 19:28:08 -0700 Subject: [PATCH] dev: Modified LupioBLK and LupioTTY to use LupioPIC This replaced the PLIC device within the LupioBLK and LupioTTY with the LupioPIC, so that interrupts now go through the LupioPIC, and the PLIC isn't used anymore. Change-Id: I0eb5d5c5df9cb43cfb5e8e3a5bf4176f48320696 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/53038 Maintainer: Bobby Bruce Tested-by: kokoro Reviewed-by: Jason Lowe-Power --- src/dev/lupio/lupio_blk.hh | 1 + src/dev/lupio/lupio_tty.hh | 1 + 2 files changed, 2 insertions(+) diff --git a/src/dev/lupio/lupio_blk.hh b/src/dev/lupio/lupio_blk.hh index c767ad1609..4e56164311 100644 --- a/src/dev/lupio/lupio_blk.hh +++ b/src/dev/lupio/lupio_blk.hh @@ -32,6 +32,7 @@ #include "debug/LupioBLK.hh" #include "dev/dma_device.hh" #include "dev/io_device.hh" +#include "dev/lupio/lupio_pic.hh" #include "dev/platform.hh" #include "dev/storage/disk_image.hh" #include "params/LupioBLK.hh" diff --git a/src/dev/lupio/lupio_tty.hh b/src/dev/lupio/lupio_tty.hh index 1124193419..e971a9f0f2 100644 --- a/src/dev/lupio/lupio_tty.hh +++ b/src/dev/lupio/lupio_tty.hh @@ -30,6 +30,7 @@ #define __LUPIO_TTY_HH__ #include "dev/io_device.hh" +#include "dev/lupio/lupio_pic.hh" #include "dev/platform.hh" #include "dev/serial/serial.hh" #include "params/LupioTTY.hh"