blob: 9cd07d39609383a67ce4422dd881a72d3ef5c280 [file] [log] [blame]
Dan Williams285f5fa2006-12-07 02:59:39 +01001/*
2 * iq81340mc board support
3 * Copyright (c) 2005-2006, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 */
19#include <linux/pci.h>
20
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/hardware.h>
Dan Williams285f5fa2006-12-07 02:59:39 +010022#include <asm/irq.h>
23#include <asm/mach/pci.h>
24#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/pci.h>
Dan Williams285f5fa2006-12-07 02:59:39 +010027#include <asm/mach/time.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/time.h>
Dan Williams285f5fa2006-12-07 02:59:39 +010029
30extern int init_atu; /* Flag to select which ATU(s) to initialize / disable */
31
32static int __init
Ralf Baechled5341942011-06-10 15:30:21 +010033iq81340mc_pcix_map_irq(const struct pci_dev *dev, u8 idsel, u8 pin)
Dan Williams285f5fa2006-12-07 02:59:39 +010034{
35 switch (idsel) {
36 case 1:
37 switch (pin) {
38 case 1: return ATUX_INTB;
39 case 2: return ATUX_INTC;
40 case 3: return ATUX_INTD;
41 case 4: return ATUX_INTA;
42 default: return -1;
43 }
44 case 2:
45 switch (pin) {
46 case 1: return ATUX_INTC;
47 case 2: return ATUX_INTD;
48 case 3: return ATUX_INTC;
49 case 4: return ATUX_INTD;
50 default: return -1;
51 }
52 default: return -1;
53 }
54}
55
56static struct hw_pci iq81340mc_pci __initdata = {
Dan Williams285f5fa2006-12-07 02:59:39 +010057 .nr_controllers = 0,
58 .setup = iop13xx_pci_setup,
59 .map_irq = iq81340mc_pcix_map_irq,
60 .scan = iop13xx_scan_bus,
61 .preinit = iop13xx_pci_init,
62};
63
64static int __init iq81340mc_pci_init(void)
65{
66 iop13xx_atu_select(&iq81340mc_pci);
67 pci_common_init(&iq81340mc_pci);
68 iop13xx_map_pci_memory();
69
70 return 0;
71}
72
73static void __init iq81340mc_init(void)
74{
75 iop13xx_platform_init();
76 iq81340mc_pci_init();
Dan Williamsd2dd8b12007-05-02 17:47:47 +010077 iop13xx_add_tpmi_devices();
Dan Williams285f5fa2006-12-07 02:59:39 +010078}
79
80static void __init iq81340mc_timer_init(void)
81{
Dan Williams84c981f2007-04-29 09:32:51 +010082 unsigned long bus_freq = iop13xx_core_freq() / iop13xx_xsi_bus_ratio();
Harvey Harrison8e86f422008-03-04 15:08:02 -080083 printk(KERN_DEBUG "%s: bus frequency: %lu\n", __func__, bus_freq);
Dan Williams84c981f2007-04-29 09:32:51 +010084 iop_init_time(bus_freq);
Dan Williams285f5fa2006-12-07 02:59:39 +010085}
86
Dan Williams285f5fa2006-12-07 02:59:39 +010087MACHINE_START(IQ81340MC, "Intel IQ81340MC")
88 /* Maintainer: Dan Williams <dan.j.williams@intel.com> */
Nicolas Pitred304c542011-07-05 22:38:12 -040089 .atag_offset = 0x100,
Rob Herring1dfe34a2012-02-29 10:56:15 -060090 .init_early = iop13xx_init_early,
Dan Williams285f5fa2006-12-07 02:59:39 +010091 .map_io = iop13xx_map_io,
92 .init_irq = iop13xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -070093 .init_time = iq81340mc_timer_init,
Dan Williams285f5fa2006-12-07 02:59:39 +010094 .init_machine = iq81340mc_init,
Russell King00aa78e2011-11-06 10:49:50 +000095 .restart = iop13xx_restart,
Thomas Gleixner37ebbcf2014-05-07 15:44:04 +000096 .nr_irqs = NR_IOP13XX_IRQS,
Dan Williams285f5fa2006-12-07 02:59:39 +010097MACHINE_END