setup.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*
  2. * Copyright (C) 2004 Florian Schirmer <jolt@tuxbox.org>
  3. * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
  4. * Copyright (C) 2006 Michael Buesch <m@bues.ch>
  5. * Copyright (C) 2010 Waldemar Brodkorb <wbx@openadk.org>
  6. * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  14. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  15. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  16. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  17. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  18. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  20. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  21. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  22. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. *
  24. * You should have received a copy of the GNU General Public License along
  25. * with this program; if not, write to the Free Software Foundation, Inc.,
  26. * 675 Mass Ave, Cambridge, MA 02139, USA.
  27. */
  28. #include <linux/export.h>
  29. #include <linux/types.h>
  30. #include <linux/ssb/ssb.h>
  31. #include <linux/ssb/ssb_embedded.h>
  32. #include <linux/bcma/bcma_soc.h>
  33. #include <asm/bootinfo.h>
  34. #include <asm/reboot.h>
  35. #include <asm/time.h>
  36. #include <bcm47xx.h>
  37. #include <asm/mach-bcm47xx/nvram.h>
  38. union bcm47xx_bus bcm47xx_bus;
  39. EXPORT_SYMBOL(bcm47xx_bus);
  40. enum bcm47xx_bus_type bcm47xx_bus_type;
  41. EXPORT_SYMBOL(bcm47xx_bus_type);
  42. static void bcm47xx_machine_restart(char *command)
  43. {
  44. printk(KERN_ALERT "Please stand by while rebooting the system...\n");
  45. local_irq_disable();
  46. /* Set the watchdog timer to reset immediately */
  47. switch (bcm47xx_bus_type) {
  48. #ifdef CONFIG_BCM47XX_SSB
  49. case BCM47XX_BUS_TYPE_SSB:
  50. ssb_watchdog_timer_set(&bcm47xx_bus.ssb, 1);
  51. break;
  52. #endif
  53. #ifdef CONFIG_BCM47XX_BCMA
  54. case BCM47XX_BUS_TYPE_BCMA:
  55. bcma_chipco_watchdog_timer_set(&bcm47xx_bus.bcma.bus.drv_cc, 1);
  56. break;
  57. #endif
  58. }
  59. while (1)
  60. cpu_relax();
  61. }
  62. static void bcm47xx_machine_halt(void)
  63. {
  64. /* Disable interrupts and watchdog and spin forever */
  65. local_irq_disable();
  66. switch (bcm47xx_bus_type) {
  67. #ifdef CONFIG_BCM47XX_SSB
  68. case BCM47XX_BUS_TYPE_SSB:
  69. ssb_watchdog_timer_set(&bcm47xx_bus.ssb, 0);
  70. break;
  71. #endif
  72. #ifdef CONFIG_BCM47XX_BCMA
  73. case BCM47XX_BUS_TYPE_BCMA:
  74. bcma_chipco_watchdog_timer_set(&bcm47xx_bus.bcma.bus.drv_cc, 0);
  75. break;
  76. #endif
  77. }
  78. while (1)
  79. cpu_relax();
  80. }
  81. #ifdef CONFIG_BCM47XX_SSB
  82. static int bcm47xx_get_sprom_ssb(struct ssb_bus *bus, struct ssb_sprom *out)
  83. {
  84. char prefix[10];
  85. if (bus->bustype == SSB_BUSTYPE_PCI) {
  86. snprintf(prefix, sizeof(prefix), "pci/%u/%u/",
  87. bus->host_pci->bus->number + 1,
  88. PCI_SLOT(bus->host_pci->devfn));
  89. bcm47xx_fill_sprom(out, prefix);
  90. return 0;
  91. } else {
  92. printk(KERN_WARNING "bcm47xx: unable to fill SPROM for given bustype.\n");
  93. return -EINVAL;
  94. }
  95. }
  96. static int bcm47xx_get_invariants(struct ssb_bus *bus,
  97. struct ssb_init_invariants *iv)
  98. {
  99. char buf[20];
  100. /* Fill boardinfo structure */
  101. memset(&(iv->boardinfo), 0 , sizeof(struct ssb_boardinfo));
  102. if (nvram_getenv("boardvendor", buf, sizeof(buf)) >= 0)
  103. iv->boardinfo.vendor = (u16)simple_strtoul(buf, NULL, 0);
  104. else
  105. iv->boardinfo.vendor = SSB_BOARDVENDOR_BCM;
  106. if (nvram_getenv("boardtype", buf, sizeof(buf)) >= 0)
  107. iv->boardinfo.type = (u16)simple_strtoul(buf, NULL, 0);
  108. if (nvram_getenv("boardrev", buf, sizeof(buf)) >= 0)
  109. iv->boardinfo.rev = (u16)simple_strtoul(buf, NULL, 0);
  110. bcm47xx_fill_sprom(&iv->sprom, NULL);
  111. if (nvram_getenv("cardbus", buf, sizeof(buf)) >= 0)
  112. iv->has_cardbus_slot = !!simple_strtoul(buf, NULL, 10);
  113. return 0;
  114. }
  115. static void __init bcm47xx_register_ssb(void)
  116. {
  117. int err;
  118. char buf[100];
  119. struct ssb_mipscore *mcore;
  120. err = ssb_arch_register_fallback_sprom(&bcm47xx_get_sprom_ssb);
  121. if (err)
  122. printk(KERN_WARNING "bcm47xx: someone else already registered"
  123. " a ssb SPROM callback handler (err %d)\n", err);
  124. err = ssb_bus_ssbbus_register(&(bcm47xx_bus.ssb), SSB_ENUM_BASE,
  125. bcm47xx_get_invariants);
  126. if (err)
  127. panic("Failed to initialize SSB bus (err %d)", err);
  128. mcore = &bcm47xx_bus.ssb.mipscore;
  129. if (nvram_getenv("kernel_args", buf, sizeof(buf)) >= 0) {
  130. if (strstr(buf, "console=ttyS1")) {
  131. struct ssb_serial_port port;
  132. printk(KERN_DEBUG "Swapping serial ports!\n");
  133. /* swap serial ports */
  134. memcpy(&port, &mcore->serial_ports[0], sizeof(port));
  135. memcpy(&mcore->serial_ports[0], &mcore->serial_ports[1],
  136. sizeof(port));
  137. memcpy(&mcore->serial_ports[1], &port, sizeof(port));
  138. }
  139. }
  140. }
  141. #endif
  142. #ifdef CONFIG_BCM47XX_BCMA
  143. static int bcm47xx_get_sprom_bcma(struct bcma_bus *bus, struct ssb_sprom *out)
  144. {
  145. char prefix[10];
  146. struct bcma_device *core;
  147. switch (bus->hosttype) {
  148. case BCMA_HOSTTYPE_PCI:
  149. snprintf(prefix, sizeof(prefix), "pci/%u/%u/",
  150. bus->host_pci->bus->number + 1,
  151. PCI_SLOT(bus->host_pci->devfn));
  152. bcm47xx_fill_sprom(out, prefix);
  153. return 0;
  154. case BCMA_HOSTTYPE_SOC:
  155. bcm47xx_fill_sprom_ethernet(out, NULL);
  156. core = bcma_find_core(bus, BCMA_CORE_80211);
  157. if (core) {
  158. snprintf(prefix, sizeof(prefix), "sb/%u/",
  159. core->core_index);
  160. bcm47xx_fill_sprom(out, prefix);
  161. }
  162. return 0;
  163. default:
  164. pr_warn("bcm47xx: unable to fill SPROM for given bustype.\n");
  165. return -EINVAL;
  166. }
  167. }
  168. static void __init bcm47xx_register_bcma(void)
  169. {
  170. int err;
  171. err = bcma_arch_register_fallback_sprom(&bcm47xx_get_sprom_bcma);
  172. if (err)
  173. pr_warn("bcm47xx: someone else already registered a bcma SPROM callback handler (err %d)\n", err);
  174. err = bcma_host_soc_register(&bcm47xx_bus.bcma);
  175. if (err)
  176. panic("Failed to initialize BCMA bus (err %d)", err);
  177. }
  178. #endif
  179. void __init plat_mem_setup(void)
  180. {
  181. struct cpuinfo_mips *c = &current_cpu_data;
  182. if (c->cputype == CPU_74K) {
  183. printk(KERN_INFO "bcm47xx: using bcma bus\n");
  184. #ifdef CONFIG_BCM47XX_BCMA
  185. bcm47xx_bus_type = BCM47XX_BUS_TYPE_BCMA;
  186. bcm47xx_register_bcma();
  187. #endif
  188. } else {
  189. printk(KERN_INFO "bcm47xx: using ssb bus\n");
  190. #ifdef CONFIG_BCM47XX_SSB
  191. bcm47xx_bus_type = BCM47XX_BUS_TYPE_SSB;
  192. bcm47xx_register_ssb();
  193. #endif
  194. }
  195. _machine_restart = bcm47xx_machine_restart;
  196. _machine_halt = bcm47xx_machine_halt;
  197. pm_power_off = bcm47xx_machine_halt;
  198. }
  199. static int __init bcm47xx_register_bus_complete(void)
  200. {
  201. switch (bcm47xx_bus_type) {
  202. #ifdef CONFIG_BCM47XX_SSB
  203. case BCM47XX_BUS_TYPE_SSB:
  204. /* Nothing to do */
  205. break;
  206. #endif
  207. #ifdef CONFIG_BCM47XX_BCMA
  208. case BCM47XX_BUS_TYPE_BCMA:
  209. bcma_bus_register(&bcm47xx_bus.bcma.bus);
  210. break;
  211. #endif
  212. }
  213. return 0;
  214. }
  215. device_initcall(bcm47xx_register_bus_complete);