GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / platforms / 82xx / pq2.c
blob9761a59f175fa3bf01b616b576310989a7f7bb3f
1 /*
2 * Common PowerQUICC II code.
4 * Author: Scott Wood <scottwood@freescale.com>
5 * Copyright (c) 2007 Freescale Semiconductor
7 * Based on code by Vitaly Bordug <vbordug@ru.mvista.com>
8 * pq2_restart fix by Wade Farnsworth <wfarnsworth@mvista.com>
9 * Copyright (c) 2006 MontaVista Software, Inc.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
17 #include <asm/cpm2.h>
18 #include <asm/io.h>
19 #include <asm/pci-bridge.h>
20 #include <asm/system.h>
22 #include <platforms/82xx/pq2.h>
24 #define RMR_CSRE 0x00000001
26 void pq2_restart(char *cmd)
28 local_irq_disable();
29 setbits32(&cpm2_immr->im_clkrst.car_rmr, RMR_CSRE);
31 /* Clear the ME,EE,IR & DR bits in MSR to cause checkstop */
32 mtmsr(mfmsr() & ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR));
33 in_8(&cpm2_immr->im_clkrst.res[0]);
35 panic("Restart failed\n");
38 #ifdef CONFIG_PCI
39 static int pq2_pci_exclude_device(struct pci_controller *hose,
40 u_char bus, u8 devfn)
42 if (bus == 0 && PCI_SLOT(devfn) == 0)
43 return PCIBIOS_DEVICE_NOT_FOUND;
44 else
45 return PCIBIOS_SUCCESSFUL;
48 static void __init pq2_pci_add_bridge(struct device_node *np)
50 struct pci_controller *hose;
51 struct resource r;
53 if (of_address_to_resource(np, 0, &r) || r.end - r.start < 0x10b)
54 goto err;
56 ppc_pci_add_flags(PPC_PCI_REASSIGN_ALL_BUS);
58 hose = pcibios_alloc_controller(np);
59 if (!hose)
60 return;
62 hose->dn = np;
64 setup_indirect_pci(hose, r.start + 0x100, r.start + 0x104, 0);
65 pci_process_bridge_OF_ranges(hose, np, 1);
67 return;
69 err:
70 printk(KERN_ERR "No valid PCI reg property in device tree\n");
73 void __init pq2_init_pci(void)
75 struct device_node *np = NULL;
77 ppc_md.pci_exclude_device = pq2_pci_exclude_device;
79 while ((np = of_find_compatible_node(np, NULL, "fsl,pq2-pci")))
80 pq2_pci_add_bridge(np);
82 #endif