prom.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. #include <bcm47xx.h>
  35. #include <bcm47xx_board.h>
  36. static int cfe_cons_handle;
  37. static u16 get_chip_id(void)
  38. {
  39. switch (bcm47xx_bus_type) {
  40. #ifdef CONFIG_BCM47XX_SSB
  41. case BCM47XX_BUS_TYPE_SSB:
  42. return bcm47xx_bus.ssb.chip_id;
  43. #endif
  44. #ifdef CONFIG_BCM47XX_BCMA
  45. case BCM47XX_BUS_TYPE_BCMA:
  46. return bcm47xx_bus.bcma.bus.chipinfo.id;
  47. #endif
  48. }
  49. return 0;
  50. }
  51. const char *get_system_type(void)
  52. {
  53. static char buf[50];
  54. u16 chip_id = get_chip_id();
  55. snprintf(buf, sizeof(buf),
  56. (chip_id > 0x9999) ? "Broadcom BCM%d (%s)" :
  57. "Broadcom BCM%04X (%s)",
  58. chip_id, bcm47xx_board_get_name());
  59. return buf;
  60. }
  61. void prom_putchar(char c)
  62. {
  63. while (cfe_write(cfe_cons_handle, &c, 1) == 0)
  64. ;
  65. }
  66. static __init void prom_init_cfe(void)
  67. {
  68. uint32_t cfe_ept;
  69. uint32_t cfe_handle;
  70. uint32_t cfe_eptseal;
  71. int argc = fw_arg0;
  72. char **envp = (char **) fw_arg2;
  73. int *prom_vec = (int *) fw_arg3;
  74. /*
  75. * Check if a loader was used; if NOT, the 4 arguments are
  76. * what CFE gives us (handle, 0, EPT and EPTSEAL)
  77. */
  78. if (argc < 0) {
  79. cfe_handle = (uint32_t)argc;
  80. cfe_ept = (uint32_t)envp;
  81. cfe_eptseal = (uint32_t)prom_vec;
  82. } else {
  83. if ((int)prom_vec < 0) {
  84. /*
  85. * Old loader; all it gives us is the handle,
  86. * so use the "known" entrypoint and assume
  87. * the seal.
  88. */
  89. cfe_handle = (uint32_t)prom_vec;
  90. cfe_ept = 0xBFC00500;
  91. cfe_eptseal = CFE_EPTSEAL;
  92. } else {
  93. /*
  94. * Newer loaders bundle the handle/ept/eptseal
  95. * Note: prom_vec is in the loader's useg
  96. * which is still alive in the TLB.
  97. */
  98. cfe_handle = prom_vec[0];
  99. cfe_ept = prom_vec[2];
  100. cfe_eptseal = prom_vec[3];
  101. }
  102. }
  103. if (cfe_eptseal != CFE_EPTSEAL) {
  104. /* too early for panic to do any good */
  105. printk(KERN_ERR "CFE's entrypoint seal doesn't match.");
  106. while (1) ;
  107. }
  108. cfe_init(cfe_handle, cfe_ept);
  109. }
  110. static __init void prom_init_console(void)
  111. {
  112. /* Initialize CFE console */
  113. cfe_cons_handle = cfe_getstdhandle(CFE_STDHANDLE_CONSOLE);
  114. }
  115. static __init void prom_init_cmdline(void)
  116. {
  117. static char buf[COMMAND_LINE_SIZE] __initdata;
  118. /* Get the kernel command line from CFE */
  119. if (cfe_getenv("LINUX_CMDLINE", buf, COMMAND_LINE_SIZE) >= 0) {
  120. buf[COMMAND_LINE_SIZE - 1] = 0;
  121. strcpy(arcs_cmdline, buf);
  122. }
  123. /* Force a console handover by adding a console= argument if needed,
  124. * as CFE is not available anymore later in the boot process. */
  125. if ((strstr(arcs_cmdline, "console=")) == NULL) {
  126. /* Try to read the default serial port used by CFE */
  127. if ((cfe_getenv("BOOT_CONSOLE", buf, COMMAND_LINE_SIZE) < 0)
  128. || (strncmp("uart", buf, 4)))
  129. /* Default to uart0 */
  130. strcpy(buf, "uart0");
  131. /* Compute the new command line */
  132. snprintf(arcs_cmdline, COMMAND_LINE_SIZE, "%s console=ttyS%c,115200",
  133. arcs_cmdline, buf[4]);
  134. }
  135. }
  136. static __init void prom_init_mem(void)
  137. {
  138. unsigned long mem;
  139. unsigned long max;
  140. unsigned long off;
  141. struct cpuinfo_mips *c = &current_cpu_data;
  142. /* Figure out memory size by finding aliases.
  143. *
  144. * We should theoretically use the mapping from CFE using cfe_enummem().
  145. * However as the BCM47XX is mostly used on low-memory systems, we
  146. * want to reuse the memory used by CFE (around 4MB). That means cfe_*
  147. * functions stop to work at some point during the boot, we should only
  148. * call them at the beginning of the boot.
  149. *
  150. * BCM47XX uses 128MB for addressing the ram, if the system contains
  151. * less that that amount of ram it remaps the ram more often into the
  152. * available space.
  153. * Accessing memory after 128MB will cause an exception.
  154. * max contains the biggest possible address supported by the platform.
  155. * If the method wants to try something above we assume 128MB ram.
  156. */
  157. off = (unsigned long)prom_init;
  158. max = off | ((128 << 20) - 1);
  159. for (mem = (1 << 20); mem < (128 << 20); mem += (1 << 20)) {
  160. if ((off + mem) > max) {
  161. mem = (128 << 20);
  162. printk(KERN_DEBUG "assume 128MB RAM\n");
  163. break;
  164. }
  165. if (!memcmp(prom_init, prom_init + mem, 32))
  166. break;
  167. }
  168. /* Ignoring the last page when ddr size is 128M. Cached
  169. * accesses to last page is causing the processor to prefetch
  170. * using address above 128M stepping out of the ddr address
  171. * space.
  172. */
  173. if (c->cputype == CPU_74K && (mem == (128 << 20)))
  174. mem -= 0x1000;
  175. add_memory_region(0, mem, BOOT_MEM_RAM);
  176. }
  177. void __init prom_init(void)
  178. {
  179. prom_init_cfe();
  180. prom_init_console();
  181. prom_init_cmdline();
  182. prom_init_mem();
  183. }
  184. void __init prom_free_prom_memory(void)
  185. {
  186. }