blob: af8874436d2f94acf9cfea634c5e690d158a07ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Low-Level PCI Support for the SH7751
3 *
4 * Dustin McIntire (dustin@sensoria.com)
5 * Derived from arch/i386/kernel/pci-*.c which bore the message:
6 * (c) 1999--2000 Martin Mares <mj@ucw.cz>
7 *
8 * Ported to the new API by Paul Mundt <lethal@linux-sh.org>
9 * With cleanup by Paul van Gool <pvangool@mimotech.com>
10 *
11 * May be copied or modified under the terms of the GNU General Public
12 * License. See linux/COPYING for more information.
13 *
14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#undef DEBUG
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/pci.h>
Paul Mundt959f85f2006-09-27 16:43:28 +090019#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/delay.h>
Paul Mundt959f85f2006-09-27 16:43:28 +090022#include "pci-sh4.h"
23#include <asm/addrspace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * Initialization. Try all known PCI access methods. Note that we support
28 * using both PCI BIOS and direct access: in such cases, we use I/O ports
29 * to access config space.
Paul Mundtcd6c7ea2007-03-29 00:04:39 +090030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Note that the platform specific initialization (BSC registers, and memory
Paul Mundt959f85f2006-09-27 16:43:28 +090032 * space mapping) will be called via the platform defined function
33 * pcibios_init_platform().
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
Magnus Dammd0e3db42009-03-11 15:46:14 +090035int __init sh7751_pci_init(struct pci_channel *chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Paul Mundt959f85f2006-09-27 16:43:28 +090037 unsigned int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 int ret;
39
40 pr_debug("PCI: Starting intialization.\n");
Paul Mundt959f85f2006-09-27 16:43:28 +090041
Magnus Damme4c6a362008-02-19 21:35:04 +090042 chan->reg_base = 0xfe200000;
Magnus Dammef53fde2008-02-19 21:35:14 +090043 chan->io_base = 0xfe240000;
Magnus Damme4c6a362008-02-19 21:35:04 +090044
Paul Mundt959f85f2006-09-27 16:43:28 +090045 /* check for SH7751/SH7751R hardware */
Magnus Dammd0e3db42009-03-11 15:46:14 +090046 id = pci_read_reg(chan, SH7751_PCICONF0);
Paul Mundt959f85f2006-09-27 16:43:28 +090047 if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
48 id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
49 pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
50 return -ENODEV;
51 }
52
Magnus Dammd0e3db42009-03-11 15:46:14 +090053 if ((ret = sh4_pci_check_direct(chan)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return ret;
55
56 return pcibios_init_platform();
57}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Magnus Dammb8b47bf2009-03-11 15:41:51 +090059static int __init __area_sdram_check(struct pci_channel *chan,
60 unsigned int area)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 u32 word;
63
Magnus Damme036eaa2008-02-14 13:52:43 +090064 word = ctrl_inl(SH7751_BCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 /* check BCR for SDRAM in area */
Paul Mundt5283ecb2006-09-27 15:59:17 +090066 if (((word >> area) & 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n",
68 area, word);
69 return 0;
70 }
Magnus Dammb8b47bf2009-03-11 15:41:51 +090071 pci_write_reg(chan, word, SH4_PCIBCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Magnus Damme036eaa2008-02-14 13:52:43 +090073 word = (u16)ctrl_inw(SH7751_BCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* check BCR2 for 32bit SDRAM interface*/
Paul Mundt5283ecb2006-09-27 15:59:17 +090075 if (((word >> (area << 1)) & 0x3) != 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n",
77 area, word);
78 return 0;
79 }
Magnus Dammb8b47bf2009-03-11 15:41:51 +090080 pci_write_reg(chan, word, SH4_PCIBCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 return 1;
83}
84
Magnus Dammb8b47bf2009-03-11 15:41:51 +090085int __init sh7751_pcic_init(struct pci_channel *chan,
86 struct sh4_pci_address_map *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 u32 reg;
89 u32 word;
90
91 /* Set the BCR's to enable PCI access */
Magnus Damme036eaa2008-02-14 13:52:43 +090092 reg = ctrl_inl(SH7751_BCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 reg |= 0x80000;
Magnus Damme036eaa2008-02-14 13:52:43 +090094 ctrl_outl(reg, SH7751_BCR1);
Paul Mundt959f85f2006-09-27 16:43:28 +090095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* Turn the clocks back on (not done in reset)*/
Magnus Dammb8b47bf2009-03-11 15:41:51 +090097 pci_write_reg(chan, 0, SH4_PCICLKR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* Clear Powerdown IRQ's (not done in reset) */
Paul Mundt959f85f2006-09-27 16:43:28 +090099 word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900100 pci_write_reg(chan, word, SH4_PCIPINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* set the command/status bits to:
103 * Wait Cycle Control + Parity Enable + Bus Master +
104 * Mem space enable
105 */
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900106 word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900108 pci_write_reg(chan, word, SH7751_PCICONF1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /* define this host as the host bridge */
Paul Mundt959f85f2006-09-27 16:43:28 +0900111 word = PCI_BASE_CLASS_BRIDGE << 24;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900112 pci_write_reg(chan, word, SH7751_PCICONF2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900114 /* Set IO and Mem windows to local address
115 * Make PCI and local address the same for easy 1 to 1 mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * Window0 = map->window0.size @ non-cached area base = SDRAM
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900117 * Window1 = map->window1.size @ cached area base = SDRAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
119 word = map->window0.size - 1;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900120 pci_write_reg(chan, word, SH4_PCILSR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 word = map->window1.size - 1;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900122 pci_write_reg(chan, word, SH4_PCILSR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* Set the values on window 0 PCI config registers */
124 word = P2SEGADDR(map->window0.base);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900125 pci_write_reg(chan, word, SH4_PCILAR0);
126 pci_write_reg(chan, word, SH7751_PCICONF5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Set the values on window 1 PCI config registers */
128 word = PHYSADDR(map->window1.base);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900129 pci_write_reg(chan, word, SH4_PCILAR1);
130 pci_write_reg(chan, word, SH7751_PCICONF6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Paul Mundt959f85f2006-09-27 16:43:28 +0900132 /* Set the local 16MB PCI memory space window to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * the lowest PCI mapped address
134 */
Magnus Damm710fa3c2009-03-11 15:47:23 +0900135 word = chan->mem_resource->start & SH4_PCIMBR_MASK;
Paul Mundt959f85f2006-09-27 16:43:28 +0900136 pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900137 pci_write_reg(chan, word , SH4_PCIMBR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Magnus Damm710fa3c2009-03-11 15:47:23 +0900139 /* Map IO space into PCI IO window:
140 * IO addresses will be translated to the PCI IO window base address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
Magnus Dammef53fde2008-02-19 21:35:14 +0900142 pr_debug("PCI: Mapping IO address 0x%x - 0x%x to base 0x%lx\n",
Magnus Damm710fa3c2009-03-11 15:47:23 +0900143 chan->io_resource->start, chan->io_resource->end,
Magnus Dammef53fde2008-02-19 21:35:14 +0900144 chan->io_base + chan->io_resource->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Paul Mundt959f85f2006-09-27 16:43:28 +0900146 /* Make sure the MSB's of IO window are set to access PCI space
147 * correctly */
Magnus Damm710fa3c2009-03-11 15:47:23 +0900148 word = chan->io_resource->start & SH4_PCIIOBR_MASK;
Paul Mundt959f85f2006-09-27 16:43:28 +0900149 pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900150 pci_write_reg(chan, word, SH4_PCIIOBR);
Paul Mundt959f85f2006-09-27 16:43:28 +0900151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* Set PCI WCRx, BCRx's, copy from BSC locations */
153
154 /* check BCR for SDRAM in specified area */
155 switch (map->window0.base) {
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900156 case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;
157 case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;
158 case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;
159 case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;
160 case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;
161 case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;
162 case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (!word)
Magnus Dammd0e3db42009-03-11 15:46:14 +0900166 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* configure the wait control registers */
Magnus Damme036eaa2008-02-14 13:52:43 +0900169 word = ctrl_inl(SH7751_WCR1);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900170 pci_write_reg(chan, word, SH4_PCIWCR1);
Magnus Damme036eaa2008-02-14 13:52:43 +0900171 word = ctrl_inl(SH7751_WCR2);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900172 pci_write_reg(chan, word, SH4_PCIWCR2);
Magnus Damme036eaa2008-02-14 13:52:43 +0900173 word = ctrl_inl(SH7751_WCR3);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900174 pci_write_reg(chan, word, SH4_PCIWCR3);
Magnus Damme036eaa2008-02-14 13:52:43 +0900175 word = ctrl_inl(SH7751_MCR);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900176 pci_write_reg(chan, word, SH4_PCIMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* NOTE: I'm ignoring the PCI error IRQs for now..
179 * TODO: add support for the internal error interrupts and
180 * DMA interrupts...
181 */
182
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900183 pci_fixup_pcic(chan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* SH7751 init done, set central function init complete */
186 /* use round robin mode to stop a device starving/overruning */
Paul Mundt959f85f2006-09-27 16:43:28 +0900187 word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900188 pci_write_reg(chan, word, SH4_PCICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Magnus Dammd0e3db42009-03-11 15:46:14 +0900190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}