ucsimm.c 881 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 1993 Hamish Macdonald
  4. * Copyright (C) 1999 D. Jeff Dionne
  5. * Copyright (C) 2001 Georges Menie, Ken Desmet
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file COPYING in the main directory of this archive
  9. * for more details.
  10. */
  11. #include <linux/init.h>
  12. #include <asm/bootstd.h>
  13. #include <asm/machdep.h>
  14. #include <asm/MC68VZ328.h>
  15. #include "m68328.h"
  16. static int errno;
  17. static _bsc0(char *, getserialnum)
  18. static _bsc1(unsigned char *, gethwaddr, int, a)
  19. static _bsc1(char *, getbenv, char *, a)
  20. void __init init_ucsimm(char *command, int size)
  21. {
  22. char *p;
  23. pr_info("uCsimm/uCdimm serial string [%s]\n", getserialnum());
  24. p = gethwaddr(0);
  25. pr_info("uCsimm/uCdimm hwaddr %pM\n", p);
  26. p = getbenv("APPEND");
  27. if (p)
  28. strcpy(p, command);
  29. else
  30. command[0] = 0;
  31. }