summaryrefslogtreecommitdiff
path: root/arch/m68k/68000/ucsimm.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2020-12-21 10:35:11 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2020-12-21 10:35:11 -0800
commit8552d28e140110fc935b39a6bfaf33c8ce3a1ad5 (patch)
tree8102bc58bb5be253a7df0993d8d06a128cbc125e /arch/m68k/68000/ucsimm.c
parent70990afa34fbac03ade78e2ad0ccd418acecfc04 (diff)
parent8b22820efb35f93d98638563b0a8f4094e8ee399 (diff)
downloadlinux-8552d28e140110fc935b39a6bfaf33c8ce3a1ad5.tar.gz
linux-8552d28e140110fc935b39a6bfaf33c8ce3a1ad5.tar.bz2
linux-8552d28e140110fc935b39a6bfaf33c8ce3a1ad5.zip
Merge tag 'm68knommu-for-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
Pull m68knommu updates from Greg Ungerer: - cleanup of 68328 code - align BSS section to 32bit * tag 'm68knommu-for-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu: m68k: m68328: remove duplicate code m68k: m68328: move platform code to separate files m68knommu: align BSS section to 4-byte boundaries
Diffstat (limited to 'arch/m68k/68000/ucsimm.c')
-rw-r--r--arch/m68k/68000/ucsimm.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/m68k/68000/ucsimm.c b/arch/m68k/68000/ucsimm.c
new file mode 100644
index 000000000000..7c6cbf643712
--- /dev/null
+++ b/arch/m68k/68000/ucsimm.c
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 1993 Hamish Macdonald
+ * Copyright (C) 1999 D. Jeff Dionne
+ * Copyright (C) 2001 Georges Menie, Ken Desmet
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file COPYING in the main directory of this archive
+ * for more details.
+ */
+#include <linux/init.h>
+#include <asm/bootstd.h>
+#include <asm/machdep.h>
+#include <asm/MC68VZ328.h>
+
+
+#include "m68328.h"
+
+unsigned char *cs8900a_hwaddr;
+static int errno;
+
+_bsc0(char *, getserialnum)
+_bsc1(unsigned char *, gethwaddr, int, a)
+_bsc1(char *, getbenv, char *, a)
+
+void __init init_ucsimm(char *command, int size)
+{
+ char *p;
+
+ pr_info("uCsimm/uCdimm serial string [%s]\n", getserialnum());
+ p = cs8900a_hwaddr = gethwaddr(0);
+ pr_info("uCsimm/uCdimm hwaddr %pM\n", p);
+ p = getbenv("APPEND");
+ if (p)
+ strcpy(p, command);
+ else
+ command[0] = 0;
+}