2 * linux/arch/sh/drivers/pci/ops-bigsur.c
4 * By Dustin McIntire (dustin@sensoria.com) (c)2001
6 * Ported to new API by Paul Mundt <lethal@linux-sh.org>.
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
11 * PCI initialization for the Hitachi Big Sur Evaluation Board
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/pci.h>
19 #include <asm/bigsur/bigsur.h>
21 #define BIGSUR_PCI_IO 0x4000
22 #define BIGSUR_PCI_MEM 0xfd000000
24 static struct resource sh7751_io_resource
= {
26 .start
= BIGSUR_PCI_IO
,
27 .end
= BIGSUR_PCI_IO
+ (64*1024) - 1,
28 .flags
= IORESOURCE_IO
,
31 static struct resource sh7751_mem_resource
= {
33 .start
= BIGSUR_PCI_MEM
,
34 .end
= BIGSUR_PCI_MEM
+ (64*1024*1024) - 1,
35 .flags
= IORESOURCE_MEM
,
38 extern struct pci_ops sh7751_pci_ops
;
40 struct pci_channel board_pci_channels
[] = {
41 { &sh4_pci_ops
, &sh7751_io_resource
, &sh7751_mem_resource
, 0, 0xff },
45 static struct sh4_pci_address_map sh7751_pci_map
= {
47 .base
= SH7751_CS3_BASE_ADDR
,
48 .size
= BIGSUR_LSR0_SIZE
,
52 .base
= SH7751_CS3_BASE_ADDR
,
53 .size
= BIGSUR_LSR1_SIZE
,
58 * Initialize the Big Sur PCI interface
59 * Setup hardware to be Central Funtion
60 * Copy the BSR regs to the PCI interface
61 * Setup PCI windows into local RAM
63 int __init
pcibios_init_platform(void)
65 return sh7751_pcic_init(&sh7751_pci_map
);
68 int __init
pcibios_map_platform_irq(struct pci_dev
*pdev
, u8 slot
, u8 pin
)
71 * The Big Sur can be used in a CPCI chassis, but the SH7751 PCI
72 * interface is on the wrong end of the board so that it can also
73 * support a V320 CPI interface chip... Therefor the IRQ mapping is
74 * somewhat use dependent... I'l assume a linear map for now, i.e.
75 * INTA=slot0,pin0... INTD=slot3,pin0...
77 int irq
= (slot
+ pin
-1) % 4 + BIGSUR_SH7751_PCI_IRQ_BASE
;
79 PCIDBG(2, "PCI: Mapping Big Sur IRQ for slot %d, pin %c to irq %d\n",
80 slot
, pin
-1+'A', irq
);