aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/drivers
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-29 08:19:04 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-01-29 08:19:04 -0500
commita45635dfb08a1fa2cf77bf1f2c4074961ce2e625 (patch)
tree9c8401158280d33137b6ffa3566743734da552c7 /arch/sh/drivers
parent9762528f37ddc7071509dddb10e7b4b3b957fd01 (diff)
sh: Reworked SH7780 PCI initialization.
This consolidates the PCI initialization code for all of the pci-sh7780 users, and sets up the memory window dynamically as opposed to using hardcoded window positions. A number of bugs were fixed at the same time, including the PIO handling and master abort timeout settings being incorrect. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers')
-rw-r--r--arch/sh/drivers/pci/fixups-r7780rp.c12
-rw-r--r--arch/sh/drivers/pci/fixups-sdk7780.c19
-rw-r--r--arch/sh/drivers/pci/pci-sh4.h13
-rw-r--r--arch/sh/drivers/pci/pci-sh7780.c149
-rw-r--r--arch/sh/drivers/pci/pci-sh7780.h54
5 files changed, 102 insertions, 145 deletions
diff --git a/arch/sh/drivers/pci/fixups-r7780rp.c b/arch/sh/drivers/pci/fixups-r7780rp.c
index 15ca65cb667e..08b2d8658a00 100644
--- a/arch/sh/drivers/pci/fixups-r7780rp.c
+++ b/arch/sh/drivers/pci/fixups-r7780rp.c
@@ -22,15 +22,3 @@ int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
22{ 22{
23 return irq_tab[slot]; 23 return irq_tab[slot];
24} 24}
25
26int pci_fixup_pcic(struct pci_channel *chan)
27{
28 pci_write_reg(chan, 0x000043ff, SH4_PCIINTM);
29 pci_write_reg(chan, 0x00000000, SH7780_PCIIBAR);
30 pci_write_reg(chan, 0x08000000, SH7780_PCICSCR0);
31 pci_write_reg(chan, 0x0000001b, SH7780_PCICSAR0);
32 pci_write_reg(chan, 0xfd000000, SH7780_PCICSCR1);
33 pci_write_reg(chan, 0x0000000f, SH7780_PCICSAR1);
34
35 return 0;
36}
diff --git a/arch/sh/drivers/pci/fixups-sdk7780.c b/arch/sh/drivers/pci/fixups-sdk7780.c
index 250b0edd7365..0930f988ac29 100644
--- a/arch/sh/drivers/pci/fixups-sdk7780.c
+++ b/arch/sh/drivers/pci/fixups-sdk7780.c
@@ -31,22 +31,3 @@ int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin)
31{ 31{
32 return sdk7780_irq_tab[pin-1][slot]; 32 return sdk7780_irq_tab[pin-1][slot];
33} 33}
34int pci_fixup_pcic(struct pci_channel *chan)
35{
36 /* Enable all interrupts, so we know what to fix */
37 pci_write_reg(chan, 0x0000C3FF, SH7780_PCIIMR);
38
39 /* Set up standard PCI config registers */
40 pci_write_reg(chan, 0x08000000, SH7780_PCIMBAR0); /* PCI */
41 pci_write_reg(chan, 0x08000000, SH4_PCILAR0); /* SHwy */
42 pci_write_reg(chan, 0x07F00001, SH4_PCILSR0); /* size 128M w/ MBAR */
43
44 pci_write_reg(chan, 0x00000000, SH7780_PCIMBAR1);
45 pci_write_reg(chan, 0x00000000, SH4_PCILAR1);
46 pci_write_reg(chan, 0x00000000, SH4_PCILSR1);
47
48 pci_write_reg(chan, 0xAB000801, SH7780_PCIIBAR);
49 pci_write_reg(chan, 0xA5000C01, SH4_PCICR);
50
51 return 0;
52}
diff --git a/arch/sh/drivers/pci/pci-sh4.h b/arch/sh/drivers/pci/pci-sh4.h
index 4744a7dede0c..43dddd827561 100644
--- a/arch/sh/drivers/pci/pci-sh4.h
+++ b/arch/sh/drivers/pci/pci-sh4.h
@@ -49,6 +49,17 @@
49 #define SH4_PCIINT_MWPD 0x00000002 /* Master Write PERR Detect */ 49 #define SH4_PCIINT_MWPD 0x00000002 /* Master Write PERR Detect */
50 #define SH4_PCIINT_MRPD 0x00000001 /* Master Read PERR Detect */ 50 #define SH4_PCIINT_MRPD 0x00000001 /* Master Read PERR Detect */
51#define SH4_PCIINTM 0x118 /* PCI Interrupt Mask */ 51#define SH4_PCIINTM 0x118 /* PCI Interrupt Mask */
52 #define SH4_PCIINTM_TTADIM BIT(14) /* Target-target abort interrupt */
53 #define SH4_PCIINTM_TMTOIM BIT(9) /* Target retry timeout */
54 #define SH4_PCIINTM_MDEIM BIT(8) /* Master function disable error */
55 #define SH4_PCIINTM_APEDIM BIT(7) /* Address parity error detection */
56 #define SH4_PCIINTM_SDIM BIT(6) /* SERR detection */
57 #define SH4_PCIINTM_DPEITWM BIT(5) /* Data parity error for target write */
58 #define SH4_PCIINTM_PEDITRM BIT(4) /* PERR detection for target read */
59 #define SH4_PCIINTM_TADIMM BIT(3) /* Target abort for master */
60 #define SH4_PCIINTM_MADIMM BIT(2) /* Master abort for master */
61 #define SH4_PCIINTM_MWPDIM BIT(1) /* Master write data parity error */
62 #define SH4_PCIINTM_MRDPEIM BIT(0) /* Master read data parity error */
52#define SH4_PCIALR 0x11C /* Error Address Register */ 63#define SH4_PCIALR 0x11C /* Error Address Register */
53#define SH4_PCICLR 0x120 /* Error Command/Data */ 64#define SH4_PCICLR 0x120 /* Error Command/Data */
54 #define SH4_PCICLR_MPIO 0x80000000 65 #define SH4_PCICLR_MPIO 0x80000000
@@ -61,7 +72,7 @@
61#define SH4_PCIAINT 0x130 /* Arbiter Interrupt Register */ 72#define SH4_PCIAINT 0x130 /* Arbiter Interrupt Register */
62 #define SH4_PCIAINT_MBKN 0x00002000 /* Master Broken Interrupt */ 73 #define SH4_PCIAINT_MBKN 0x00002000 /* Master Broken Interrupt */
63 #define SH4_PCIAINT_TBTO 0x00001000 /* Target Bus Time Out */ 74 #define SH4_PCIAINT_TBTO 0x00001000 /* Target Bus Time Out */
64 #define SH4_PCIAINT_MBTO 0x00001000 /* Master Bus Time Out */ 75 #define SH4_PCIAINT_MBTO 0x00000800 /* Master Bus Time Out */
65 #define SH4_PCIAINT_TABT 0x00000008 /* Target Abort */ 76 #define SH4_PCIAINT_TABT 0x00000008 /* Target Abort */
66 #define SH4_PCIAINT_MABT 0x00000004 /* Master Abort */ 77 #define SH4_PCIAINT_MABT 0x00000004 /* Master Abort */
67 #define SH4_PCIAINT_RDPE 0x00000002 /* Read Data Parity Error */ 78 #define SH4_PCIAINT_RDPE 0x00000002 /* Read Data Parity Error */
diff --git a/arch/sh/drivers/pci/pci-sh7780.c b/arch/sh/drivers/pci/pci-sh7780.c
index 323b92d565fe..019e1afcd0a3 100644
--- a/arch/sh/drivers/pci/pci-sh7780.c
+++ b/arch/sh/drivers/pci/pci-sh7780.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * Low-Level PCI Support for the SH7780 2 * Low-Level PCI Support for the SH7780
3 * 3 *
4 * Copyright (C) 2005 - 2009 Paul Mundt 4 * Copyright (C) 2005 - 2010 Paul Mundt
5 * 5 *
6 * This file is subject to the terms and conditions of the GNU General Public 6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive 7 * License. See the file "COPYING" in the main directory of this archive
@@ -14,11 +14,13 @@
14#include <linux/errno.h> 14#include <linux/errno.h>
15#include <linux/delay.h> 15#include <linux/delay.h>
16#include "pci-sh4.h" 16#include "pci-sh4.h"
17#include <asm/mmu.h>
18#include <asm/sizes.h>
17 19
18static struct resource sh7785_io_resource = { 20static struct resource sh7785_io_resource = {
19 .name = "SH7785_IO", 21 .name = "SH7785_IO",
20 .start = SH7780_PCI_IO_BASE, 22 .start = 0x1000,
21 .end = SH7780_PCI_IO_BASE + SH7780_PCI_IO_SIZE - 1, 23 .end = SH7780_PCI_IO_SIZE - 1,
22 .flags = IORESOURCE_IO 24 .flags = IORESOURCE_IO
23}; 25};
24 26
@@ -38,25 +40,14 @@ static struct pci_channel sh7780_pci_controller = {
38 .io_map_base = SH7780_PCI_IO_BASE, 40 .io_map_base = SH7780_PCI_IO_BASE,
39}; 41};
40 42
41static struct sh4_pci_address_map sh7780_pci_map = {
42 .window0 = {
43#if defined(CONFIG_32BIT)
44 .base = SH7780_32BIT_DDR_BASE_ADDR,
45 .size = 0x40000000,
46#else
47 .base = SH7780_CS0_BASE_ADDR,
48 .size = 0x20000000,
49#endif
50 },
51};
52
53static int __init sh7780_pci_init(void) 43static int __init sh7780_pci_init(void)
54{ 44{
55 struct pci_channel *chan = &sh7780_pci_controller; 45 struct pci_channel *chan = &sh7780_pci_controller;
46 phys_addr_t memphys;
47 size_t memsize;
56 unsigned int id; 48 unsigned int id;
57 const char *type = NULL; 49 const char *type;
58 int ret; 50 int ret;
59 u32 word;
60 51
61 printk(KERN_NOTICE "PCI: Starting intialization.\n"); 52 printk(KERN_NOTICE "PCI: Starting intialization.\n");
62 53
@@ -65,17 +56,24 @@ static int __init sh7780_pci_init(void)
65 /* Enable CPU access to the PCIC registers. */ 56 /* Enable CPU access to the PCIC registers. */
66 __raw_writel(PCIECR_ENBL, PCIECR); 57 __raw_writel(PCIECR_ENBL, PCIECR);
67 58
68 id = __raw_readw(chan->reg_base + SH7780_PCIVID); 59 /* Reset */
69 if (id != SH7780_VENDOR_ID) { 60 __raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_PRST,
61 chan->reg_base + SH4_PCICR);
62
63 /* Wait for it to come back up.. */
64 mdelay(100);
65
66 id = __raw_readw(chan->reg_base + PCI_VENDOR_ID);
67 if (id != PCI_VENDOR_ID_RENESAS) {
70 printk(KERN_ERR "PCI: Unknown vendor ID 0x%04x.\n", id); 68 printk(KERN_ERR "PCI: Unknown vendor ID 0x%04x.\n", id);
71 return -ENODEV; 69 return -ENODEV;
72 } 70 }
73 71
74 id = __raw_readw(chan->reg_base + SH7780_PCIDID); 72 id = __raw_readw(chan->reg_base + PCI_DEVICE_ID);
75 type = (id == SH7763_DEVICE_ID) ? "SH7763" : 73 type = (id == PCI_DEVICE_ID_RENESAS_SH7763) ? "SH7763" :
76 (id == SH7780_DEVICE_ID) ? "SH7780" : 74 (id == PCI_DEVICE_ID_RENESAS_SH7780) ? "SH7780" :
77 (id == SH7781_DEVICE_ID) ? "SH7781" : 75 (id == PCI_DEVICE_ID_RENESAS_SH7781) ? "SH7781" :
78 (id == SH7785_DEVICE_ID) ? "SH7785" : 76 (id == PCI_DEVICE_ID_RENESAS_SH7785) ? "SH7785" :
79 NULL; 77 NULL;
80 if (unlikely(!type)) { 78 if (unlikely(!type)) {
81 printk(KERN_ERR "PCI: Found an unsupported Renesas host " 79 printk(KERN_ERR "PCI: Found an unsupported Renesas host "
@@ -85,59 +83,78 @@ static int __init sh7780_pci_init(void)
85 83
86 printk(KERN_NOTICE "PCI: Found a Renesas %s host " 84 printk(KERN_NOTICE "PCI: Found a Renesas %s host "
87 "controller, revision %d.\n", type, 85 "controller, revision %d.\n", type,
88 __raw_readb(chan->reg_base + SH7780_PCIRID)); 86 __raw_readb(chan->reg_base + PCI_REVISION_ID));
89 87
90 if ((ret = sh4_pci_check_direct(chan)) != 0) 88 if ((ret = sh4_pci_check_direct(chan)) != 0)
91 return ret; 89 return ret;
92 90
93 /* 91 /*
94 * Set the class and sub-class codes. 92 * Now throw it in to register initialization mode and
93 * start the real work.
95 */ 94 */
96 __raw_writeb(PCI_CLASS_BRIDGE_HOST >> 8, 95 __raw_writel(SH4_PCICR_PREFIX, chan->reg_base + SH4_PCICR);
97 chan->reg_base + SH7780_PCIBCC); 96
98 __raw_writeb(PCI_CLASS_BRIDGE_HOST & 0xff, 97 memphys = __pa(memory_start);
99 chan->reg_base + SH7780_PCISUB); 98 memsize = memory_end - memory_start;
100 99
101 /* 100 /*
102 * Set IO and Mem windows to local address 101 * Set IO and Mem windows to local address
103 * Make PCI and local address the same for easy 1 to 1 mapping 102 * Make PCI and local address the same for easy 1 to 1 mapping
104 */ 103 */
105 pci_write_reg(chan, sh7780_pci_map.window0.size - 0xfffff, SH4_PCILSR0); 104 __raw_writel(0, chan->reg_base + PCI_BASE_ADDRESS_0);
106 /* Set the values on window 0 PCI config registers */ 105
107 pci_write_reg(chan, sh7780_pci_map.window0.base, SH4_PCILAR0); 106 __raw_writel(memphys, chan->reg_base + SH4_PCILAR0);
108 pci_write_reg(chan, sh7780_pci_map.window0.base, SH7780_PCIMBAR0); 107 __raw_writel((memsize - 1) << 9 | 1,
109 108 chan->reg_base + SH4_PCILSR0);
110 pci_write_reg(chan, 0x0000380f, SH4_PCIAINTM); 109
111 110 /* Clear out PCI arbiter IRQs */
112 /* Set up standard PCI config registers */ 111 __raw_writel(0, chan->reg_base + SH4_PCIAINT);
113 __raw_writew(0xFB00, chan->reg_base + SH7780_PCISTATUS); 112
114 __raw_writew(0x0047, chan->reg_base + SH7780_PCICMD); 113 /* Unmask all of the arbiter IRQs. */
115 __raw_writew(0x1912, chan->reg_base + SH7780_PCISVID); 114 __raw_writel(SH4_PCIAINT_MBKN | SH4_PCIAINT_TBTO | SH4_PCIAINT_MBTO | \
116 __raw_writew(0x0001, chan->reg_base + SH7780_PCISID); 115 SH4_PCIAINT_TABT | SH4_PCIAINT_MABT | SH4_PCIAINT_RDPE | \
117 116 SH4_PCIAINT_WDPE, chan->reg_base + SH4_PCIAINTM);
118 __raw_writeb(0x00, chan->reg_base + SH7780_PCIPIF); 117
119 118 /* Clear all error conditions */
120 /* Apply any last-minute PCIC fixups */ 119 __raw_writew(PCI_STATUS_DETECTED_PARITY | \
121 pci_fixup_pcic(chan); 120 PCI_STATUS_SIG_SYSTEM_ERROR | \
122 121 PCI_STATUS_REC_MASTER_ABORT | \
123 pci_write_reg(chan, 0xfd000000, SH7780_PCIMBR0); 122 PCI_STATUS_REC_TARGET_ABORT | \
124 pci_write_reg(chan, 0x00fc0000, SH7780_PCIMBMR0); 123 PCI_STATUS_SIG_TARGET_ABORT | \
125 124 PCI_STATUS_PARITY, chan->reg_base + PCI_STATUS);
126#ifdef CONFIG_32BIT 125
127 pci_write_reg(chan, 0xc0000000, SH7780_PCIMBR2); 126 __raw_writew(PCI_COMMAND_SERR | PCI_COMMAND_WAIT | \
128 pci_write_reg(chan, 0x20000000 - SH7780_PCI_IO_SIZE, SH7780_PCIMBMR2); 127 PCI_COMMAND_PARITY | PCI_COMMAND_MASTER | \
129#endif 128 PCI_COMMAND_MEMORY, chan->reg_base + PCI_COMMAND);
130 129
131 /* Set IOBR for windows containing area specified in pci.h */ 130 /* Unmask all of the PCI IRQs */
132 pci_write_reg(chan, chan->io_resource->start & ~(SH7780_PCI_IO_SIZE-1), 131 __raw_writel(SH4_PCIINTM_TTADIM | SH4_PCIINTM_TMTOIM | \
133 SH7780_PCIIOBR); 132 SH4_PCIINTM_MDEIM | SH4_PCIINTM_APEDIM | \
134 pci_write_reg(chan, ((SH7780_PCI_IO_SIZE-1) & (7<<18)), 133 SH4_PCIINTM_SDIM | SH4_PCIINTM_DPEITWM | \
135 SH7780_PCIIOBMR); 134 SH4_PCIINTM_PEDITRM | SH4_PCIINTM_TADIMM | \
136 135 SH4_PCIINTM_MADIMM | SH4_PCIINTM_MWPDIM | \
137 /* SH7780 init done, set central function init complete */ 136 SH4_PCIINTM_MRDPEIM, chan->reg_base + SH4_PCIINTM);
138 /* use round robin mode to stop a device starving/overruning */ 137
139 word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO; 138 /*
140 pci_write_reg(chan, word, SH4_PCICR); 139 * Disable the cache snoop controller for non-coherent DMA.
140 */
141 __raw_writel(0, chan->reg_base + SH7780_PCICSCR0);
142 __raw_writel(0, chan->reg_base + SH7780_PCICSAR0);
143 __raw_writel(0, chan->reg_base + SH7780_PCICSCR1);
144 __raw_writel(0, chan->reg_base + SH7780_PCICSAR1);
145
146 __raw_writel(0xfd000000, chan->reg_base + SH7780_PCIMBR0);
147 __raw_writel(0x00fc0000, chan->reg_base + SH7780_PCIMBMR0);
148
149 __raw_writel(0, chan->reg_base + SH7780_PCIIOBR);
150 __raw_writel(0, chan->reg_base + SH7780_PCIIOBMR);
151
152 /*
153 * Initialization mode complete, release the control register and
154 * enable round robin mode to stop device overruns/starvation.
155 */
156 __raw_writel(SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_FTO,
157 chan->reg_base + SH4_PCICR);
141 158
142 register_pci_controller(chan); 159 register_pci_controller(chan);
143 160
diff --git a/arch/sh/drivers/pci/pci-sh7780.h b/arch/sh/drivers/pci/pci-sh7780.h
index 4a52478c97cf..dee069c3865d 100644
--- a/arch/sh/drivers/pci/pci-sh7780.h
+++ b/arch/sh/drivers/pci/pci-sh7780.h
@@ -12,12 +12,11 @@
12#ifndef _PCI_SH7780_H_ 12#ifndef _PCI_SH7780_H_
13#define _PCI_SH7780_H_ 13#define _PCI_SH7780_H_
14 14
15/* Platform Specific Values */ 15#define PCI_VENDOR_ID_RENESAS 0x1912
16#define SH7780_VENDOR_ID 0x1912 16#define PCI_DEVICE_ID_RENESAS_SH7781 0x0001
17#define SH7781_DEVICE_ID 0x0001 17#define PCI_DEVICE_ID_RENESAS_SH7780 0x0002
18#define SH7780_DEVICE_ID 0x0002 18#define PCI_DEVICE_ID_RENESAS_SH7763 0x0004
19#define SH7763_DEVICE_ID 0x0004 19#define PCI_DEVICE_ID_RENESAS_SH7785 0x0007
20#define SH7785_DEVICE_ID 0x0007
21 20
22/* SH7780 Control Registers */ 21/* SH7780 Control Registers */
23#define PCIECR 0xFE000008 22#define PCIECR 0xFE000008
@@ -36,35 +35,6 @@
36#define SH7780_PCIREG_BASE 0xFE040000 /* PCI regs base address */ 35#define SH7780_PCIREG_BASE 0xFE040000 /* PCI regs base address */
37 36
38/* SH7780 PCI Config Registers */ 37/* SH7780 PCI Config Registers */
39#define SH7780_PCIVID 0x000 /* Vendor ID */
40#define SH7780_PCIDID 0x002 /* Device ID */
41#define SH7780_PCICMD 0x004 /* Command */
42#define SH7780_PCISTATUS 0x006 /* Status */
43#define SH7780_PCIRID 0x008 /* Revision ID */
44#define SH7780_PCIPIF 0x009 /* Program Interface */
45#define SH7780_PCISUB 0x00a /* Sub class code */
46#define SH7780_PCIBCC 0x00b /* Base class code */
47#define SH7780_PCICLS 0x00c /* Cache line size */
48#define SH7780_PCILTM 0x00d /* latency timer */
49#define SH7780_PCIHDR 0x00e /* Header type */
50#define SH7780_PCIBIST 0x00f /* BIST */
51#define SH7780_PCIIBAR 0x010 /* IO Base address */
52#define SH7780_PCIMBAR0 0x014 /* Memory base address0 */
53#define SH7780_PCIMBAR1 0x018 /* Memory base address1 */
54#define SH7780_PCISVID 0x02c /* Sub system vendor ID */
55#define SH7780_PCISID 0x02e /* Sub system ID */
56#define SH7780_PCICP 0x034
57#define SH7780_PCIINTLINE 0x03c /* Interrupt line */
58#define SH7780_PCIINTPIN 0x03d /* Interrupt pin */
59#define SH7780_PCIMINGNT 0x03e /* Minumum grand */
60#define SH7780_PCIMAXLAT 0x03f /* Maxmum latency */
61#define SH7780_PCICID 0x040
62#define SH7780_PCINIP 0x041
63#define SH7780_PCIPMC 0x042
64#define SH7780_PCIPMCSR 0x044
65#define SH7780_PCIPMCSR_BSE 0x046
66#define SH7780_PCICDD 0x047
67
68#define SH7780_PCIIR 0x114 /* PCI Interrupt Register */ 38#define SH7780_PCIIR 0x114 /* PCI Interrupt Register */
69#define SH7780_PCIIMR 0x118 /* PCI Interrupt Mask Register */ 39#define SH7780_PCIIMR 0x118 /* PCI Interrupt Mask Register */
70#define SH7780_PCIAIR 0x11C /* Error Address Register */ 40#define SH7780_PCIAIR 0x11C /* Error Address Register */
@@ -78,6 +48,8 @@
78 48
79#define SH7780_PCIMBR0 0x1E0 49#define SH7780_PCIMBR0 0x1E0
80#define SH7780_PCIMBMR0 0x1E4 50#define SH7780_PCIMBMR0 0x1E4
51#define SH7780_PCIMBR1 0x1E8
52#define SH7780_PCIMBMR1 0x1EC
81#define SH7780_PCIMBR2 0x1F0 53#define SH7780_PCIMBR2 0x1F0
82#define SH7780_PCIMBMR2 0x1F4 54#define SH7780_PCIMBMR2 0x1F4
83#define SH7780_PCIIOBR 0x1F8 55#define SH7780_PCIIOBR 0x1F8
@@ -87,16 +59,4 @@
87#define SH7780_PCICSAR0 0x218 /* Cache Snoop1 Addr. Register */ 59#define SH7780_PCICSAR0 0x218 /* Cache Snoop1 Addr. Register */
88#define SH7780_PCICSAR1 0x21C /* Cache Snoop2 Addr. Register */ 60#define SH7780_PCICSAR1 0x21C /* Cache Snoop2 Addr. Register */
89 61
90/* General Memory Config Addresses */
91#define SH7780_CS0_BASE_ADDR 0x0
92#define SH7780_MEM_REGION_SIZE 0x04000000
93#define SH7780_CS1_BASE_ADDR (SH7780_CS0_BASE_ADDR + SH7780_MEM_REGION_SIZE)
94#define SH7780_CS2_BASE_ADDR (SH7780_CS1_BASE_ADDR + SH7780_MEM_REGION_SIZE)
95#define SH7780_CS3_BASE_ADDR (SH7780_CS2_BASE_ADDR + SH7780_MEM_REGION_SIZE)
96#define SH7780_CS4_BASE_ADDR (SH7780_CS3_BASE_ADDR + SH7780_MEM_REGION_SIZE)
97#define SH7780_CS5_BASE_ADDR (SH7780_CS4_BASE_ADDR + SH7780_MEM_REGION_SIZE)
98#define SH7780_CS6_BASE_ADDR (SH7780_CS5_BASE_ADDR + SH7780_MEM_REGION_SIZE)
99
100#define SH7780_32BIT_DDR_BASE_ADDR 0x40000000
101
102#endif /* _PCI_SH7780_H_ */ 62#endif /* _PCI_SH7780_H_ */