setup.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /*
  2. * Copyright (C) 2006-2007 PA Semi, Inc
  3. *
  4. * Authors: Kip Walker, PA Semi
  5. * Olof Johansson, PA Semi
  6. *
  7. * Maintained by: Olof Johansson <olof@lixom.net>
  8. *
  9. * Based on arch/powerpc/platforms/maple/setup.c
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. */
  24. #include <linux/errno.h>
  25. #include <linux/kernel.h>
  26. #include <linux/delay.h>
  27. #include <linux/console.h>
  28. #include <linux/export.h>
  29. #include <linux/pci.h>
  30. #include <linux/of_platform.h>
  31. #include <linux/gfp.h>
  32. #include <asm/prom.h>
  33. #include <asm/iommu.h>
  34. #include <asm/machdep.h>
  35. #include <asm/mpic.h>
  36. #include <asm/smp.h>
  37. #include <asm/time.h>
  38. #include <asm/mmu.h>
  39. #include <asm/debug.h>
  40. #include <pcmcia/ss.h>
  41. #include <pcmcia/cistpl.h>
  42. #include <pcmcia/ds.h>
  43. #include "pasemi.h"
  44. /* SDC reset register, must be pre-mapped at reset time */
  45. static void __iomem *reset_reg;
  46. /* Various error status registers, must be pre-mapped at MCE time */
  47. #define MAX_MCE_REGS 32
  48. struct mce_regs {
  49. char *name;
  50. void __iomem *addr;
  51. };
  52. static struct mce_regs mce_regs[MAX_MCE_REGS];
  53. static int num_mce_regs;
  54. static int nmi_virq = 0;
  55. static void __noreturn pas_restart(char *cmd)
  56. {
  57. /* Need to put others cpu in hold loop so they're not sleeping */
  58. smp_send_stop();
  59. udelay(10000);
  60. printk("Restarting...\n");
  61. while (1)
  62. out_le32(reset_reg, 0x6000000);
  63. }
  64. #ifdef CONFIG_SMP
  65. static arch_spinlock_t timebase_lock;
  66. static unsigned long timebase;
  67. static void pas_give_timebase(void)
  68. {
  69. unsigned long flags;
  70. local_irq_save(flags);
  71. hard_irq_disable();
  72. arch_spin_lock(&timebase_lock);
  73. mtspr(SPRN_TBCTL, TBCTL_FREEZE);
  74. isync();
  75. timebase = get_tb();
  76. arch_spin_unlock(&timebase_lock);
  77. while (timebase)
  78. barrier();
  79. mtspr(SPRN_TBCTL, TBCTL_RESTART);
  80. local_irq_restore(flags);
  81. }
  82. static void pas_take_timebase(void)
  83. {
  84. while (!timebase)
  85. smp_rmb();
  86. arch_spin_lock(&timebase_lock);
  87. set_tb(timebase >> 32, timebase & 0xffffffff);
  88. timebase = 0;
  89. arch_spin_unlock(&timebase_lock);
  90. }
  91. static struct smp_ops_t pas_smp_ops = {
  92. .probe = smp_mpic_probe,
  93. .message_pass = smp_mpic_message_pass,
  94. .kick_cpu = smp_generic_kick_cpu,
  95. .setup_cpu = smp_mpic_setup_cpu,
  96. .give_timebase = pas_give_timebase,
  97. .take_timebase = pas_take_timebase,
  98. };
  99. #endif /* CONFIG_SMP */
  100. static void __init pas_setup_arch(void)
  101. {
  102. #ifdef CONFIG_SMP
  103. /* Setup SMP callback */
  104. smp_ops = &pas_smp_ops;
  105. #endif
  106. /* Lookup PCI hosts */
  107. pas_pci_init();
  108. #ifdef CONFIG_DUMMY_CONSOLE
  109. conswitchp = &dummy_con;
  110. #endif
  111. /* Remap SDC register for doing reset */
  112. /* XXXOJN This should maybe come out of the device tree */
  113. reset_reg = ioremap(0xfc101100, 4);
  114. }
  115. static int __init pas_setup_mce_regs(void)
  116. {
  117. struct pci_dev *dev;
  118. int reg;
  119. /* Remap various SoC status registers for use by the MCE handler */
  120. reg = 0;
  121. dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, NULL);
  122. while (dev && reg < MAX_MCE_REGS) {
  123. mce_regs[reg].name = kasprintf(GFP_KERNEL,
  124. "mc%d_mcdebug_errsta", reg);
  125. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x730);
  126. dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, dev);
  127. reg++;
  128. }
  129. dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa001, NULL);
  130. if (dev && reg+4 < MAX_MCE_REGS) {
  131. mce_regs[reg].name = "iobdbg_IntStatus1";
  132. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x438);
  133. reg++;
  134. mce_regs[reg].name = "iobdbg_IOCTbusIntDbgReg";
  135. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x454);
  136. reg++;
  137. mce_regs[reg].name = "iobiom_IntStatus";
  138. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc10);
  139. reg++;
  140. mce_regs[reg].name = "iobiom_IntDbgReg";
  141. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc1c);
  142. reg++;
  143. }
  144. dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa009, NULL);
  145. if (dev && reg+2 < MAX_MCE_REGS) {
  146. mce_regs[reg].name = "l2csts_IntStatus";
  147. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x200);
  148. reg++;
  149. mce_regs[reg].name = "l2csts_Cnt";
  150. mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x214);
  151. reg++;
  152. }
  153. num_mce_regs = reg;
  154. return 0;
  155. }
  156. machine_device_initcall(pasemi, pas_setup_mce_regs);
  157. static __init void pas_init_IRQ(void)
  158. {
  159. struct device_node *np;
  160. struct device_node *root, *mpic_node;
  161. unsigned long openpic_addr;
  162. const unsigned int *opprop;
  163. int naddr, opplen;
  164. int mpic_flags;
  165. const unsigned int *nmiprop;
  166. struct mpic *mpic;
  167. mpic_node = NULL;
  168. for_each_node_by_type(np, "interrupt-controller")
  169. if (of_device_is_compatible(np, "open-pic")) {
  170. mpic_node = np;
  171. break;
  172. }
  173. if (!mpic_node)
  174. for_each_node_by_type(np, "open-pic") {
  175. mpic_node = np;
  176. break;
  177. }
  178. if (!mpic_node) {
  179. printk(KERN_ERR
  180. "Failed to locate the MPIC interrupt controller\n");
  181. return;
  182. }
  183. /* Find address list in /platform-open-pic */
  184. root = of_find_node_by_path("/");
  185. naddr = of_n_addr_cells(root);
  186. opprop = of_get_property(root, "platform-open-pic", &opplen);
  187. if (!opprop) {
  188. printk(KERN_ERR "No platform-open-pic property.\n");
  189. of_node_put(root);
  190. return;
  191. }
  192. openpic_addr = of_read_number(opprop, naddr);
  193. printk(KERN_DEBUG "OpenPIC addr: %lx\n", openpic_addr);
  194. mpic_flags = MPIC_LARGE_VECTORS | MPIC_NO_BIAS | MPIC_NO_RESET;
  195. nmiprop = of_get_property(mpic_node, "nmi-source", NULL);
  196. if (nmiprop)
  197. mpic_flags |= MPIC_ENABLE_MCK;
  198. mpic = mpic_alloc(mpic_node, openpic_addr,
  199. mpic_flags, 0, 0, "PASEMI-OPIC");
  200. BUG_ON(!mpic);
  201. mpic_assign_isu(mpic, 0, mpic->paddr + 0x10000);
  202. mpic_init(mpic);
  203. /* The NMI/MCK source needs to be prio 15 */
  204. if (nmiprop) {
  205. nmi_virq = irq_create_mapping(NULL, *nmiprop);
  206. mpic_irq_set_priority(nmi_virq, 15);
  207. irq_set_irq_type(nmi_virq, IRQ_TYPE_EDGE_RISING);
  208. mpic_unmask_irq(irq_get_irq_data(nmi_virq));
  209. }
  210. of_node_put(mpic_node);
  211. of_node_put(root);
  212. }
  213. static void __init pas_progress(char *s, unsigned short hex)
  214. {
  215. printk("[%04x] : %s\n", hex, s ? s : "");
  216. }
  217. static int pas_machine_check_handler(struct pt_regs *regs)
  218. {
  219. int cpu = smp_processor_id();
  220. unsigned long srr0, srr1, dsisr;
  221. int dump_slb = 0;
  222. int i;
  223. srr0 = regs->nip;
  224. srr1 = regs->msr;
  225. if (nmi_virq && mpic_get_mcirq() == nmi_virq) {
  226. printk(KERN_ERR "NMI delivered\n");
  227. debugger(regs);
  228. mpic_end_irq(irq_get_irq_data(nmi_virq));
  229. goto out;
  230. }
  231. dsisr = mfspr(SPRN_DSISR);
  232. printk(KERN_ERR "Machine Check on CPU %d\n", cpu);
  233. printk(KERN_ERR "SRR0 0x%016lx SRR1 0x%016lx\n", srr0, srr1);
  234. printk(KERN_ERR "DSISR 0x%016lx DAR 0x%016lx\n", dsisr, regs->dar);
  235. printk(KERN_ERR "BER 0x%016lx MER 0x%016lx\n", mfspr(SPRN_PA6T_BER),
  236. mfspr(SPRN_PA6T_MER));
  237. printk(KERN_ERR "IER 0x%016lx DER 0x%016lx\n", mfspr(SPRN_PA6T_IER),
  238. mfspr(SPRN_PA6T_DER));
  239. printk(KERN_ERR "Cause:\n");
  240. if (srr1 & 0x200000)
  241. printk(KERN_ERR "Signalled by SDC\n");
  242. if (srr1 & 0x100000) {
  243. printk(KERN_ERR "Load/Store detected error:\n");
  244. if (dsisr & 0x8000)
  245. printk(KERN_ERR "D-cache ECC double-bit error or bus error\n");
  246. if (dsisr & 0x4000)
  247. printk(KERN_ERR "LSU snoop response error\n");
  248. if (dsisr & 0x2000) {
  249. printk(KERN_ERR "MMU SLB multi-hit or invalid B field\n");
  250. dump_slb = 1;
  251. }
  252. if (dsisr & 0x1000)
  253. printk(KERN_ERR "Recoverable Duptags\n");
  254. if (dsisr & 0x800)
  255. printk(KERN_ERR "Recoverable D-cache parity error count overflow\n");
  256. if (dsisr & 0x400)
  257. printk(KERN_ERR "TLB parity error count overflow\n");
  258. }
  259. if (srr1 & 0x80000)
  260. printk(KERN_ERR "Bus Error\n");
  261. if (srr1 & 0x40000) {
  262. printk(KERN_ERR "I-side SLB multiple hit\n");
  263. dump_slb = 1;
  264. }
  265. if (srr1 & 0x20000)
  266. printk(KERN_ERR "I-cache parity error hit\n");
  267. if (num_mce_regs == 0)
  268. printk(KERN_ERR "No MCE registers mapped yet, can't dump\n");
  269. else
  270. printk(KERN_ERR "SoC debug registers:\n");
  271. for (i = 0; i < num_mce_regs; i++)
  272. printk(KERN_ERR "%s: 0x%08x\n", mce_regs[i].name,
  273. in_le32(mce_regs[i].addr));
  274. if (dump_slb) {
  275. unsigned long e, v;
  276. int i;
  277. printk(KERN_ERR "slb contents:\n");
  278. for (i = 0; i < mmu_slb_size; i++) {
  279. asm volatile("slbmfee %0,%1" : "=r" (e) : "r" (i));
  280. asm volatile("slbmfev %0,%1" : "=r" (v) : "r" (i));
  281. printk(KERN_ERR "%02d %016lx %016lx\n", i, e, v);
  282. }
  283. }
  284. out:
  285. /* SRR1[62] is from MSR[62] if recoverable, so pass that back */
  286. return !!(srr1 & 0x2);
  287. }
  288. #ifdef CONFIG_PCMCIA
  289. static int pcmcia_notify(struct notifier_block *nb, unsigned long action,
  290. void *data)
  291. {
  292. struct device *dev = data;
  293. struct device *parent;
  294. struct pcmcia_device *pdev = to_pcmcia_dev(dev);
  295. /* We are only intereted in device addition */
  296. if (action != BUS_NOTIFY_ADD_DEVICE)
  297. return 0;
  298. parent = pdev->socket->dev.parent;
  299. /* We know electra_cf devices will always have of_node set, since
  300. * electra_cf is an of_platform driver.
  301. */
  302. if (!parent->of_node)
  303. return 0;
  304. if (!of_device_is_compatible(parent->of_node, "electra-cf"))
  305. return 0;
  306. /* We use the direct ops for localbus */
  307. dev->archdata.dma_ops = &dma_direct_ops;
  308. return 0;
  309. }
  310. static struct notifier_block pcmcia_notifier = {
  311. .notifier_call = pcmcia_notify,
  312. };
  313. static inline void pasemi_pcmcia_init(void)
  314. {
  315. extern struct bus_type pcmcia_bus_type;
  316. bus_register_notifier(&pcmcia_bus_type, &pcmcia_notifier);
  317. }
  318. #else
  319. static inline void pasemi_pcmcia_init(void)
  320. {
  321. }
  322. #endif
  323. static const struct of_device_id pasemi_bus_ids[] = {
  324. /* Unfortunately needed for legacy firmwares */
  325. { .type = "localbus", },
  326. { .type = "sdc", },
  327. /* These are the proper entries, which newer firmware uses */
  328. { .compatible = "pasemi,localbus", },
  329. { .compatible = "pasemi,sdc", },
  330. {},
  331. };
  332. static int __init pasemi_publish_devices(void)
  333. {
  334. pasemi_pcmcia_init();
  335. /* Publish OF platform devices for SDC and other non-PCI devices */
  336. of_platform_bus_probe(NULL, pasemi_bus_ids, NULL);
  337. return 0;
  338. }
  339. machine_device_initcall(pasemi, pasemi_publish_devices);
  340. /*
  341. * Called very early, MMU is off, device-tree isn't unflattened
  342. */
  343. static int __init pas_probe(void)
  344. {
  345. if (!of_machine_is_compatible("PA6T-1682M") &&
  346. !of_machine_is_compatible("pasemi,pwrficient"))
  347. return 0;
  348. iommu_init_early_pasemi();
  349. return 1;
  350. }
  351. define_machine(pasemi) {
  352. .name = "PA Semi PWRficient",
  353. .probe = pas_probe,
  354. .setup_arch = pas_setup_arch,
  355. .init_IRQ = pas_init_IRQ,
  356. .get_irq = mpic_get_irq,
  357. .restart = pas_restart,
  358. .get_boot_time = pas_get_boot_time,
  359. .calibrate_decr = generic_calibrate_decr,
  360. .progress = pas_progress,
  361. .machine_check_exception = pas_machine_check_handler,
  362. };