Path: blob/master/arch/sh/drivers/pci/pci-sh7751.c
10819 views
/*1* Low-Level PCI Support for the SH77512*3* Copyright (C) 2003 - 2009 Paul Mundt4* Copyright (C) 2001 Dustin McIntire5*6* With cleanup by Paul van Gool <[email protected]>, 2003.7*8* This file is subject to the terms and conditions of the GNU General Public9* License. See the file "COPYING" in the main directory of this archive10* for more details.11*/12#include <linux/init.h>13#include <linux/pci.h>14#include <linux/types.h>15#include <linux/errno.h>16#include <linux/io.h>17#include "pci-sh4.h"18#include <asm/addrspace.h>19#include <asm/sizes.h>2021static int __init __area_sdram_check(struct pci_channel *chan,22unsigned int area)23{24unsigned long word;2526word = __raw_readl(SH7751_BCR1);27/* check BCR for SDRAM in area */28if (((word >> area) & 1) == 0) {29printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%lx\n",30area, word);31return 0;32}33pci_write_reg(chan, word, SH4_PCIBCR1);3435word = __raw_readw(SH7751_BCR2);36/* check BCR2 for 32bit SDRAM interface*/37if (((word >> (area << 1)) & 0x3) != 0x3) {38printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%lx\n",39area, word);40return 0;41}42pci_write_reg(chan, word, SH4_PCIBCR2);4344return 1;45}4647static struct resource sh7751_pci_resources[] = {48{49.name = "SH7751_IO",50.start = 0x1000,51.end = SZ_4M - 1,52.flags = IORESOURCE_IO53}, {54.name = "SH7751_mem",55.start = SH7751_PCI_MEMORY_BASE,56.end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,57.flags = IORESOURCE_MEM58},59};6061static struct pci_channel sh7751_pci_controller = {62.pci_ops = &sh4_pci_ops,63.resources = sh7751_pci_resources,64.nr_resources = ARRAY_SIZE(sh7751_pci_resources),65.mem_offset = 0x00000000,66.io_offset = 0x00000000,67.io_map_base = SH7751_PCI_IO_BASE,68};6970static struct sh4_pci_address_map sh7751_pci_map = {71.window0 = {72.base = SH7751_CS3_BASE_ADDR,73.size = 0x04000000,74},75};7677static int __init sh7751_pci_init(void)78{79struct pci_channel *chan = &sh7751_pci_controller;80unsigned int id;81u32 word, reg;8283printk(KERN_NOTICE "PCI: Starting initialization.\n");8485chan->reg_base = 0xfe200000;8687/* check for SH7751/SH7751R hardware */88id = pci_read_reg(chan, SH7751_PCICONF0);89if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&90id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {91pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);92return -ENODEV;93}9495/* Set the BCR's to enable PCI access */96reg = __raw_readl(SH7751_BCR1);97reg |= 0x80000;98__raw_writel(reg, SH7751_BCR1);99100/* Turn the clocks back on (not done in reset)*/101pci_write_reg(chan, 0, SH4_PCICLKR);102/* Clear Powerdown IRQ's (not done in reset) */103word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;104pci_write_reg(chan, word, SH4_PCIPINT);105106/* set the command/status bits to:107* Wait Cycle Control + Parity Enable + Bus Master +108* Mem space enable109*/110word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |111SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;112pci_write_reg(chan, word, SH7751_PCICONF1);113114/* define this host as the host bridge */115word = PCI_BASE_CLASS_BRIDGE << 24;116pci_write_reg(chan, word, SH7751_PCICONF2);117118/* Set IO and Mem windows to local address119* Make PCI and local address the same for easy 1 to 1 mapping120*/121word = sh7751_pci_map.window0.size - 1;122pci_write_reg(chan, word, SH4_PCILSR0);123/* Set the values on window 0 PCI config registers */124word = P2SEGADDR(sh7751_pci_map.window0.base);125pci_write_reg(chan, word, SH4_PCILAR0);126pci_write_reg(chan, word, SH7751_PCICONF5);127128/* Set the local 16MB PCI memory space window to129* the lowest PCI mapped address130*/131word = chan->resources[1].start & SH4_PCIMBR_MASK;132pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);133pci_write_reg(chan, word , SH4_PCIMBR);134135/* Make sure the MSB's of IO window are set to access PCI space136* correctly */137word = chan->resources[0].start & SH4_PCIIOBR_MASK;138pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);139pci_write_reg(chan, word, SH4_PCIIOBR);140141/* Set PCI WCRx, BCRx's, copy from BSC locations */142143/* check BCR for SDRAM in specified area */144switch (sh7751_pci_map.window0.base) {145case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;146case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;147case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;148case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;149case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;150case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;151case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;152}153154if (!word)155return -1;156157/* configure the wait control registers */158word = __raw_readl(SH7751_WCR1);159pci_write_reg(chan, word, SH4_PCIWCR1);160word = __raw_readl(SH7751_WCR2);161pci_write_reg(chan, word, SH4_PCIWCR2);162word = __raw_readl(SH7751_WCR3);163pci_write_reg(chan, word, SH4_PCIWCR3);164word = __raw_readl(SH7751_MCR);165pci_write_reg(chan, word, SH4_PCIMCR);166167/* NOTE: I'm ignoring the PCI error IRQs for now..168* TODO: add support for the internal error interrupts and169* DMA interrupts...170*/171172pci_fixup_pcic(chan);173174/* SH7751 init done, set central function init complete */175/* use round robin mode to stop a device starving/overruning */176word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;177pci_write_reg(chan, word, SH4_PCICR);178179return register_pci_controller(chan);180}181arch_initcall(sh7751_pci_init);182183184