pci-sh7751.c 6.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *	Low-Level PCI Support for the SH7751
 *
 *  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/init.h>
#include <linux/pci.h>
19
#include <linux/types.h>
L
Linus Torvalds 已提交
20 21
#include <linux/errno.h>
#include <linux/delay.h>
22 23
#include "pci-sh4.h"
#include <asm/addrspace.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29
#include <asm/io.h>

/*
 * Initialization. Try all known PCI access methods. Note that we support
 * using both PCI BIOS and direct access: in such cases, we use I/O ports
 * to access config space.
P
Paul Mundt 已提交
30
 *
L
Linus Torvalds 已提交
31
 * Note that the platform specific initialization (BSC registers, and memory
32 33
 * space mapping) will be called via the platform defined function
 * pcibios_init_platform().
L
Linus Torvalds 已提交
34
 */
35
int __init sh7751_pci_init(struct pci_channel *chan)
L
Linus Torvalds 已提交
36
{
37
	unsigned int id;
L
Linus Torvalds 已提交
38 39 40
	int ret;

	pr_debug("PCI: Starting intialization.\n");
41

42 43
	chan->reg_base = 0xfe200000;

44
	/* check for SH7751/SH7751R hardware */
45
	id = pci_read_reg(chan, SH7751_PCICONF0);
46 47 48 49 50 51
	if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
	    id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
		pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
		return -ENODEV;
	}

52
	if ((ret = sh4_pci_check_direct(chan)) != 0)
L
Linus Torvalds 已提交
53 54 55 56 57
		return ret;

	return pcibios_init_platform();
}

M
Magnus Damm 已提交
58 59
static int __init __area_sdram_check(struct pci_channel *chan,
				     unsigned int area)
L
Linus Torvalds 已提交
60 61 62
{
	u32 word;

63
	word = ctrl_inl(SH7751_BCR1);
L
Linus Torvalds 已提交
64
	/* check BCR for SDRAM in area */
65
	if (((word >> area) & 1) == 0) {
L
Linus Torvalds 已提交
66 67 68 69
		printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n",
		       area, word);
		return 0;
	}
M
Magnus Damm 已提交
70
	pci_write_reg(chan, word, SH4_PCIBCR1);
L
Linus Torvalds 已提交
71

72
	word = (u16)ctrl_inw(SH7751_BCR2);
L
Linus Torvalds 已提交
73
	/* check BCR2 for 32bit SDRAM interface*/
74
	if (((word >> (area << 1)) & 0x3) != 0x3) {
L
Linus Torvalds 已提交
75 76 77 78
		printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n",
		       area, word);
		return 0;
	}
M
Magnus Damm 已提交
79
	pci_write_reg(chan, word, SH4_PCIBCR2);
L
Linus Torvalds 已提交
80 81 82 83

	return 1;
}

M
Magnus Damm 已提交
84 85
int __init sh7751_pcic_init(struct pci_channel *chan,
			    struct sh4_pci_address_map *map)
L
Linus Torvalds 已提交
86 87 88 89 90
{
	u32 reg;
	u32 word;

	/* Set the BCR's to enable PCI access */
91
	reg = ctrl_inl(SH7751_BCR1);
L
Linus Torvalds 已提交
92
	reg |= 0x80000;
93
	ctrl_outl(reg, SH7751_BCR1);
94

L
Linus Torvalds 已提交
95
	/* Turn the clocks back on (not done in reset)*/
M
Magnus Damm 已提交
96
	pci_write_reg(chan, 0, SH4_PCICLKR);
L
Linus Torvalds 已提交
97
	/* Clear Powerdown IRQ's (not done in reset) */
98
	word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
M
Magnus Damm 已提交
99
	pci_write_reg(chan, word, SH4_PCIPINT);
L
Linus Torvalds 已提交
100 101 102 103 104 105

	/*
	 * This code is unused for some boards as it is done in the
	 * bootloader and doing it here means the MAC addresses loaded
	 * by the bootloader get lost.
	 */
106
	if (!(map->flags & SH4_PCIC_NO_RESET)) {
L
Linus Torvalds 已提交
107
		/* toggle PCI reset pin */
108
		word = SH4_PCICR_PREFIX | SH4_PCICR_PRST;
M
Magnus Damm 已提交
109
		pci_write_reg(chan, word, SH4_PCICR);
L
Linus Torvalds 已提交
110 111
		/* Wait for a long time... not 1 sec. but long enough */
		mdelay(100);
112
		word = SH4_PCICR_PREFIX;
M
Magnus Damm 已提交
113
		pci_write_reg(chan, word, SH4_PCICR);
L
Linus Torvalds 已提交
114
	}
115

L
Linus Torvalds 已提交
116 117 118 119
	/* set the command/status bits to:
	 * Wait Cycle Control + Parity Enable + Bus Master +
	 * Mem space enable
	 */
P
Paul Mundt 已提交
120
	word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
L
Linus Torvalds 已提交
121
	       SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
M
Magnus Damm 已提交
122
	pci_write_reg(chan, word, SH7751_PCICONF1);
L
Linus Torvalds 已提交
123 124

	/* define this host as the host bridge */
125
	word = PCI_BASE_CLASS_BRIDGE << 24;
M
Magnus Damm 已提交
126
	pci_write_reg(chan, word, SH7751_PCICONF2);
L
Linus Torvalds 已提交
127

P
Paul Mundt 已提交
128 129
	/* Set IO and Mem windows to local address
	 * Make PCI and local address the same for easy 1 to 1 mapping
L
Linus Torvalds 已提交
130
	 * Window0 = map->window0.size @ non-cached area base = SDRAM
P
Paul Mundt 已提交
131
	 * Window1 = map->window1.size @ cached area base = SDRAM
L
Linus Torvalds 已提交
132 133
	 */
	word = map->window0.size - 1;
M
Magnus Damm 已提交
134
	pci_write_reg(chan, word, SH4_PCILSR0);
L
Linus Torvalds 已提交
135
	word = map->window1.size - 1;
M
Magnus Damm 已提交
136
	pci_write_reg(chan, word, SH4_PCILSR1);
L
Linus Torvalds 已提交
137 138
	/* Set the values on window 0 PCI config registers */
	word = P2SEGADDR(map->window0.base);
M
Magnus Damm 已提交
139 140
	pci_write_reg(chan, word, SH4_PCILAR0);
	pci_write_reg(chan, word, SH7751_PCICONF5);
L
Linus Torvalds 已提交
141 142
	/* Set the values on window 1 PCI config registers */
	word =  PHYSADDR(map->window1.base);
M
Magnus Damm 已提交
143 144
	pci_write_reg(chan, word, SH4_PCILAR1);
	pci_write_reg(chan, word, SH7751_PCICONF6);
L
Linus Torvalds 已提交
145

146
	/* Set the local 16MB PCI memory space window to
L
Linus Torvalds 已提交
147 148
	 * the lowest PCI mapped address
	 */
M
Magnus Damm 已提交
149
	word = chan->mem_resource->start & SH4_PCIMBR_MASK;
150
	pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
M
Magnus Damm 已提交
151
	pci_write_reg(chan, word , SH4_PCIMBR);
L
Linus Torvalds 已提交
152

M
Magnus Damm 已提交
153 154
	/* Map IO space into PCI IO window:
	 * IO addresses will be translated to the PCI IO window base address
L
Linus Torvalds 已提交
155
	 */
156
	pr_debug("PCI: Mapping IO address 0x%x - 0x%x to base 0x%x\n",
M
Magnus Damm 已提交
157 158
		 chan->io_resource->start, chan->io_resource->end,
		 SH7751_PCI_IO_BASE + chan->io_resource->start);
L
Linus Torvalds 已提交
159

160 161
	/* Make sure the MSB's of IO window are set to access PCI space
	 * correctly */
M
Magnus Damm 已提交
162
	word = chan->io_resource->start & SH4_PCIIOBR_MASK;
163
	pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
M
Magnus Damm 已提交
164
	pci_write_reg(chan, word, SH4_PCIIOBR);
165

L
Linus Torvalds 已提交
166 167 168 169
	/* Set PCI WCRx, BCRx's, copy from BSC locations */

	/* check BCR for SDRAM in specified area */
	switch (map->window0.base) {
M
Magnus Damm 已提交
170 171 172 173 174 175 176
	case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;
	case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;
	case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;
	case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;
	case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;
	case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;
	case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;
L
Linus Torvalds 已提交
177
	}
P
Paul Mundt 已提交
178

L
Linus Torvalds 已提交
179
	if (!word)
180
		return -1;
L
Linus Torvalds 已提交
181 182

	/* configure the wait control registers */
183
	word = ctrl_inl(SH7751_WCR1);
M
Magnus Damm 已提交
184
	pci_write_reg(chan, word, SH4_PCIWCR1);
185
	word = ctrl_inl(SH7751_WCR2);
M
Magnus Damm 已提交
186
	pci_write_reg(chan, word, SH4_PCIWCR2);
187
	word = ctrl_inl(SH7751_WCR3);
M
Magnus Damm 已提交
188
	pci_write_reg(chan, word, SH4_PCIWCR3);
189
	word = ctrl_inl(SH7751_MCR);
M
Magnus Damm 已提交
190
	pci_write_reg(chan, word, SH4_PCIMCR);
L
Linus Torvalds 已提交
191 192 193 194 195 196

	/* NOTE: I'm ignoring the PCI error IRQs for now..
	 * TODO: add support for the internal error interrupts and
	 * DMA interrupts...
	 */

M
Magnus Damm 已提交
197
	pci_fixup_pcic(chan);
L
Linus Torvalds 已提交
198 199 200

	/* SH7751 init done, set central function init complete */
	/* use round robin mode to stop a device starving/overruning */
201
	word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
M
Magnus Damm 已提交
202
	pci_write_reg(chan, word, SH4_PCICR);
L
Linus Torvalds 已提交
203

204
	return 0;
L
Linus Torvalds 已提交
205
}