@@ -1,3 +1,4 @@
+obj-y += aplic.o
obj-y += cpufeature.o
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
obj-y += entry.o
new file mode 100644
@@ -0,0 +1,50 @@
+/* SPDX-License-Identifier: MIT */
+
+/*
+ * xen/arch/riscv/aplic.c
+ *
+ * RISC-V Advanced Platform-Level Interrupt Controller support
+ *
+ * Copyright (c) 2023-2024 Microchip.
+ * Copyright (c) 2024 Vates
+ */
+
+#include <xen/errno.h>
+#include <xen/init.h>
+#include <xen/types.h>
+
+#include <asm/device.h>
+#include <asm/intc.h>
+
+static struct intc_info aplic_info = {
+ .hw_version = INTC_APLIC,
+ .node = NULL
+};
+
+static int __init aplic_preinit(struct dt_device_node *node, const void *dat)
+{
+ if ( aplic_info.node )
+ {
+ printk("XEN doesn't support more than one S mode APLIC\n");
+ return -ENODEV;
+ }
+
+ /* don't process if APLIC node is not for S mode */
+ if ( dt_get_property(node, "riscv,children", NULL) )
+ return -ENODEV;
+
+ aplic_info.node = node;
+
+ return 0;
+}
+
+static const struct dt_device_match aplic_dt_match[] __initconst =
+{
+ DT_MATCH_COMPATIBLE("riscv,aplic"),
+ { /* sentinel */ },
+};
+
+DT_DEVICE_START(aplic, "APLIC", DEVICE_INTERRUPT_CONTROLLER)
+ .dt_match = aplic_dt_match,
+ .init = aplic_preinit,
+DT_DEVICE_END
new file mode 100644
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: MIT */
+
+/*
+ * (c) 2023-2024 Microchip Technology Inc.
+ * (c) 2024 Vates
+ */
+
+#ifndef ASM__RISCV__INTERRUPT_CONTOLLER_H
+#define ASM__RISCV__INTERRUPT_CONTOLLER_H
+
+enum intc_version {
+ INTC_APLIC,
+};
+
+struct intc_info {
+ enum intc_version hw_version;
+ const struct dt_device_node *node;
+};
+
+#endif /* ASM__RISCV__INTERRUPT_CONTOLLER_H */