2 * Based on MPC8560 ADS and arch/ppc tqm85xx ports
4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
6 * Copyright 2008 Freescale Semiconductor Inc.
8 * Copyright (c) 2005-2006 DENX Software Engineering
9 * Stefan Roese <sr@denx.de>
11 * Based on original work by
12 * Kumar Gala <kumar.gala@freescale.com>
13 * Copyright 2004 Freescale Semiconductor Inc.
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
21 #include <linux/stddef.h>
22 #include <linux/kernel.h>
23 #include <linux/pci.h>
24 #include <linux/kdev_t.h>
25 #include <linux/delay.h>
26 #include <linux/seq_file.h>
27 #include <linux/of_platform.h>
30 #include <asm/machdep.h>
31 #include <asm/pci-bridge.h>
34 #include <mm/mmu_decl.h>
37 #include <sysdev/fsl_soc.h>
38 #include <sysdev/fsl_pci.h>
44 #endif /* CONFIG_CPM2 */
46 static void __init
tqm85xx_pic_init(void)
48 struct mpic
*mpic
= mpic_alloc(NULL
, 0,
54 mpc85xx_cpm2_pic_init();
58 * Setup the architecture
60 static void __init
tqm85xx_setup_arch(void)
63 ppc_md
.progress("tqm85xx_setup_arch()", 0);
69 fsl_pci_assign_primary();
72 static void tqm85xx_show_cpuinfo(struct seq_file
*m
)
74 uint pvid
, svid
, phid1
;
76 pvid
= mfspr(SPRN_PVR
);
77 svid
= mfspr(SPRN_SVR
);
79 seq_printf(m
, "Vendor\t\t: TQ Components\n");
80 seq_printf(m
, "PVR\t\t: 0x%x\n", pvid
);
81 seq_printf(m
, "SVR\t\t: 0x%x\n", svid
);
83 /* Display cpu Pll setting */
84 phid1
= mfspr(SPRN_HID1
);
85 seq_printf(m
, "PLL setting\t: 0x%x\n", ((phid1
>> 24) & 0x3f));
88 static void tqm85xx_ti1520_fixup(struct pci_dev
*pdev
)
92 /* Do not do the fixup on other platforms! */
93 if (!machine_is(tqm85xx
))
96 dev_info(&pdev
->dev
, "Using TI 1520 fixup on TQM85xx\n");
99 * Enable P2CCLK bit in system control register
100 * to enable CLOCK output to power chip
102 pci_read_config_dword(pdev
, 0x80, &val
);
103 pci_write_config_dword(pdev
, 0x80, val
| (1 << 27));
106 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TI
, PCI_DEVICE_ID_TI_1520
,
107 tqm85xx_ti1520_fixup
);
109 machine_arch_initcall(tqm85xx
, mpc85xx_common_publish_devices
);
111 static const char * const board
[] __initconst
= {
121 * Called very early, device-tree isn't unflattened
123 static int __init
tqm85xx_probe(void)
125 return of_device_compatible_match(of_root
, board
);
128 define_machine(tqm85xx
) {
130 .probe
= tqm85xx_probe
,
131 .setup_arch
= tqm85xx_setup_arch
,
132 .init_IRQ
= tqm85xx_pic_init
,
133 .show_cpuinfo
= tqm85xx_show_cpuinfo
,
134 .get_irq
= mpic_get_irq
,
135 .calibrate_decr
= generic_calibrate_decr
,
136 .progress
= udbg_progress
,