blob: 8192987e78e5b7107254ffb29a6dd8856fcc8bad [file] [log] [blame]
Lennert Buytenhekc680b772006-09-18 23:24:52 +01001/*
2 * arch/arm/mach-iop33x/iq80332.c
3 *
4 * Board support code for the Intel IQ80332 platform.
5 *
6 * Author: Dave Jiang <dave.jiang@intel.com>
7 * Copyright (C) 2004 Intel Corp.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 */
14
15#include <linux/mm.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/pci.h>
19#include <linux/string.h>
Lennert Buytenhekc680b772006-09-18 23:24:52 +010020#include <linux/serial_core.h>
21#include <linux/serial_8250.h>
22#include <linux/mtd/physmap.h>
23#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Lennert Buytenhekc680b772006-09-18 23:24:52 +010026#include <asm/irq.h>
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29#include <asm/mach/pci.h>
30#include <asm/mach/time.h>
31#include <asm/mach-types.h>
32#include <asm/page.h>
33#include <asm/pgtable.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/time.h>
Lennert Buytenhekc680b772006-09-18 23:24:52 +010035
36/*
37 * IQ80332 timer tick configuration.
38 */
39static void __init iq80332_timer_init(void)
40{
41 /* D-Step parts and the iop333 run at a higher internal bus frequency */
42 if (*IOP3XX_ATURID >= 0xa || *IOP3XX_ATUDID == 0x374)
Dan Williams3668b452007-02-13 17:13:34 +010043 iop_init_time(333000000);
Lennert Buytenhekc680b772006-09-18 23:24:52 +010044 else
Dan Williams3668b452007-02-13 17:13:34 +010045 iop_init_time(266000000);
Lennert Buytenhekc680b772006-09-18 23:24:52 +010046}
47
Lennert Buytenhekc680b772006-09-18 23:24:52 +010048
49/*
50 * IQ80332 PCI.
51 */
Dan Williamsd73d8012007-05-15 01:03:36 +010052static int __init
Ralf Baechled5341942011-06-10 15:30:21 +010053iq80332_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Lennert Buytenhekc680b772006-09-18 23:24:52 +010054{
55 int irq;
56
57 if (slot == 4 && pin == 1) {
58 /* PCI-X Slot INTA */
Lennert Buytenhekc852ac82006-09-18 23:26:25 +010059 irq = IRQ_IOP33X_XINT0;
Lennert Buytenhekc680b772006-09-18 23:24:52 +010060 } else if (slot == 4 && pin == 2) {
61 /* PCI-X Slot INTB */
Lennert Buytenhekc852ac82006-09-18 23:26:25 +010062 irq = IRQ_IOP33X_XINT1;
Lennert Buytenhekc680b772006-09-18 23:24:52 +010063 } else if (slot == 4 && pin == 3) {
64 /* PCI-X Slot INTC */
Lennert Buytenhekc852ac82006-09-18 23:26:25 +010065 irq = IRQ_IOP33X_XINT2;
Lennert Buytenhekc680b772006-09-18 23:24:52 +010066 } else if (slot == 4 && pin == 4) {
67 /* PCI-X Slot INTD */
Lennert Buytenhekc852ac82006-09-18 23:26:25 +010068 irq = IRQ_IOP33X_XINT3;
Lennert Buytenhekc680b772006-09-18 23:24:52 +010069 } else if (slot == 6) {
70 /* GigE */
Lennert Buytenhekc852ac82006-09-18 23:26:25 +010071 irq = IRQ_IOP33X_XINT2;
Lennert Buytenhekc680b772006-09-18 23:24:52 +010072 } else {
73 printk(KERN_ERR "iq80332_pci_map_irq() called for unknown "
74 "device PCI:%d:%d:%d\n", dev->bus->number,
75 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
76 irq = -1;
77 }
78
79 return irq;
80}
81
82static struct hw_pci iq80332_pci __initdata = {
Lennert Buytenhekc680b772006-09-18 23:24:52 +010083 .nr_controllers = 1,
Russell Kingc23bfc32012-03-10 12:49:16 +000084 .ops = &iop3xx_ops,
Lennert Buytenhekc680b772006-09-18 23:24:52 +010085 .setup = iop3xx_pci_setup,
Dan Williamsc34002c2008-03-26 19:12:38 -070086 .preinit = iop3xx_pci_preinit_cond,
Lennert Buytenhekc680b772006-09-18 23:24:52 +010087 .map_irq = iq80332_pci_map_irq,
88};
89
90static int __init iq80332_pci_init(void)
91{
Dan Williamse90ddd82007-05-02 17:59:44 +010092 if ((iop3xx_get_init_atu() == IOP3XX_INIT_ATU_ENABLE) &&
93 machine_is_iq80332())
Lennert Buytenhekc680b772006-09-18 23:24:52 +010094 pci_common_init(&iq80332_pci);
95
96 return 0;
97}
98
99subsys_initcall(iq80332_pci_init);
100
101
102/*
103 * IQ80332 machine initialisation.
104 */
105static struct physmap_flash_data iq80332_flash_data = {
106 .width = 1,
107};
108
109static struct resource iq80332_flash_resource = {
110 .start = 0xc0000000,
111 .end = 0xc07fffff,
112 .flags = IORESOURCE_MEM,
113};
114
115static struct platform_device iq80332_flash_device = {
116 .name = "physmap-flash",
117 .id = 0,
118 .dev = {
119 .platform_data = &iq80332_flash_data,
120 },
121 .num_resources = 1,
122 .resource = &iq80332_flash_resource,
123};
124
125static void __init iq80332_init_machine(void)
126{
127 platform_device_register(&iop3xx_i2c0_device);
128 platform_device_register(&iop3xx_i2c1_device);
129 platform_device_register(&iop33x_uart0_device);
130 platform_device_register(&iop33x_uart1_device);
131 platform_device_register(&iq80332_flash_device);
Dan Williams2492c842007-01-02 13:52:31 -0700132 platform_device_register(&iop3xx_dma_0_channel);
133 platform_device_register(&iop3xx_dma_1_channel);
134 platform_device_register(&iop3xx_aau_channel);
Lennert Buytenhekc680b772006-09-18 23:24:52 +0100135}
136
137MACHINE_START(IQ80332, "Intel IQ80332")
138 /* Maintainer: Intel Corp. */
Nicolas Pitree5c76c02011-07-05 22:38:13 -0400139 .atag_offset = 0x100,
Lennert Buytenhekc680b772006-09-18 23:24:52 +0100140 .map_io = iop3xx_map_io,
Lennert Buytenhekc852ac82006-09-18 23:26:25 +0100141 .init_irq = iop33x_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700142 .init_time = iq80332_timer_init,
Lennert Buytenhekc680b772006-09-18 23:24:52 +0100143 .init_machine = iq80332_init_machine,
Russell Kingbec92b12011-11-05 11:26:32 +0000144 .restart = iop3xx_restart,
Lennert Buytenhekc680b772006-09-18 23:24:52 +0100145MACHINE_END