| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  |  * Low-Level PCI Support for the SH7751 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  |  *  Copyright (C) 2003 - 2009  Paul Mundt | 
					
						
							|  |  |  |  *  Copyright (C) 2001  Dustin McIntire | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  |  *  With cleanup by Paul van Gool <pvangool@mimotech.com>, 2003. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/errno.h>
 | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | #include "pci-sh4.h"
 | 
					
						
							|  |  |  | #include <asm/addrspace.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-22 06:21:10 +00:00
										 |  |  | #include <asm/sizes.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | static int __init __area_sdram_check(struct pci_channel *chan, | 
					
						
							|  |  |  | 				     unsigned int area) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	unsigned long word; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	word = __raw_readl(SH7751_BCR1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* check BCR for SDRAM in area */ | 
					
						
							| 
									
										
										
										
											2006-09-27 15:59:17 +09:00
										 |  |  | 	if (((word >> area) & 1) == 0) { | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 		printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%lx\n", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       area, word); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIBCR1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	word = __raw_readw(SH7751_BCR2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* check BCR2 for 32bit SDRAM interface*/ | 
					
						
							| 
									
										
										
										
											2006-09-27 15:59:17 +09:00
										 |  |  | 	if (((word >> (area << 1)) & 0x3) != 0x3) { | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 		printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%lx\n", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       area, word); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIBCR2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 20:01:50 +09:00
										 |  |  | static struct resource sh7751_pci_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name	= "SH7751_IO", | 
					
						
							| 
									
										
										
										
											2010-04-22 06:21:10 +00:00
										 |  |  | 		.start	= 0x1000, | 
					
						
							|  |  |  | 		.end	= SZ_4M - 1, | 
					
						
							| 
									
										
										
										
											2010-02-01 20:01:50 +09:00
										 |  |  | 		.flags	= IORESOURCE_IO | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.name	= "SH7751_mem", | 
					
						
							|  |  |  | 		.start	= SH7751_PCI_MEMORY_BASE, | 
					
						
							|  |  |  | 		.end	= SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pci_channel sh7751_pci_controller = { | 
					
						
							|  |  |  | 	.pci_ops	= &sh4_pci_ops, | 
					
						
							| 
									
										
										
										
											2010-02-01 20:01:50 +09:00
										 |  |  | 	.resources	= sh7751_pci_resources, | 
					
						
							|  |  |  | 	.nr_resources	= ARRAY_SIZE(sh7751_pci_resources), | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	.mem_offset	= 0x00000000, | 
					
						
							|  |  |  | 	.io_offset	= 0x00000000, | 
					
						
							| 
									
										
										
										
											2009-05-26 23:10:15 +09:00
										 |  |  | 	.io_map_base	= SH7751_PCI_IO_BASE, | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct sh4_pci_address_map sh7751_pci_map = { | 
					
						
							|  |  |  | 	.window0	= { | 
					
						
							|  |  |  | 		.base	= SH7751_CS3_BASE_ADDR, | 
					
						
							|  |  |  | 		.size	= 0x04000000, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init sh7751_pci_init(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	struct pci_channel *chan = &sh7751_pci_controller; | 
					
						
							|  |  |  | 	unsigned int id; | 
					
						
							|  |  |  | 	u32 word, reg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printk(KERN_NOTICE "PCI: Starting intialization.\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	chan->reg_base = 0xfe200000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* check for SH7751/SH7751R hardware */ | 
					
						
							|  |  |  | 	id = pci_read_reg(chan, SH7751_PCICONF0); | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Set the BCR's to enable PCI access */ | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	reg = __raw_readl(SH7751_BCR1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	reg |= 0x80000; | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writel(reg, SH7751_BCR1); | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Turn the clocks back on (not done in reset)*/ | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, 0, SH4_PCICLKR); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Clear Powerdown IRQ's (not done in reset) */ | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0; | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIPINT); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* set the command/status bits to:
 | 
					
						
							|  |  |  | 	 * Wait Cycle Control + Parity Enable + Bus Master + | 
					
						
							|  |  |  | 	 * Mem space enable | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-03-29 00:04:39 +09:00
										 |  |  | 	word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER | | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	       SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES; | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH7751_PCICONF1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* define this host as the host bridge */ | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	word = PCI_BASE_CLASS_BRIDGE << 24; | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH7751_PCICONF2); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-29 00:04:39 +09:00
										 |  |  | 	/* Set IO and Mem windows to local address
 | 
					
						
							|  |  |  | 	 * Make PCI and local address the same for easy 1 to 1 mapping | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	word = sh7751_pci_map.window0.size - 1; | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCILSR0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Set the values on window 0 PCI config registers */ | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	word = P2SEGADDR(sh7751_pci_map.window0.base); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCILAR0); | 
					
						
							|  |  |  | 	pci_write_reg(chan, word, SH7751_PCICONF5); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	/* Set the local 16MB PCI memory space window to
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * the lowest PCI mapped address | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2010-02-01 20:01:50 +09:00
										 |  |  | 	word = chan->resources[1].start & SH4_PCIMBR_MASK; | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word , SH4_PCIMBR); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	/* Make sure the MSB's of IO window are set to access PCI space
 | 
					
						
							|  |  |  | 	 * correctly */ | 
					
						
							| 
									
										
										
										
											2010-02-01 20:01:50 +09:00
										 |  |  | 	word = chan->resources[0].start & SH4_PCIIOBR_MASK; | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIIOBR); | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Set PCI WCRx, BCRx's, copy from BSC locations */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* check BCR for SDRAM in specified area */ | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | 	switch (sh7751_pci_map.window0.base) { | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	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; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-03-29 00:04:39 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!word) | 
					
						
							| 
									
										
										
										
											2009-03-11 15:46:14 +09:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* configure the wait control registers */ | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	word = __raw_readl(SH7751_WCR1); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIWCR1); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	word = __raw_readl(SH7751_WCR2); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIWCR2); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	word = __raw_readl(SH7751_WCR3); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIWCR3); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	word = __raw_readl(SH7751_MCR); | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCIMCR); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* NOTE: I'm ignoring the PCI error IRQs for now..
 | 
					
						
							|  |  |  | 	 * TODO: add support for the internal error interrupts and | 
					
						
							|  |  |  | 	 * DMA interrupts... | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_fixup_pcic(chan); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* SH7751 init done, set central function init complete */ | 
					
						
							|  |  |  | 	/* use round robin mode to stop a device starving/overruning */ | 
					
						
							| 
									
										
										
										
											2006-09-27 16:43:28 +09:00
										 |  |  | 	word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM; | 
					
						
							| 
									
										
										
										
											2009-03-11 15:41:51 +09:00
										 |  |  | 	pci_write_reg(chan, word, SH4_PCICR); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-01 13:11:25 +09:00
										 |  |  | 	return register_pci_controller(chan); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-20 21:11:07 +09:00
										 |  |  | arch_initcall(sh7751_pci_init); |