sniprom.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Big Endian PROM code for SNI RM machines
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 2005-2006 Florian Lohoff (flo@rfc822.org)
  9. * Copyright (C) 2005-2006 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/string.h>
  14. #include <linux/console.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/sni.h>
  17. #include <asm/mipsprom.h>
  18. #include <asm/mipsregs.h>
  19. #include <asm/bootinfo.h>
  20. /* special SNI prom calls */
  21. /*
  22. * This does not exist in all proms - SINIX compares
  23. * the prom env variable "version" against "2.0008"
  24. * or greater. If lesser it tries to probe interesting
  25. * registers
  26. */
  27. #define PROM_GET_MEMCONF 58
  28. #define PROM_GET_HWCONF 61
  29. #define PROM_VEC (u64 *)CKSEG1ADDR(0x1fc00000)
  30. #define PROM_ENTRY(x) (PROM_VEC + (x))
  31. #define ___prom_putchar ((int *(*)(int))PROM_ENTRY(PROM_PUTCHAR))
  32. #define ___prom_getenv ((char *(*)(char *))PROM_ENTRY(PROM_GETENV))
  33. #define ___prom_get_memconf ((void (*)(void *))PROM_ENTRY(PROM_GET_MEMCONF))
  34. #define ___prom_get_hwconf ((u32 (*)(void))PROM_ENTRY(PROM_GET_HWCONF))
  35. #ifdef CONFIG_64BIT
  36. /* O32 stack has to be 8-byte aligned. */
  37. static u64 o32_stk[4096];
  38. #define O32_STK &o32_stk[sizeof(o32_stk)]
  39. #define __PROM_O32(fun, arg) fun arg __asm__(#fun); \
  40. __asm__(#fun " = call_o32")
  41. int __PROM_O32(__prom_putchar, (int *(*)(int), void *, int));
  42. char *__PROM_O32(__prom_getenv, (char *(*)(char *), void *, char *));
  43. void __PROM_O32(__prom_get_memconf, (void (*)(void *), void *, void *));
  44. u32 __PROM_O32(__prom_get_hwconf, (u32 (*)(void), void *));
  45. #define _prom_putchar(x) __prom_putchar(___prom_putchar, O32_STK, x)
  46. #define _prom_getenv(x) __prom_getenv(___prom_getenv, O32_STK, x)
  47. #define _prom_get_memconf(x) __prom_get_memconf(___prom_get_memconf, O32_STK, x)
  48. #define _prom_get_hwconf() __prom_get_hwconf(___prom_get_hwconf, O32_STK)
  49. #else
  50. #define _prom_putchar(x) ___prom_putchar(x)
  51. #define _prom_getenv(x) ___prom_getenv(x)
  52. #define _prom_get_memconf(x) ___prom_get_memconf(x)
  53. #define _prom_get_hwconf(x) ___prom_get_hwconf(x)
  54. #endif
  55. void prom_putchar(char c)
  56. {
  57. _prom_putchar(c);
  58. }
  59. char *prom_getenv(char *s)
  60. {
  61. return _prom_getenv(s);
  62. }
  63. void *prom_get_hwconf(void)
  64. {
  65. u32 hwconf = _prom_get_hwconf();
  66. if (hwconf == 0xffffffff)
  67. return NULL;
  68. return (void *)CKSEG1ADDR(hwconf);
  69. }
  70. void __init prom_free_prom_memory(void)
  71. {
  72. }
  73. /*
  74. * /proc/cpuinfo system type
  75. *
  76. */
  77. char *system_type = "Unknown";
  78. const char *get_system_type(void)
  79. {
  80. return system_type;
  81. }
  82. static void __init sni_mem_init(void)
  83. {
  84. int i, memsize;
  85. struct membank {
  86. u32 size;
  87. u32 base;
  88. u32 size2;
  89. u32 pad1;
  90. u32 pad2;
  91. } memconf[8];
  92. int brd_type = *(unsigned char *)SNI_IDPROM_BRDTYPE;
  93. /* MemSIZE from prom in 16MByte chunks */
  94. memsize = *((unsigned char *) SNI_IDPROM_MEMSIZE) * 16;
  95. pr_debug("IDProm memsize: %u MByte\n", memsize);
  96. /* get memory bank layout from prom */
  97. _prom_get_memconf(&memconf);
  98. pr_debug("prom_get_mem_conf memory configuration:\n");
  99. for (i = 0; i < 8 && memconf[i].size; i++) {
  100. if (brd_type == SNI_BRD_PCI_TOWER ||
  101. brd_type == SNI_BRD_PCI_TOWER_CPLUS) {
  102. if (memconf[i].base >= 0x20000000 &&
  103. memconf[i].base < 0x30000000)
  104. memconf[i].base -= 0x20000000;
  105. }
  106. pr_debug("Bank%d: %08x @ %08x\n", i,
  107. memconf[i].size, memconf[i].base);
  108. add_memory_region(memconf[i].base, memconf[i].size,
  109. BOOT_MEM_RAM);
  110. }
  111. }
  112. void __init prom_init(void)
  113. {
  114. int argc = fw_arg0;
  115. u32 *argv = (u32 *)CKSEG0ADDR(fw_arg1);
  116. int i;
  117. sni_mem_init();
  118. /* copy prom cmdline parameters to kernel cmdline */
  119. for (i = 1; i < argc; i++) {
  120. strcat(arcs_cmdline, (char *)CKSEG0ADDR(argv[i]));
  121. if (i < (argc - 1))
  122. strcat(arcs_cmdline, " ");
  123. }
  124. }