blob: 83171d10141ac5223d1f991ef2fc3c5091695415 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/sh/kernel/pci-rts7751r2d.c
3 *
4 * Author: Ian DaSilva (idasilva@mvista.com)
5 *
6 * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
7 *
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
10 *
11 * PCI initialization for the Renesas SH7751R RTS7751R2D board
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/types.h>
16#include <linux/init.h>
17#include <linux/delay.h>
18#include <linux/pci.h>
19#include <linux/module.h>
20
21#include <asm/io.h>
22#include "pci-sh7751.h"
23#include <asm/rts7751r2d/rts7751r2d.h>
24
25int __init pcibios_map_platform_irq(u8 slot, u8 pin)
26{
27 switch (slot) {
28 case 0: return IRQ_PCISLOT1; /* PCI Extend slot #1 */
29 case 1: return IRQ_PCISLOT2; /* PCI Extend slot #2 */
30 case 2: return IRQ_PCMCIA; /* PCI Cardbus Bridge */
31 case 3: return IRQ_PCIETH; /* Realtek Ethernet controller */
32 default:
33 printk("PCI: Bad IRQ mapping request for slot %d\n", slot);
34 return -1;
35 }
36}
37
38static struct resource sh7751_io_resource = {
39 .name = "SH7751_IO",
40 .start = 0x4000,
41 .end = 0x4000 + SH7751_PCI_IO_SIZE - 1,
42 .flags = IORESOURCE_IO
43};
44
45static struct resource sh7751_mem_resource = {
46 .name = "SH7751_mem",
47 .start = SH7751_PCI_MEMORY_BASE,
48 .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,
49 .flags = IORESOURCE_MEM
50};
51
52extern struct pci_ops sh7751_pci_ops;
53
54struct pci_channel board_pci_channels[] = {
55 { &sh7751_pci_ops, &sh7751_io_resource, &sh7751_mem_resource, 0, 0xff },
56 { NULL, NULL, NULL, 0, 0 },
57};
58EXPORT_SYMBOL(board_pci_channels);
59
60static struct sh7751_pci_address_map sh7751_pci_map = {
61 .window0 = {
62 .base = SH7751_CS3_BASE_ADDR,
63 .size = 0x04000000,
64 },
65
66 .window1 = {
67 .base = 0x00000000, /* Unused */
68 .size = 0x00000000, /* Unused */
69 },
70
71 .flags = SH7751_PCIC_NO_RESET,
72};
73
74int __init pcibios_init_platform(void)
75{
76 return sh7751_pcic_init(&sh7751_pci_map);
77}
78