Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 2 | * Low-Level PCI Support for the SH7751 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 4 | * Copyright (C) 2003 - 2009 Paul Mundt |
| 5 | * Copyright (C) 2001 Dustin McIntire |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 7 | * With cleanup by Paul van Gool <pvangool@mimotech.com>, 2003. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/init.h> |
| 14 | #include <linux/pci.h> |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 15 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 17 | #include <linux/io.h> |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 18 | #include "pci-sh4.h" |
| 19 | #include <asm/addrspace.h> |
Magnus Damm | e3a4317 | 2010-04-22 06:21:10 +0000 | [diff] [blame] | 20 | #include <asm/sizes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 22 | static int __init __area_sdram_check(struct pci_channel *chan, |
| 23 | unsigned int area) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 25 | unsigned long word; |
| 26 | |
| 27 | word = __raw_readl(SH7751_BCR1); |
| 28 | /* check BCR for SDRAM in area */ |
| 29 | if (((word >> area) & 1) == 0) { |
| 30 | printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%lx\n", |
| 31 | area, word); |
| 32 | return 0; |
| 33 | } |
| 34 | pci_write_reg(chan, word, SH4_PCIBCR1); |
| 35 | |
| 36 | word = __raw_readw(SH7751_BCR2); |
| 37 | /* check BCR2 for 32bit SDRAM interface*/ |
| 38 | if (((word >> (area << 1)) & 0x3) != 0x3) { |
| 39 | printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%lx\n", |
| 40 | area, word); |
| 41 | return 0; |
| 42 | } |
| 43 | pci_write_reg(chan, word, SH4_PCIBCR2); |
| 44 | |
| 45 | return 1; |
| 46 | } |
| 47 | |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 48 | static struct resource sh7751_pci_resources[] = { |
| 49 | { |
| 50 | .name = "SH7751_IO", |
Magnus Damm | e3a4317 | 2010-04-22 06:21:10 +0000 | [diff] [blame] | 51 | .start = 0x1000, |
| 52 | .end = SZ_4M - 1, |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 53 | .flags = IORESOURCE_IO |
| 54 | }, { |
| 55 | .name = "SH7751_mem", |
| 56 | .start = SH7751_PCI_MEMORY_BASE, |
| 57 | .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1, |
| 58 | .flags = IORESOURCE_MEM |
| 59 | }, |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | static struct pci_channel sh7751_pci_controller = { |
| 63 | .pci_ops = &sh4_pci_ops, |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 64 | .resources = sh7751_pci_resources, |
| 65 | .nr_resources = ARRAY_SIZE(sh7751_pci_resources), |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 66 | .mem_offset = 0x00000000, |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 67 | .io_offset = 0x00000000, |
Paul Mundt | d076d2b | 2009-05-26 23:10:15 +0900 | [diff] [blame] | 68 | .io_map_base = SH7751_PCI_IO_BASE, |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | static struct sh4_pci_address_map sh7751_pci_map = { |
| 72 | .window0 = { |
| 73 | .base = SH7751_CS3_BASE_ADDR, |
| 74 | .size = 0x04000000, |
| 75 | }, |
| 76 | }; |
| 77 | |
| 78 | static int __init sh7751_pci_init(void) |
| 79 | { |
| 80 | struct pci_channel *chan = &sh7751_pci_controller; |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 81 | unsigned int id; |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 82 | u32 word, reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Matt Fleming | 3b554c3 | 2010-06-19 00:01:03 +0100 | [diff] [blame] | 84 | printk(KERN_NOTICE "PCI: Starting initialization.\n"); |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 85 | |
Magnus Damm | e4c6a36 | 2008-02-19 21:35:04 +0900 | [diff] [blame] | 86 | chan->reg_base = 0xfe200000; |
| 87 | |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 88 | /* check for SH7751/SH7751R hardware */ |
Magnus Damm | d0e3db4 | 2009-03-11 15:46:14 +0900 | [diff] [blame] | 89 | id = pci_read_reg(chan, SH7751_PCICONF0); |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 90 | if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) && |
| 91 | id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) { |
| 92 | pr_debug("PCI: This is not an SH7751(R) (%x)\n", id); |
| 93 | return -ENODEV; |
| 94 | } |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /* Set the BCR's to enable PCI access */ |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 97 | reg = __raw_readl(SH7751_BCR1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | reg |= 0x80000; |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 99 | __raw_writel(reg, SH7751_BCR1); |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* Turn the clocks back on (not done in reset)*/ |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 102 | pci_write_reg(chan, 0, SH4_PCICLKR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* Clear Powerdown IRQ's (not done in reset) */ |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 104 | word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0; |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 105 | pci_write_reg(chan, word, SH4_PCIPINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /* set the command/status bits to: |
| 108 | * Wait Cycle Control + Parity Enable + Bus Master + |
| 109 | * Mem space enable |
| 110 | */ |
Paul Mundt | cd6c7ea | 2007-03-29 00:04:39 +0900 | [diff] [blame] | 111 | word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES; |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 113 | pci_write_reg(chan, word, SH7751_PCICONF1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | /* define this host as the host bridge */ |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 116 | word = PCI_BASE_CLASS_BRIDGE << 24; |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 117 | pci_write_reg(chan, word, SH7751_PCICONF2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Paul Mundt | cd6c7ea | 2007-03-29 00:04:39 +0900 | [diff] [blame] | 119 | /* Set IO and Mem windows to local address |
| 120 | * Make PCI and local address the same for easy 1 to 1 mapping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | */ |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 122 | word = sh7751_pci_map.window0.size - 1; |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 123 | pci_write_reg(chan, word, SH4_PCILSR0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* Set the values on window 0 PCI config registers */ |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 125 | word = P2SEGADDR(sh7751_pci_map.window0.base); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 126 | pci_write_reg(chan, word, SH4_PCILAR0); |
| 127 | pci_write_reg(chan, word, SH7751_PCICONF5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 129 | /* Set the local 16MB PCI memory space window to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | * the lowest PCI mapped address |
| 131 | */ |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 132 | word = chan->resources[1].start & SH4_PCIMBR_MASK; |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 133 | pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 134 | pci_write_reg(chan, word , SH4_PCIMBR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 136 | /* Make sure the MSB's of IO window are set to access PCI space |
| 137 | * correctly */ |
Paul Mundt | b6c58b1 | 2010-02-01 20:01:50 +0900 | [diff] [blame] | 138 | word = chan->resources[0].start & SH4_PCIIOBR_MASK; |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 139 | pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 140 | pci_write_reg(chan, word, SH4_PCIIOBR); |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* Set PCI WCRx, BCRx's, copy from BSC locations */ |
| 143 | |
| 144 | /* check BCR for SDRAM in specified area */ |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 145 | switch (sh7751_pci_map.window0.base) { |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 146 | case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break; |
| 147 | case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break; |
| 148 | case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break; |
| 149 | case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break; |
| 150 | case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break; |
| 151 | case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break; |
| 152 | case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
Paul Mundt | cd6c7ea | 2007-03-29 00:04:39 +0900 | [diff] [blame] | 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (!word) |
Magnus Damm | d0e3db4 | 2009-03-11 15:46:14 +0900 | [diff] [blame] | 156 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | /* configure the wait control registers */ |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 159 | word = __raw_readl(SH7751_WCR1); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 160 | pci_write_reg(chan, word, SH4_PCIWCR1); |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 161 | word = __raw_readl(SH7751_WCR2); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 162 | pci_write_reg(chan, word, SH4_PCIWCR2); |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 163 | word = __raw_readl(SH7751_WCR3); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 164 | pci_write_reg(chan, word, SH4_PCIWCR3); |
Paul Mundt | 9d56dd3 | 2010-01-26 12:58:40 +0900 | [diff] [blame] | 165 | word = __raw_readl(SH7751_MCR); |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 166 | pci_write_reg(chan, word, SH4_PCIMCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | /* NOTE: I'm ignoring the PCI error IRQs for now.. |
| 169 | * TODO: add support for the internal error interrupts and |
| 170 | * DMA interrupts... |
| 171 | */ |
| 172 | |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 173 | pci_fixup_pcic(chan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* SH7751 init done, set central function init complete */ |
| 176 | /* use round robin mode to stop a device starving/overruning */ |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 177 | word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM; |
Magnus Damm | b8b47bf | 2009-03-11 15:41:51 +0900 | [diff] [blame] | 178 | pci_write_reg(chan, word, SH4_PCICR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Paul Mundt | bcf3935 | 2010-02-01 13:11:25 +0900 | [diff] [blame] | 180 | return register_pci_controller(chan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
Paul Mundt | 757e3c1 | 2009-04-20 21:11:07 +0900 | [diff] [blame] | 182 | arch_initcall(sh7751_pci_init); |