1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#undef DEBUG
16
17#include <linux/init.h>
18#include <linux/pci.h>
19#include <linux/types.h>
20#include <linux/errno.h>
21#include <linux/delay.h>
22#include "pci-sh4.h"
23#include <asm/addrspace.h>
24#include <asm/io.h>
25
26
27
28
29
30
31
32
33
34
35static int __init sh7751_pci_init(void)
36{
37 unsigned int id;
38 int ret;
39
40 pr_debug("PCI: Starting intialization.\n");
41
42
43 id = pci_read_reg(SH7751_PCICONF0);
44 if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
45 id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
46 pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
47 return -ENODEV;
48 }
49
50 if ((ret = sh4_pci_check_direct()) != 0)
51 return ret;
52
53 return pcibios_init_platform();
54}
55subsys_initcall(sh7751_pci_init);
56
57static int __init __area_sdram_check(unsigned int area)
58{
59 u32 word;
60
61 word = ctrl_inl(SH7751_BCR1);
62
63 if (((word >> area) & 1) == 0) {
64 printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n",
65 area, word);
66 return 0;
67 }
68 pci_write_reg(word, SH4_PCIBCR1);
69
70 word = (u16)ctrl_inw(SH7751_BCR2);
71
72 if (((word >> (area << 1)) & 0x3) != 0x3) {
73 printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n",
74 area, word);
75 return 0;
76 }
77 pci_write_reg(word, SH4_PCIBCR2);
78
79 return 1;
80}
81
82int __init sh7751_pcic_init(struct sh4_pci_address_map *map)
83{
84 u32 reg;
85 u32 word;
86
87
88 reg = ctrl_inl(SH7751_BCR1);
89 reg |= 0x80000;
90 ctrl_outl(reg, SH7751_BCR1);
91
92
93 pci_write_reg(0, SH4_PCICLKR);
94
95 word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
96 pci_write_reg(word, SH4_PCIPINT);
97
98
99
100
101
102
103 if (!(map->flags & SH4_PCIC_NO_RESET)) {
104
105 word = SH4_PCICR_PREFIX | SH4_PCICR_PRST;
106 pci_write_reg(word, SH4_PCICR);
107
108 mdelay(100);
109 word = SH4_PCICR_PREFIX;
110 pci_write_reg(word, SH4_PCICR);
111 }
112
113
114
115
116
117 word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
118 SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
119 pci_write_reg(word, SH7751_PCICONF1);
120
121
122 word = PCI_BASE_CLASS_BRIDGE << 24;
123 pci_write_reg(word, SH7751_PCICONF2);
124
125
126
127
128
129
130 word = map->window0.size - 1;
131 pci_write_reg(word, SH4_PCILSR0);
132 word = map->window1.size - 1;
133 pci_write_reg(word, SH4_PCILSR1);
134
135 word = P2SEGADDR(map->window0.base);
136 pci_write_reg(word, SH4_PCILAR0);
137 pci_write_reg(word, SH7751_PCICONF5);
138
139 word = PHYSADDR(map->window1.base);
140 pci_write_reg(word, SH4_PCILAR1);
141 pci_write_reg(word, SH7751_PCICONF6);
142
143
144
145
146 word = PCIBIOS_MIN_MEM & SH4_PCIMBR_MASK;
147 pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
148 pci_write_reg(word , SH4_PCIMBR);
149
150
151
152
153
154
155 pr_debug("PCI: Mapping IO address 0x%x - 0x%x to base 0x%x\n",
156 PCIBIOS_MIN_IO, (64 << 10),
157 SH7751_PCI_IO_BASE + PCIBIOS_MIN_IO);
158
159
160
161 word = PCIBIOS_MIN_IO & SH4_PCIIOBR_MASK;
162 pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
163 pci_write_reg(word, SH4_PCIIOBR);
164
165
166
167
168 switch (map->window0.base) {
169 case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(0); break;
170 case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(1); break;
171 case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(2); break;
172 case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(3); break;
173 case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(4); break;
174 case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(5); break;
175 case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(6); break;
176 }
177
178 if (!word)
179 return 0;
180
181
182 word = ctrl_inl(SH7751_WCR1);
183 pci_write_reg(word, SH4_PCIWCR1);
184 word = ctrl_inl(SH7751_WCR2);
185 pci_write_reg(word, SH4_PCIWCR2);
186 word = ctrl_inl(SH7751_WCR3);
187 pci_write_reg(word, SH4_PCIWCR3);
188 word = ctrl_inl(SH7751_MCR);
189 pci_write_reg(word, SH4_PCIMCR);
190
191
192
193
194
195
196 pci_fixup_pcic();
197
198
199
200 word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
201 pci_write_reg(word, SH4_PCICR);
202
203 return 1;
204}
205