blob: c4fa0bb139761b0474ba455e64eaa4b54642902b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundt757e3c12009-04-20 21:11:07 +09002 * Low-Level PCI Support for the SH7751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Paul Mundt757e3c12009-04-20 21:11:07 +09004 * Copyright (C) 2003 - 2009 Paul Mundt
5 * Copyright (C) 2001 Dustin McIntire
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Paul Mundt757e3c12009-04-20 21:11:07 +09007 * With cleanup by Paul van Gool <pvangool@mimotech.com>, 2003.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Paul Mundt757e3c12009-04-20 21:11:07 +09009 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/pci.h>
Paul Mundt959f85f2006-09-27 16:43:28 +090015#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Paul Mundt757e3c12009-04-20 21:11:07 +090017#include <linux/io.h>
Paul Mundt959f85f2006-09-27 16:43:28 +090018#include "pci-sh4.h"
19#include <asm/addrspace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Paul Mundt757e3c12009-04-20 21:11:07 +090021static int __init __area_sdram_check(struct pci_channel *chan,
22 unsigned int area)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Paul Mundt757e3c12009-04-20 21:11:07 +090024 unsigned long word;
25
26 word = __raw_readl(SH7751_BCR1);
27 /* check BCR for SDRAM in area */
28 if (((word >> area) & 1) == 0) {
29 printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%lx\n",
30 area, word);
31 return 0;
32 }
33 pci_write_reg(chan, word, SH4_PCIBCR1);
34
35 word = __raw_readw(SH7751_BCR2);
36 /* check BCR2 for 32bit SDRAM interface*/
37 if (((word >> (area << 1)) & 0x3) != 0x3) {
38 printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%lx\n",
39 area, word);
40 return 0;
41 }
42 pci_write_reg(chan, word, SH4_PCIBCR2);
43
44 return 1;
45}
46
47static struct resource sh7751_io_resource = {
48 .name = "SH7751_IO",
49 .start = SH7751_PCI_IO_BASE,
50 .end = SH7751_PCI_IO_BASE + SH7751_PCI_IO_SIZE - 1,
51 .flags = IORESOURCE_IO
52};
53
54static struct resource sh7751_mem_resource = {
55 .name = "SH7785_mem",
56 .start = SH7751_PCI_MEMORY_BASE,
57 .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,
58 .flags = IORESOURCE_MEM
59};
60
61static struct pci_channel sh7751_pci_controller = {
62 .pci_ops = &sh4_pci_ops,
63 .mem_resource = &sh7751_mem_resource,
64 .mem_offset = 0x00000000,
65 .io_resource = &sh7751_io_resource,
66 .io_offset = 0x00000000,
67};
68
69static struct sh4_pci_address_map sh7751_pci_map = {
70 .window0 = {
71 .base = SH7751_CS3_BASE_ADDR,
72 .size = 0x04000000,
73 },
74};
75
76static int __init sh7751_pci_init(void)
77{
78 struct pci_channel *chan = &sh7751_pci_controller;
Paul Mundt959f85f2006-09-27 16:43:28 +090079 unsigned int id;
Paul Mundt757e3c12009-04-20 21:11:07 +090080 u32 word, reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int ret;
82
Paul Mundt757e3c12009-04-20 21:11:07 +090083 printk(KERN_NOTICE "PCI: Starting intialization.\n");
Paul Mundt959f85f2006-09-27 16:43:28 +090084
Magnus Damme4c6a362008-02-19 21:35:04 +090085 chan->reg_base = 0xfe200000;
86
Paul Mundt959f85f2006-09-27 16:43:28 +090087 /* check for SH7751/SH7751R hardware */
Magnus Dammd0e3db42009-03-11 15:46:14 +090088 id = pci_read_reg(chan, SH7751_PCICONF0);
Paul Mundt959f85f2006-09-27 16:43:28 +090089 if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
90 id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
91 pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
92 return -ENODEV;
93 }
94
Magnus Dammd0e3db42009-03-11 15:46:14 +090095 if ((ret = sh4_pci_check_direct(chan)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return ret;
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* Set the BCR's to enable PCI access */
Magnus Damme036eaa2008-02-14 13:52:43 +090099 reg = ctrl_inl(SH7751_BCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 reg |= 0x80000;
Magnus Damme036eaa2008-02-14 13:52:43 +0900101 ctrl_outl(reg, SH7751_BCR1);
Paul Mundt959f85f2006-09-27 16:43:28 +0900102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* Turn the clocks back on (not done in reset)*/
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900104 pci_write_reg(chan, 0, SH4_PCICLKR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* Clear Powerdown IRQ's (not done in reset) */
Paul Mundt959f85f2006-09-27 16:43:28 +0900106 word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900107 pci_write_reg(chan, word, SH4_PCIPINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* set the command/status bits to:
110 * Wait Cycle Control + Parity Enable + Bus Master +
111 * Mem space enable
112 */
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900113 word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900115 pci_write_reg(chan, word, SH7751_PCICONF1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* define this host as the host bridge */
Paul Mundt959f85f2006-09-27 16:43:28 +0900118 word = PCI_BASE_CLASS_BRIDGE << 24;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900119 pci_write_reg(chan, word, SH7751_PCICONF2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900121 /* Set IO and Mem windows to local address
122 * Make PCI and local address the same for easy 1 to 1 mapping
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
Paul Mundt757e3c12009-04-20 21:11:07 +0900124 word = sh7751_pci_map.window0.size - 1;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900125 pci_write_reg(chan, word, SH4_PCILSR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Set the values on window 0 PCI config registers */
Paul Mundt757e3c12009-04-20 21:11:07 +0900127 word = P2SEGADDR(sh7751_pci_map.window0.base);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900128 pci_write_reg(chan, word, SH4_PCILAR0);
129 pci_write_reg(chan, word, SH7751_PCICONF5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Paul Mundt959f85f2006-09-27 16:43:28 +0900131 /* Set the local 16MB PCI memory space window to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * the lowest PCI mapped address
133 */
Magnus Damm710fa3c2009-03-11 15:47:23 +0900134 word = chan->mem_resource->start & SH4_PCIMBR_MASK;
Paul Mundt959f85f2006-09-27 16:43:28 +0900135 pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900136 pci_write_reg(chan, word , SH4_PCIMBR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Paul Mundt959f85f2006-09-27 16:43:28 +0900138 /* Make sure the MSB's of IO window are set to access PCI space
139 * correctly */
Magnus Damm710fa3c2009-03-11 15:47:23 +0900140 word = chan->io_resource->start & SH4_PCIIOBR_MASK;
Paul Mundt959f85f2006-09-27 16:43:28 +0900141 pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900142 pci_write_reg(chan, word, SH4_PCIIOBR);
Paul Mundt959f85f2006-09-27 16:43:28 +0900143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* Set PCI WCRx, BCRx's, copy from BSC locations */
145
146 /* check BCR for SDRAM in specified area */
Paul Mundt757e3c12009-04-20 21:11:07 +0900147 switch (sh7751_pci_map.window0.base) {
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900148 case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;
149 case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;
150 case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;
151 case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;
152 case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;
153 case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;
154 case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
Paul Mundtcd6c7ea2007-03-29 00:04:39 +0900156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!word)
Magnus Dammd0e3db42009-03-11 15:46:14 +0900158 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* configure the wait control registers */
Magnus Damme036eaa2008-02-14 13:52:43 +0900161 word = ctrl_inl(SH7751_WCR1);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900162 pci_write_reg(chan, word, SH4_PCIWCR1);
Magnus Damme036eaa2008-02-14 13:52:43 +0900163 word = ctrl_inl(SH7751_WCR2);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900164 pci_write_reg(chan, word, SH4_PCIWCR2);
Magnus Damme036eaa2008-02-14 13:52:43 +0900165 word = ctrl_inl(SH7751_WCR3);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900166 pci_write_reg(chan, word, SH4_PCIWCR3);
Magnus Damme036eaa2008-02-14 13:52:43 +0900167 word = ctrl_inl(SH7751_MCR);
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900168 pci_write_reg(chan, word, SH4_PCIMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* NOTE: I'm ignoring the PCI error IRQs for now..
171 * TODO: add support for the internal error interrupts and
172 * DMA interrupts...
173 */
174
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900175 pci_fixup_pcic(chan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* SH7751 init done, set central function init complete */
178 /* use round robin mode to stop a device starving/overruning */
Paul Mundt959f85f2006-09-27 16:43:28 +0900179 word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
Magnus Dammb8b47bf2009-03-11 15:41:51 +0900180 pci_write_reg(chan, word, SH4_PCICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Paul Mundt757e3c12009-04-20 21:11:07 +0900182 __set_io_port_base(SH7751_PCI_IO_BASE);
183
184 register_pci_controller(chan);
185
Magnus Dammd0e3db42009-03-11 15:46:14 +0900186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
Paul Mundt757e3c12009-04-20 21:11:07 +0900188arch_initcall(sh7751_pci_init);