blob: 6f4fb38bafa220ba0f645eaebeb01428acb78672 [file] [log] [blame]
Paul Mundt5283ecb2006-09-27 15:59:17 +09001/*
2 * Author: Ian DaSilva (idasilva@mvista.com)
3 *
4 * Highly leveraged from pci-bigsur.c, written by Dustin McIntire.
5 *
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
8 *
9 * PCI initialization for the Renesas SH7780 Highlander R7780RP-1 board
10 */
Paul Mundt5283ecb2006-09-27 15:59:17 +090011#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/init.h>
14#include <linux/delay.h>
15#include <linux/pci.h>
Paul Mundt082c44d2006-10-19 16:16:18 +090016#include <asm/r7780rp.h>
Paul Mundt959f85f2006-09-27 16:43:28 +090017#include <asm/io.h>
18#include "pci-sh4.h"
Paul Mundt5283ecb2006-09-27 15:59:17 +090019
Paul Mundt32351a22007-03-12 14:38:59 +090020static char r7780rp_irq_tab[] __initdata = {
21 0, 1, 2, 3,
22};
23
24static char r7780mp_irq_tab[] __initdata = {
25 65, 66, 67, 68,
26};
27
28static char r7785rp_irq_tab[][4] __initdata = {
29 { 65, 66, 67, 68 }, /* INT ABCD */
30 { 66, 67, 68, 65 }, /* INT BCDA */
31 { 67, 68, 65, 66 }, /* INT CDAB */
32 { 68, 65, 66, 67 }, /* INT DABC */
33 { 64, 64, 64, 64 }, /* PCI Host */
34};
35
Paul Mundt959f85f2006-09-27 16:43:28 +090036int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
Paul Mundt5283ecb2006-09-27 15:59:17 +090037{
Paul Mundt32351a22007-03-12 14:38:59 +090038 if (mach_is_r7780rp())
39 return r7780rp_irq_tab[slot];
40 if (mach_is_r7780mp())
41 return r7780mp_irq_tab[slot];
42 if (mach_is_r7785rp())
43 return r7785rp_irq_tab[slot][pin];
44
45 printk(KERN_ERR "PCI: Bad IRQ mapping "
46 "request for slot %d, func %d\n", slot, pin-1);
47
48 return -1;
Paul Mundt5283ecb2006-09-27 15:59:17 +090049}
50
51static struct resource sh7780_io_resource = {
52 .name = "SH7780_IO",
53 .start = 0x2000,
54 .end = 0x2000 + SH7780_PCI_IO_SIZE - 1,
55 .flags = IORESOURCE_IO
56};
57
58static struct resource sh7780_mem_resource = {
59 .name = "SH7780_mem",
60 .start = SH7780_PCI_MEMORY_BASE,
61 .end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1,
62 .flags = IORESOURCE_MEM
63};
64
65extern struct pci_ops sh7780_pci_ops;
66
67struct pci_channel board_pci_channels[] = {
Paul Mundt959f85f2006-09-27 16:43:28 +090068 { &sh4_pci_ops, &sh7780_io_resource, &sh7780_mem_resource, 0, 0xff },
Paul Mundt5283ecb2006-09-27 15:59:17 +090069 { NULL, NULL, NULL, 0, 0 },
70};
71EXPORT_SYMBOL(board_pci_channels);
72
Paul Mundt959f85f2006-09-27 16:43:28 +090073static struct sh4_pci_address_map sh7780_pci_map = {
Paul Mundt5283ecb2006-09-27 15:59:17 +090074 .window0 = {
75 .base = SH7780_CS2_BASE_ADDR,
76 .size = 0x04000000,
77 },
78
79 .window1 = {
80 .base = SH7780_CS3_BASE_ADDR,
81 .size = 0x04000000,
82 },
83
Paul Mundt959f85f2006-09-27 16:43:28 +090084 .flags = SH4_PCIC_NO_RESET,
Paul Mundt5283ecb2006-09-27 15:59:17 +090085};
86
87int __init pcibios_init_platform(void)
88{
89 return sh7780_pcic_init(&sh7780_pci_map);
90}