@@ -24,6 +24,7 @@ platforms += netlogic
platforms += paravirt
platforms += pic32
platforms += pistachio
+platforms += ps2
platforms += pmcs-msp71xx
platforms += pnx833x
platforms += ralink
@@ -4,6 +4,7 @@ obj-y += identify.o
obj-y += intc-irq.o
obj-y += irq.o
obj-y += memory.o
+obj-y += prom.o
obj-y += reboot.o
obj-y += rom.o
obj-m += rom-sysfs.o
new file mode 100644
@@ -0,0 +1,7 @@
+#
+# PlayStation 2
+#
+platform-$(CONFIG_SONY_PS2) += ps2/
+cflags-$(CONFIG_SONY_PS2) += -I$(srctree)/arch/mips/include/asm/mach-ps2
+load-$(CONFIG_SONY_PS2) += 0x80010000
+zload-$(CONFIG_SONY_PS2) += 0x00800000
new file mode 100644
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * PlayStation 2 PROM handling
+ */
+
+#include <linux/module.h>
+
+void prom_putchar(char c)
+{
+}
+
+void __init prom_init(void)
+{
+}
+
+void __init prom_free_prom_memory(void)
+{
+}
Signed-off-by: Fredrik Noring <noring@nocrew.org> --- arch/mips/Kbuild.platforms | 1 + arch/mips/ps2/Makefile | 1 + arch/mips/ps2/Platform | 7 +++++++ arch/mips/ps2/prom.c | 18 ++++++++++++++++++ 4 files changed, 27 insertions(+) create mode 100644 arch/mips/ps2/Platform create mode 100644 arch/mips/ps2/prom.c