pci-sh7780.c 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *	Low-Level PCI Support for the SH7780
 *
 *  Dustin McIntire (dustin@sensoria.com)
 *	Derived from arch/i386/kernel/pci-*.c which bore the message:
 *	(c) 1999--2000 Martin Mares <mj@ucw.cz>
 *
 *  Ported to the new API by Paul Mundt <lethal@linux-sh.org>
 *  With cleanup by Paul van Gool <pvangool@mimotech.com>
 *
 *  May be copied or modified under the terms of the GNU General Public
 *  License.  See linux/COPYING for more information.
 *
 */
#undef DEBUG

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/errno.h>
#include <linux/delay.h>
23
#include "pci-sh4.h"
24

25
static int __init sh7780_pci_init(struct pci_channel *chan)
26
{
27
	unsigned int id;
28 29
	const char *type = NULL;
	int ret;
30

31
	printk(KERN_NOTICE "PCI: Starting intialization.\n");
32

33
	chan->reg_base = 0xfe040000;
34
	chan->io_base = 0xfe200000;
35

36 37
	/* Enable CPU access to the PCIC registers. */
	__raw_writel(PCIECR_ENBL, PCIECR);
38

39 40 41 42
	id = __raw_readw(chan->reg_base + SH7780_PCIVID);
	if (id != SH7780_VENDOR_ID) {
		printk(KERN_ERR "PCI: Unknown vendor ID 0x%04x.\n", id);
		return -ENODEV;
43 44
	}

45 46 47 48 49 50 51 52 53 54
	id = __raw_readw(chan->reg_base + SH7780_PCIDID);
	type = (id == SH7763_DEVICE_ID)	? "SH7763" :
	       (id == SH7780_DEVICE_ID) ? "SH7780" :
	       (id == SH7781_DEVICE_ID) ? "SH7781" :
	       (id == SH7785_DEVICE_ID) ? "SH7785" :
					  NULL;
	if (unlikely(!type)) {
		printk(KERN_ERR "PCI: Found an unsupported Renesas host "
		       "controller, device id 0x%04x.\n", id);
		return -EINVAL;
55 56
	}

57 58 59 60
	printk(KERN_NOTICE "PCI: Found a Renesas %s host "
	       "controller, revision %d.\n", type,
	       __raw_readb(chan->reg_base + SH7780_PCIRID));

61
	if ((ret = sh4_pci_check_direct(chan)) != 0)
62 63
		return ret;

64 65 66 67 68
	/*
	 * Platform specific initialization (BSC registers, and memory space
	 * mapping) will be called via the platform defined function
	 * pcibios_init_platform().
	 */
69 70 71
	return pcibios_init_platform();
}

72 73
extern u8 pci_cache_line_size;

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
static struct resource sh7785_io_resource = {
	.name	= "SH7785_IO",
	.start	= SH7780_PCI_IO_BASE,
	.end	= SH7780_PCI_IO_BASE + SH7780_PCI_IO_SIZE - 1,
	.flags	= IORESOURCE_IO
};

static struct resource sh7785_mem_resource = {
	.name	= "SH7785_mem",
	.start	= SH7780_PCI_MEMORY_BASE,
	.end	= SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1,
	.flags	= IORESOURCE_MEM
};

struct pci_channel board_pci_channels[] = {
	{ sh7780_pci_init, &sh4_pci_ops, &sh7785_io_resource, &sh7785_mem_resource, 0, 0xff },
	{ NULL, NULL, NULL, 0, 0 },
};

93 94 95 96 97 98 99 100 101 102 103 104 105
static struct sh4_pci_address_map sh7780_pci_map = {
	.window0	= {
#if defined(CONFIG_32BIT)
		.base	= SH7780_32BIT_DDR_BASE_ADDR,
		.size	= 0x40000000,
#else
		.base	= SH7780_CS0_BASE_ADDR,
		.size	= 0x20000000,
#endif
	},
};

int __init pcibios_init_platform(void)
106
{
107
	struct pci_channel *chan = &board_pci_channels[0];
108 109
	u32 word;

110 111 112
	/*
	 * Set the class and sub-class codes.
	 */
113 114 115 116
	__raw_writeb(PCI_CLASS_BRIDGE_HOST >> 8,
		     chan->reg_base + SH7780_PCIBCC);
	__raw_writeb(PCI_CLASS_BRIDGE_HOST & 0xff,
		     chan->reg_base + SH7780_PCISUB);
117

118 119
	pci_cache_line_size = pci_read_reg(chan, SH7780_PCICLS) / 4;

120 121 122 123
	/* set the command/status bits to:
	 * Wait Cycle Control + Parity Enable + Bus Master +
	 * Mem space enable
	 */
M
Magnus Damm 已提交
124
	pci_write_reg(chan, 0x00000046, SH7780_PCICMD);
125 126 127 128

	/* Set IO and Mem windows to local address
	 * Make PCI and local address the same for easy 1 to 1 mapping
	 */
129
	pci_write_reg(chan, sh7780_pci_map.window0.size - 0xfffff, SH4_PCILSR0);
130
	/* Set the values on window 0 PCI config registers */
131 132
	pci_write_reg(chan, sh7780_pci_map.window0.base, SH4_PCILAR0);
	pci_write_reg(chan, sh7780_pci_map.window0.base, SH7780_PCIMBAR0);
133

134
	/* Apply any last-minute PCIC fixups */
M
Magnus Damm 已提交
135
	pci_fixup_pcic(chan);
136 137 138

	/* SH7780 init done, set central function init complete */
	/* use round robin mode to stop a device starving/overruning */
139
	word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO;
M
Magnus Damm 已提交
140
	pci_write_reg(chan, word, SH4_PCICR);
141

142 143
	__set_io_port_base(SH7780_PCI_IO_BASE);

144
	return 0;
145
}