blob: 48fe4032ebea7b9cfeaef46864f5dc32f580f635 [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
Paul Mundt959f85f2006-09-27 16:43:28 +090028int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
Paul Mundt5283ecb2006-09-27 15:59:17 +090029{
Paul Mundt32351a22007-03-12 14:38:59 +090030 if (mach_is_r7780rp())
31 return r7780rp_irq_tab[slot];
Ryusuke Sakato39374aa2007-05-07 10:48:56 +090032 if (mach_is_r7780mp() || mach_is_r7785rp())
Paul Mundt32351a22007-03-12 14:38:59 +090033 return r7780mp_irq_tab[slot];
Paul Mundt32351a22007-03-12 14:38:59 +090034
35 printk(KERN_ERR "PCI: Bad IRQ mapping "
36 "request for slot %d, func %d\n", slot, pin-1);
37
38 return -1;
Paul Mundt5283ecb2006-09-27 15:59:17 +090039}
40
41static struct resource sh7780_io_resource = {
42 .name = "SH7780_IO",
Nobuhiro Iwamatsub0d98dc2007-11-30 12:36:13 +090043 .start = SH7780_PCI_IO_BASE,
44 .end = SH7780_PCI_IO_BASE + SH7780_PCI_IO_SIZE - 1,
Paul Mundt5283ecb2006-09-27 15:59:17 +090045 .flags = IORESOURCE_IO
46};
47
48static struct resource sh7780_mem_resource = {
49 .name = "SH7780_mem",
50 .start = SH7780_PCI_MEMORY_BASE,
51 .end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1,
52 .flags = IORESOURCE_MEM
53};
54
55extern struct pci_ops sh7780_pci_ops;
56
57struct pci_channel board_pci_channels[] = {
Paul Mundt959f85f2006-09-27 16:43:28 +090058 { &sh4_pci_ops, &sh7780_io_resource, &sh7780_mem_resource, 0, 0xff },
Paul Mundt5283ecb2006-09-27 15:59:17 +090059 { NULL, NULL, NULL, 0, 0 },
60};
61EXPORT_SYMBOL(board_pci_channels);
62
Paul Mundt959f85f2006-09-27 16:43:28 +090063static struct sh4_pci_address_map sh7780_pci_map = {
Paul Mundt5283ecb2006-09-27 15:59:17 +090064 .window0 = {
65 .base = SH7780_CS2_BASE_ADDR,
66 .size = 0x04000000,
67 },
68
69 .window1 = {
70 .base = SH7780_CS3_BASE_ADDR,
71 .size = 0x04000000,
72 },
73
Paul Mundt959f85f2006-09-27 16:43:28 +090074 .flags = SH4_PCIC_NO_RESET,
Paul Mundt5283ecb2006-09-27 15:59:17 +090075};
76
77int __init pcibios_init_platform(void)
78{
79 return sh7780_pcic_init(&sh7780_pci_map);
80}