prom.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * Copyright (C) 2004 Florian Schirmer <jolt@tuxbox.org>
  3. * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net>
  4. * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the
  8. * Free Software Foundation; either version 2 of the License, or (at your
  9. * option) any later version.
  10. *
  11. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  12. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  13. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  14. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  15. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  16. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  17. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  18. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  19. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  20. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21. *
  22. * You should have received a copy of the GNU General Public License along
  23. * with this program; if not, write to the Free Software Foundation, Inc.,
  24. * 675 Mass Ave, Cambridge, MA 02139, USA.
  25. */
  26. #include <linux/init.h>
  27. #include <linux/types.h>
  28. #include <linux/kernel.h>
  29. #include <linux/spinlock.h>
  30. #include <linux/smp.h>
  31. #include <asm/bootinfo.h>
  32. #include <asm/fw/cfe/cfe_api.h>
  33. #include <asm/fw/cfe/cfe_error.h>
  34. static int cfe_cons_handle;
  35. const char *get_system_type(void)
  36. {
  37. return "Broadcom BCM47XX";
  38. }
  39. void prom_putchar(char c)
  40. {
  41. while (cfe_write(cfe_cons_handle, &c, 1) == 0)
  42. ;
  43. }
  44. static __init void prom_init_cfe(void)
  45. {
  46. uint32_t cfe_ept;
  47. uint32_t cfe_handle;
  48. uint32_t cfe_eptseal;
  49. int argc = fw_arg0;
  50. char **envp = (char **) fw_arg2;
  51. int *prom_vec = (int *) fw_arg3;
  52. /*
  53. * Check if a loader was used; if NOT, the 4 arguments are
  54. * what CFE gives us (handle, 0, EPT and EPTSEAL)
  55. */
  56. if (argc < 0) {
  57. cfe_handle = (uint32_t)argc;
  58. cfe_ept = (uint32_t)envp;
  59. cfe_eptseal = (uint32_t)prom_vec;
  60. } else {
  61. if ((int)prom_vec < 0) {
  62. /*
  63. * Old loader; all it gives us is the handle,
  64. * so use the "known" entrypoint and assume
  65. * the seal.
  66. */
  67. cfe_handle = (uint32_t)prom_vec;
  68. cfe_ept = 0xBFC00500;
  69. cfe_eptseal = CFE_EPTSEAL;
  70. } else {
  71. /*
  72. * Newer loaders bundle the handle/ept/eptseal
  73. * Note: prom_vec is in the loader's useg
  74. * which is still alive in the TLB.
  75. */
  76. cfe_handle = prom_vec[0];
  77. cfe_ept = prom_vec[2];
  78. cfe_eptseal = prom_vec[3];
  79. }
  80. }
  81. if (cfe_eptseal != CFE_EPTSEAL) {
  82. /* too early for panic to do any good */
  83. printk(KERN_ERR "CFE's entrypoint seal doesn't match.");
  84. while (1) ;
  85. }
  86. cfe_init(cfe_handle, cfe_ept);
  87. }
  88. static __init void prom_init_console(void)
  89. {
  90. /* Initialize CFE console */
  91. cfe_cons_handle = cfe_getstdhandle(CFE_STDHANDLE_CONSOLE);
  92. }
  93. static __init void prom_init_cmdline(void)
  94. {
  95. static char buf[COMMAND_LINE_SIZE] __initdata;
  96. /* Get the kernel command line from CFE */
  97. if (cfe_getenv("LINUX_CMDLINE", buf, COMMAND_LINE_SIZE) >= 0) {
  98. buf[COMMAND_LINE_SIZE - 1] = 0;
  99. strcpy(arcs_cmdline, buf);
  100. }
  101. /* Force a console handover by adding a console= argument if needed,
  102. * as CFE is not available anymore later in the boot process. */
  103. if ((strstr(arcs_cmdline, "console=")) == NULL) {
  104. /* Try to read the default serial port used by CFE */
  105. if ((cfe_getenv("BOOT_CONSOLE", buf, COMMAND_LINE_SIZE) < 0)
  106. || (strncmp("uart", buf, 4)))
  107. /* Default to uart0 */
  108. strcpy(buf, "uart0");
  109. /* Compute the new command line */
  110. snprintf(arcs_cmdline, COMMAND_LINE_SIZE, "%s console=ttyS%c,115200",
  111. arcs_cmdline, buf[4]);
  112. }
  113. }
  114. static __init void prom_init_mem(void)
  115. {
  116. unsigned long mem;
  117. unsigned long max;
  118. unsigned long off;
  119. struct cpuinfo_mips *c = &current_cpu_data;
  120. /* Figure out memory size by finding aliases.
  121. *
  122. * We should theoretically use the mapping from CFE using cfe_enummem().
  123. * However as the BCM47XX is mostly used on low-memory systems, we
  124. * want to reuse the memory used by CFE (around 4MB). That means cfe_*
  125. * functions stop to work at some point during the boot, we should only
  126. * call them at the beginning of the boot.
  127. *
  128. * BCM47XX uses 128MB for addressing the ram, if the system contains
  129. * less that that amount of ram it remaps the ram more often into the
  130. * available space.
  131. * Accessing memory after 128MB will cause an exception.
  132. * max contains the biggest possible address supported by the platform.
  133. * If the method wants to try something above we assume 128MB ram.
  134. */
  135. off = (unsigned long)prom_init;
  136. max = off | ((128 << 20) - 1);
  137. for (mem = (1 << 20); mem < (128 << 20); mem += (1 << 20)) {
  138. if ((off + mem) > max) {
  139. mem = (128 << 20);
  140. printk(KERN_DEBUG "assume 128MB RAM\n");
  141. break;
  142. }
  143. if (!memcmp(prom_init, prom_init + mem, 32))
  144. break;
  145. }
  146. /* Ignoring the last page when ddr size is 128M. Cached
  147. * accesses to last page is causing the processor to prefetch
  148. * using address above 128M stepping out of the ddr address
  149. * space.
  150. */
  151. if (c->cputype == CPU_74K && (mem == (128 << 20)))
  152. mem -= 0x1000;
  153. add_memory_region(0, mem, BOOT_MEM_RAM);
  154. }
  155. void __init prom_init(void)
  156. {
  157. prom_init_cfe();
  158. prom_init_console();
  159. prom_init_cmdline();
  160. prom_init_mem();
  161. }
  162. void __init prom_free_prom_memory(void)
  163. {
  164. }