2 * Author: Ian DaSilva (idasilva@mvista.com)
4 * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
9 * PCI initialization for the Renesas SH7780 Highlander R7780RP-1 board
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/init.h>
14 #include <linux/delay.h>
15 #include <linux/pci.h>
16 #include <asm/r7780rp.h>
20 static char irq_tab
[] __initdata
= {
24 int __init
pcibios_map_platform_irq(struct pci_dev
*pdev
, u8 slot
, u8 pin
)
29 static struct resource sh7780_io_resource
= {
31 .start
= SH7780_PCI_IO_BASE
,
32 .end
= SH7780_PCI_IO_BASE
+ SH7780_PCI_IO_SIZE
- 1,
33 .flags
= IORESOURCE_IO
36 static struct resource sh7780_mem_resource
= {
38 .start
= SH7780_PCI_MEMORY_BASE
,
39 .end
= SH7780_PCI_MEMORY_BASE
+ SH7780_PCI_MEM_SIZE
- 1,
40 .flags
= IORESOURCE_MEM
43 extern struct pci_ops sh7780_pci_ops
;
45 struct pci_channel board_pci_channels
[] = {
46 { &sh4_pci_ops
, &sh7780_io_resource
, &sh7780_mem_resource
, 0, 0xff },
47 { NULL
, NULL
, NULL
, 0, 0 },
49 EXPORT_SYMBOL(board_pci_channels
);
51 static struct sh4_pci_address_map sh7780_pci_map
= {
53 .base
= SH7780_CS2_BASE_ADDR
,
58 .base
= SH7780_CS3_BASE_ADDR
,
62 .flags
= SH4_PCIC_NO_RESET
,
65 int __init
pcibios_init_platform(void)
67 return sh7780_pcic_init(&sh7780_pci_map
);