prom.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 <john@phrozen.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 <asm/mach-ralink/ralink_regs.h>
  16. #include "common.h"
  17. struct ralink_soc_info soc_info;
  18. struct rt2880_pmx_group *rt2880_pinmux_data = NULL;
  19. enum ralink_soc_type ralink_soc;
  20. EXPORT_SYMBOL_GPL(ralink_soc);
  21. const char *get_system_type(void)
  22. {
  23. return soc_info.sys_type;
  24. }
  25. static __init void prom_init_cmdline(int argc, char **argv)
  26. {
  27. int i;
  28. pr_debug("prom: fw_arg0=%08x fw_arg1=%08x fw_arg2=%08x fw_arg3=%08x\n",
  29. (unsigned int)fw_arg0, (unsigned int)fw_arg1,
  30. (unsigned int)fw_arg2, (unsigned int)fw_arg3);
  31. argc = fw_arg0;
  32. argv = (char **) KSEG1ADDR(fw_arg1);
  33. if (!argv) {
  34. pr_debug("argv=%p is invalid, skipping\n",
  35. argv);
  36. return;
  37. }
  38. for (i = 0; i < argc; i++) {
  39. char *p = (char *) KSEG1ADDR(argv[i]);
  40. if (CPHYSADDR(p) && *p) {
  41. pr_debug("argv[%d]: %s\n", i, p);
  42. strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
  43. strlcat(arcs_cmdline, p, sizeof(arcs_cmdline));
  44. }
  45. }
  46. }
  47. void __init prom_init(void)
  48. {
  49. int argc;
  50. char **argv;
  51. prom_soc_init(&soc_info);
  52. pr_info("SoC Type: %s\n", get_system_type());
  53. prom_init_cmdline(argc, argv);
  54. }
  55. void __init prom_free_prom_memory(void)
  56. {
  57. }