prom.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License version 2 as published
  4. * by the Free Software Foundation.
  5. *
  6. * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
  7. * Copyright (C) 2010 Joonas Lahtinen <joonas.lahtinen@gmail.com>
  8. * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
  9. */
  10. #include <linux/string.h>
  11. #include <linux/of_fdt.h>
  12. #include <linux/of_platform.h>
  13. #include <asm/bootinfo.h>
  14. #include <asm/addrspace.h>
  15. #include "common.h"
  16. struct ralink_soc_info soc_info;
  17. struct rt2880_pmx_group *rt2880_pinmux_data = NULL;
  18. const char *get_system_type(void)
  19. {
  20. return soc_info.sys_type;
  21. }
  22. static __init void prom_init_cmdline(int argc, char **argv)
  23. {
  24. int i;
  25. pr_debug("prom: fw_arg0=%08x fw_arg1=%08x fw_arg2=%08x fw_arg3=%08x\n",
  26. (unsigned int)fw_arg0, (unsigned int)fw_arg1,
  27. (unsigned int)fw_arg2, (unsigned int)fw_arg3);
  28. argc = fw_arg0;
  29. argv = (char **) KSEG1ADDR(fw_arg1);
  30. if (!argv) {
  31. pr_debug("argv=%p is invalid, skipping\n",
  32. argv);
  33. return;
  34. }
  35. for (i = 0; i < argc; i++) {
  36. char *p = (char *) KSEG1ADDR(argv[i]);
  37. if (CPHYSADDR(p) && *p) {
  38. pr_debug("argv[%d]: %s\n", i, p);
  39. strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
  40. strlcat(arcs_cmdline, p, sizeof(arcs_cmdline));
  41. }
  42. }
  43. }
  44. void __init prom_init(void)
  45. {
  46. int argc;
  47. char **argv;
  48. prom_soc_init(&soc_info);
  49. pr_info("SoC Type: %s\n", get_system_type());
  50. prom_init_cmdline(argc, argv);
  51. }
  52. void __init prom_free_prom_memory(void)
  53. {
  54. }