blob: 9cd9722eec5e3d72e1f95612eb4bc5369c71fd67 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/* PCI.c - PCI functions */
2
3/* Copyright - Galileo technology. */
4
5#include <common.h>
6#include <pci.h>
7
8#include <galileo/pci.h>
9
10static const unsigned char pci_irq_swizzle[2][PCI_MAX_DEVICES] = {
11#ifdef CONFIG_ZUMA_V2
wdenk198ea9e2004-02-12 15:11:57 +000012 {0, 0, 0, 0, 0, 0, 0, 29,[8 ... PCI_MAX_DEVICES - 1] = 0},
13 {0, 0, 0, 0, 0, 0, 0, 28,[8 ... PCI_MAX_DEVICES - 1] = 0}
wdenkbf9e3b32004-02-12 00:47:09 +000014#else /* EVB??? This is a guess */
wdenk198ea9e2004-02-12 15:11:57 +000015 {0, 0, 0, 0, 0, 0, 0, 27, 27,[9 ... PCI_MAX_DEVICES - 1] = 0},
16 {0, 0, 0, 0, 0, 0, 0, 29, 29,[9 ... PCI_MAX_DEVICES - 1] = 0}
wdenkc6097192002-11-03 00:24:07 +000017#endif
18};
19
wdenkbf9e3b32004-02-12 00:47:09 +000020static const unsigned int pci_p2p_configuration_reg[] = {
21 PCI_0P2P_CONFIGURATION, PCI_1P2P_CONFIGURATION
22};
wdenkc6097192002-11-03 00:24:07 +000023
wdenkbf9e3b32004-02-12 00:47:09 +000024static const unsigned int pci_configuration_address[] = {
25 PCI_0CONFIGURATION_ADDRESS, PCI_1CONFIGURATION_ADDRESS
26};
wdenkc6097192002-11-03 00:24:07 +000027
wdenkbf9e3b32004-02-12 00:47:09 +000028static const unsigned int pci_configuration_data[] = {
29 PCI_0CONFIGURATION_DATA_VIRTUAL_REGISTER,
30 PCI_1CONFIGURATION_DATA_VIRTUAL_REGISTER
31};
wdenkc6097192002-11-03 00:24:07 +000032
wdenkbf9e3b32004-02-12 00:47:09 +000033static const unsigned int pci_error_cause_reg[] = {
34 PCI_0ERROR_CAUSE, PCI_1ERROR_CAUSE
35};
wdenkc6097192002-11-03 00:24:07 +000036
wdenkbf9e3b32004-02-12 00:47:09 +000037static const unsigned int pci_arbiter_control[] = {
38 PCI_0ARBITER_CONTROL, PCI_1ARBITER_CONTROL
39};
wdenkc6097192002-11-03 00:24:07 +000040
wdenkbf9e3b32004-02-12 00:47:09 +000041static const unsigned int pci_snoop_control_base_0_low[] = {
42 PCI_0SNOOP_CONTROL_BASE_0_LOW, PCI_1SNOOP_CONTROL_BASE_0_LOW
43};
44static const unsigned int pci_snoop_control_top_0[] = {
45 PCI_0SNOOP_CONTROL_TOP_0, PCI_1SNOOP_CONTROL_TOP_0
46};
wdenkc6097192002-11-03 00:24:07 +000047
wdenkbf9e3b32004-02-12 00:47:09 +000048static const unsigned int pci_access_control_base_0_low[] = {
49 PCI_0ACCESS_CONTROL_BASE_0_LOW, PCI_1ACCESS_CONTROL_BASE_0_LOW
50};
51static const unsigned int pci_access_control_top_0[] = {
52 PCI_0ACCESS_CONTROL_TOP_0, PCI_1ACCESS_CONTROL_TOP_0
53};
wdenkc6097192002-11-03 00:24:07 +000054
55static const unsigned int pci_scs_bank_size[2][4] = {
wdenkbf9e3b32004-02-12 00:47:09 +000056 {PCI_0SCS_0_BANK_SIZE, PCI_0SCS_1_BANK_SIZE,
57 PCI_0SCS_2_BANK_SIZE, PCI_0SCS_3_BANK_SIZE},
58 {PCI_1SCS_0_BANK_SIZE, PCI_1SCS_1_BANK_SIZE,
59 PCI_1SCS_2_BANK_SIZE, PCI_1SCS_3_BANK_SIZE}
60};
wdenkc6097192002-11-03 00:24:07 +000061
62static const unsigned int pci_p2p_configuration[] = {
wdenkbf9e3b32004-02-12 00:47:09 +000063 PCI_0P2P_CONFIGURATION, PCI_1P2P_CONFIGURATION
64};
wdenkc6097192002-11-03 00:24:07 +000065
wdenkbf9e3b32004-02-12 00:47:09 +000066static unsigned int local_buses[] = { 0, 0 };
67
wdenkc6097192002-11-03 00:24:07 +000068/********************************************************************
69* pciWriteConfigReg - Write to a PCI configuration register
70* - Make sure the GT is configured as a master before writing
71* to another device on the PCI.
72* - The function takes care of Big/Little endian conversion.
73*
74*
75* Inputs: unsigned int regOffset: The register offset as it apears in the GT spec
76* (or any other PCI device spec)
77* pciDevNum: The device number needs to be addressed.
78*
79* Configuration Address 0xCF8:
80*
81* 31 30 24 23 16 15 11 10 8 7 2 0 <=bit Number
82* |congif|Reserved| Bus |Device|Function|Register|00|
83* |Enable| |Number|Number| Number | Number | | <=field Name
84*
85*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +000086void pciWriteConfigReg (PCI_HOST host, unsigned int regOffset,
87 unsigned int pciDevNum, unsigned int data)
wdenkc6097192002-11-03 00:24:07 +000088{
wdenkbf9e3b32004-02-12 00:47:09 +000089 volatile unsigned int DataForAddrReg;
90 unsigned int functionNum;
91 unsigned int busNum = PCI_BUS (pciDevNum);
92 unsigned int addr;
wdenkc6097192002-11-03 00:24:07 +000093
wdenkbf9e3b32004-02-12 00:47:09 +000094 if (pciDevNum > 32) /* illegal device Number */
95 return;
96 if (pciDevNum == SELF) { /* configure our configuration space. */
97 pciDevNum =
98 (GTREGREAD (pci_p2p_configuration_reg[host]) >> 24) &
99 0x1f;
100 busNum = GTREGREAD (pci_p2p_configuration_reg[host]) &
101 0xff0000;
102 }
103 functionNum = regOffset & 0x00000700;
104 pciDevNum = pciDevNum << 11;
105 regOffset = regOffset & 0xfc;
106 DataForAddrReg =
107 (regOffset | pciDevNum | functionNum | busNum) | BIT31;
108 GT_REG_WRITE (pci_configuration_address[host], DataForAddrReg);
109 GT_REG_READ (pci_configuration_address[host], &addr);
110 if (addr != DataForAddrReg)
111 return;
112 GT_REG_WRITE (pci_configuration_data[host], data);
wdenkc6097192002-11-03 00:24:07 +0000113}
114
115/********************************************************************
116* pciReadConfigReg - Read from a PCI0 configuration register
117* - Make sure the GT is configured as a master before reading
118* from another device on the PCI.
119* - The function takes care of Big/Little endian conversion.
120* INPUTS: regOffset: The register offset as it apears in the GT spec (or PCI
121* spec)
122* pciDevNum: The device number needs to be addressed.
123* RETURNS: data , if the data == 0xffffffff check the master abort bit in the
124* cause register to make sure the data is valid
125*
126* Configuration Address 0xCF8:
127*
128* 31 30 24 23 16 15 11 10 8 7 2 0 <=bit Number
129* |congif|Reserved| Bus |Device|Function|Register|00|
130* |Enable| |Number|Number| Number | Number | | <=field Name
131*
132*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000133unsigned int pciReadConfigReg (PCI_HOST host, unsigned int regOffset,
134 unsigned int pciDevNum)
wdenkc6097192002-11-03 00:24:07 +0000135{
wdenkbf9e3b32004-02-12 00:47:09 +0000136 volatile unsigned int DataForAddrReg;
wdenk8bde7f72003-06-27 21:31:46 +0000137 unsigned int data;
wdenkbf9e3b32004-02-12 00:47:09 +0000138 unsigned int functionNum;
139 unsigned int busNum = PCI_BUS (pciDevNum);
wdenkc6097192002-11-03 00:24:07 +0000140
wdenkbf9e3b32004-02-12 00:47:09 +0000141 if (pciDevNum > 32) /* illegal device Number */
142 return 0xffffffff;
143 if (pciDevNum == SELF) { /* configure our configuration space. */
144 pciDevNum =
145 (GTREGREAD (pci_p2p_configuration_reg[host]) >> 24) &
146 0x1f;
147 busNum = GTREGREAD (pci_p2p_configuration_reg[host]) &
148 0xff0000;
149 }
150 functionNum = regOffset & 0x00000700;
151 pciDevNum = pciDevNum << 11;
152 regOffset = regOffset & 0xfc;
153 DataForAddrReg =
154 (regOffset | pciDevNum | functionNum | busNum) | BIT31;
155 GT_REG_WRITE (pci_configuration_address[host], DataForAddrReg);
156 GT_REG_READ (pci_configuration_address[host], &data);
157 if (data != DataForAddrReg)
158 return 0xffffffff;
159 GT_REG_READ (pci_configuration_data[host], &data);
160 return data;
wdenkc6097192002-11-03 00:24:07 +0000161}
162
163/********************************************************************
164* pciOverBridgeWriteConfigReg - Write to a PCI configuration register where
165* the agent is placed on another Bus. For more
166* information read P2P in the PCI spec.
167*
168* Inputs: unsigned int regOffset - The register offset as it apears in the
169* GT spec (or any other PCI device spec).
170* unsigned int pciDevNum - The device number needs to be addressed.
171* unsigned int busNum - On which bus does the Target agent connect
172* to.
173* unsigned int data - data to be written.
174*
175* Configuration Address 0xCF8:
176*
177* 31 30 24 23 16 15 11 10 8 7 2 0 <=bit Number
178* |congif|Reserved| Bus |Device|Function|Register|01|
179* |Enable| |Number|Number| Number | Number | | <=field Name
180*
181* The configuration Address is configure as type-I (bits[1:0] = '01') due to
182* PCI spec referring to P2P.
183*
184*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000185void pciOverBridgeWriteConfigReg (PCI_HOST host,
186 unsigned int regOffset,
187 unsigned int pciDevNum,
188 unsigned int busNum, unsigned int data)
wdenkc6097192002-11-03 00:24:07 +0000189{
wdenkbf9e3b32004-02-12 00:47:09 +0000190 unsigned int DataForReg;
191 unsigned int functionNum;
wdenkc6097192002-11-03 00:24:07 +0000192
wdenkbf9e3b32004-02-12 00:47:09 +0000193 functionNum = regOffset & 0x00000700;
194 pciDevNum = pciDevNum << 11;
195 regOffset = regOffset & 0xff;
196 busNum = busNum << 16;
197 if (pciDevNum == SELF) { /* This board */
198 DataForReg = (regOffset | pciDevNum | functionNum) | BIT0;
199 } else {
200 DataForReg = (regOffset | pciDevNum | functionNum | busNum) |
201 BIT31 | BIT0;
202 }
203 GT_REG_WRITE (pci_configuration_address[host], DataForReg);
204 if (pciDevNum == SELF) { /* This board */
205 GT_REG_WRITE (pci_configuration_data[host], data);
206 } else { /* configuration Transaction over the pci. */
207
208 /* The PCI is working in LE Mode So it swap the Data. */
209 GT_REG_WRITE (pci_configuration_data[host], WORD_SWAP (data));
210 }
wdenkc6097192002-11-03 00:24:07 +0000211}
212
213
214/********************************************************************
215* pciOverBridgeReadConfigReg - Read from a PCIn configuration register where
216* the agent target locate on another PCI bus.
217* - Make sure the GT is configured as a master
218* before reading from another device on the PCI.
219* - The function takes care of Big/Little endian
220* conversion.
221* INPUTS: regOffset: The register offset as it apears in the GT spec (or PCI
222* spec). (configuration register offset.)
223* pciDevNum: The device number needs to be addressed.
224* busNum: the Bus number where the agent is place.
225* RETURNS: data , if the data == 0xffffffff check the master abort bit in the
226* cause register to make sure the data is valid
227*
228* Configuration Address 0xCF8:
229*
230* 31 30 24 23 16 15 11 10 8 7 2 0 <=bit Number
231* |congif|Reserved| Bus |Device|Function|Register|01|
232* |Enable| |Number|Number| Number | Number | | <=field Name
233*
234*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000235unsigned int pciOverBridgeReadConfigReg (PCI_HOST host,
236 unsigned int regOffset,
237 unsigned int pciDevNum,
238 unsigned int busNum)
wdenkc6097192002-11-03 00:24:07 +0000239{
wdenkbf9e3b32004-02-12 00:47:09 +0000240 unsigned int DataForReg;
241 unsigned int data;
242 unsigned int functionNum;
wdenkc6097192002-11-03 00:24:07 +0000243
wdenkbf9e3b32004-02-12 00:47:09 +0000244 functionNum = regOffset & 0x00000700;
245 pciDevNum = pciDevNum << 11;
246 regOffset = regOffset & 0xff;
247 busNum = busNum << 16;
248 if (pciDevNum == SELF) { /* This board */
249 DataForReg = (regOffset | pciDevNum | functionNum) | BIT31;
250 } else { /* agent on another bus */
251
252 DataForReg = (regOffset | pciDevNum | functionNum | busNum) |
253 BIT0 | BIT31;
254 }
255 GT_REG_WRITE (pci_configuration_address[host], DataForReg);
256 if (pciDevNum == SELF) { /* This board */
257 GT_REG_READ (pci_configuration_data[host], &data);
258 return data;
259 } else { /* The PCI is working in LE Mode So it swap the Data. */
260
261 GT_REG_READ (pci_configuration_data[host], &data);
262 return WORD_SWAP (data);
263 }
wdenkc6097192002-11-03 00:24:07 +0000264}
265
266/********************************************************************
267* pciGetRegOffset - Gets the register offset for this region config.
268*
269* INPUT: Bus, Region - The bus and region we ask for its base address.
270* OUTPUT: N/A
271* RETURNS: PCI register base address
272*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000273static unsigned int pciGetRegOffset (PCI_HOST host, PCI_REGION region)
wdenkc6097192002-11-03 00:24:07 +0000274{
wdenkbf9e3b32004-02-12 00:47:09 +0000275 switch (host) {
wdenkc6097192002-11-03 00:24:07 +0000276 case PCI_HOST0:
wdenkbf9e3b32004-02-12 00:47:09 +0000277 switch (region) {
278 case PCI_IO:
279 return PCI_0I_O_LOW_DECODE_ADDRESS;
280 case PCI_REGION0:
281 return PCI_0MEMORY0_LOW_DECODE_ADDRESS;
282 case PCI_REGION1:
283 return PCI_0MEMORY1_LOW_DECODE_ADDRESS;
284 case PCI_REGION2:
285 return PCI_0MEMORY2_LOW_DECODE_ADDRESS;
286 case PCI_REGION3:
287 return PCI_0MEMORY3_LOW_DECODE_ADDRESS;
288 }
wdenkc6097192002-11-03 00:24:07 +0000289 case PCI_HOST1:
wdenkbf9e3b32004-02-12 00:47:09 +0000290 switch (region) {
291 case PCI_IO:
292 return PCI_1I_O_LOW_DECODE_ADDRESS;
293 case PCI_REGION0:
294 return PCI_1MEMORY0_LOW_DECODE_ADDRESS;
295 case PCI_REGION1:
296 return PCI_1MEMORY1_LOW_DECODE_ADDRESS;
297 case PCI_REGION2:
298 return PCI_1MEMORY2_LOW_DECODE_ADDRESS;
299 case PCI_REGION3:
300 return PCI_1MEMORY3_LOW_DECODE_ADDRESS;
301 }
302 }
303 return PCI_0MEMORY0_LOW_DECODE_ADDRESS;
wdenkc6097192002-11-03 00:24:07 +0000304}
305
wdenkbf9e3b32004-02-12 00:47:09 +0000306static unsigned int pciGetRemapOffset (PCI_HOST host, PCI_REGION region)
wdenkc6097192002-11-03 00:24:07 +0000307{
wdenkbf9e3b32004-02-12 00:47:09 +0000308 switch (host) {
wdenkc6097192002-11-03 00:24:07 +0000309 case PCI_HOST0:
wdenkbf9e3b32004-02-12 00:47:09 +0000310 switch (region) {
311 case PCI_IO:
312 return PCI_0I_O_ADDRESS_REMAP;
313 case PCI_REGION0:
314 return PCI_0MEMORY0_ADDRESS_REMAP;
315 case PCI_REGION1:
316 return PCI_0MEMORY1_ADDRESS_REMAP;
317 case PCI_REGION2:
318 return PCI_0MEMORY2_ADDRESS_REMAP;
319 case PCI_REGION3:
320 return PCI_0MEMORY3_ADDRESS_REMAP;
321 }
wdenkc6097192002-11-03 00:24:07 +0000322 case PCI_HOST1:
wdenkbf9e3b32004-02-12 00:47:09 +0000323 switch (region) {
324 case PCI_IO:
325 return PCI_1I_O_ADDRESS_REMAP;
326 case PCI_REGION0:
327 return PCI_1MEMORY0_ADDRESS_REMAP;
328 case PCI_REGION1:
329 return PCI_1MEMORY1_ADDRESS_REMAP;
330 case PCI_REGION2:
331 return PCI_1MEMORY2_ADDRESS_REMAP;
332 case PCI_REGION3:
333 return PCI_1MEMORY3_ADDRESS_REMAP;
334 }
335 }
336 return PCI_0MEMORY0_ADDRESS_REMAP;
wdenkc6097192002-11-03 00:24:07 +0000337}
338
wdenkbf9e3b32004-02-12 00:47:09 +0000339bool pciMapSpace (PCI_HOST host, PCI_REGION region, unsigned int remapBase,
340 unsigned int bankBase, unsigned int bankLength)
wdenkc6097192002-11-03 00:24:07 +0000341{
wdenkbf9e3b32004-02-12 00:47:09 +0000342 unsigned int low = 0xfff;
343 unsigned int high = 0x0;
344 unsigned int regOffset = pciGetRegOffset (host, region);
345 unsigned int remapOffset = pciGetRemapOffset (host, region);
wdenkc6097192002-11-03 00:24:07 +0000346
wdenkbf9e3b32004-02-12 00:47:09 +0000347 if (bankLength != 0) {
348 low = (bankBase >> 20) & 0xfff;
349 high = ((bankBase + bankLength) >> 20) - 1;
350 }
wdenkc6097192002-11-03 00:24:07 +0000351
wdenkbf9e3b32004-02-12 00:47:09 +0000352 GT_REG_WRITE (regOffset, low | (1 << 24)); /* no swapping */
353 GT_REG_WRITE (regOffset + 8, high);
wdenkc6097192002-11-03 00:24:07 +0000354
wdenkbf9e3b32004-02-12 00:47:09 +0000355 if (bankLength != 0) { /* must do AFTER writing maps */
356 GT_REG_WRITE (remapOffset, remapBase >> 20); /* sorry, 32 bits only.
357 dont support upper 32
358 in this driver */
359 }
360 return true;
wdenkc6097192002-11-03 00:24:07 +0000361}
362
wdenkbf9e3b32004-02-12 00:47:09 +0000363unsigned int pciGetSpaceBase (PCI_HOST host, PCI_REGION region)
wdenkc6097192002-11-03 00:24:07 +0000364{
wdenkbf9e3b32004-02-12 00:47:09 +0000365 unsigned int low;
366 unsigned int regOffset = pciGetRegOffset (host, region);
367
368 GT_REG_READ (regOffset, &low);
369 return (low & 0xfff) << 20;
wdenkc6097192002-11-03 00:24:07 +0000370}
371
wdenkbf9e3b32004-02-12 00:47:09 +0000372unsigned int pciGetSpaceSize (PCI_HOST host, PCI_REGION region)
wdenkc6097192002-11-03 00:24:07 +0000373{
wdenkbf9e3b32004-02-12 00:47:09 +0000374 unsigned int low, high;
375 unsigned int regOffset = pciGetRegOffset (host, region);
376
377 GT_REG_READ (regOffset, &low);
378 GT_REG_READ (regOffset + 8, &high);
379 high &= 0xfff;
380 low &= 0xfff;
381 if (high <= low)
382 return 0;
383 return (high + 1 - low) << 20;
wdenkc6097192002-11-03 00:24:07 +0000384}
385
386/********************************************************************
387* pciMapMemoryBank - Maps PCI_host memory bank "bank" for the slave.
388*
389* Inputs: base and size of PCI SCS
390*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000391void pciMapMemoryBank (PCI_HOST host, MEMORY_BANK bank,
392 unsigned int pciDramBase, unsigned int pciDramSize)
wdenkc6097192002-11-03 00:24:07 +0000393{
wdenk8bde7f72003-06-27 21:31:46 +0000394 pciDramBase = pciDramBase & 0xfffff000;
wdenkbf9e3b32004-02-12 00:47:09 +0000395 pciDramBase = pciDramBase | (pciReadConfigReg (host,
396 PCI_SCS_0_BASE_ADDRESS
397 + 4 * bank,
398 SELF) & 0x00000fff);
399 pciWriteConfigReg (host, PCI_SCS_0_BASE_ADDRESS + 4 * bank, SELF,
400 pciDramBase);
401 if (pciDramSize == 0)
402 pciDramSize++;
403 GT_REG_WRITE (pci_scs_bank_size[host][bank], pciDramSize - 1);
wdenkc6097192002-11-03 00:24:07 +0000404}
405
406
407/********************************************************************
408* pciSetRegionFeatures - This function modifys one of the 8 regions with
409* feature bits given as an input.
410* - Be advised to check the spec before modifying them.
411* Inputs: PCI_PROTECT_REGION region - one of the eight regions.
412* unsigned int features - See file: pci.h there are defintion for those
413* region features.
414* unsigned int baseAddress - The region base Address.
415* unsigned int topAddress - The region top Address.
416* Returns: false if one of the parameters is erroneous true otherwise.
417*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000418bool pciSetRegionFeatures (PCI_HOST host, PCI_ACCESS_REGIONS region,
419 unsigned int features, unsigned int baseAddress,
420 unsigned int regionLength)
wdenkc6097192002-11-03 00:24:07 +0000421{
wdenkbf9e3b32004-02-12 00:47:09 +0000422 unsigned int accessLow;
423 unsigned int accessHigh;
424 unsigned int accessTop = baseAddress + regionLength;
wdenkc6097192002-11-03 00:24:07 +0000425
wdenkbf9e3b32004-02-12 00:47:09 +0000426 if (regionLength == 0) { /* close the region. */
427 pciDisableAccessRegion (host, region);
428 return true;
429 }
430 /* base Address is store is bits [11:0] */
431 accessLow = (baseAddress & 0xfff00000) >> 20;
432 /* All the features are update according to the defines in pci.h (to be on
433 the safe side we disable bits: [11:0] */
434 accessLow = accessLow | (features & 0xfffff000);
435 /* write to the Low Access Region register */
436 GT_REG_WRITE (pci_access_control_base_0_low[host] + 0x10 * region,
437 accessLow);
438
439 accessHigh = (accessTop & 0xfff00000) >> 20;
440
441 /* write to the High Access Region register */
442 GT_REG_WRITE (pci_access_control_top_0[host] + 0x10 * region,
443 accessHigh - 1);
wdenk8bde7f72003-06-27 21:31:46 +0000444 return true;
wdenkc6097192002-11-03 00:24:07 +0000445}
446
447/********************************************************************
448* pciDisableAccessRegion - Disable The given Region by writing MAX size
449* to its low Address and MIN size to its high Address.
450*
451* Inputs: PCI_ACCESS_REGIONS region - The region we to be Disabled.
452* Returns: N/A.
453*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000454void pciDisableAccessRegion (PCI_HOST host, PCI_ACCESS_REGIONS region)
wdenkc6097192002-11-03 00:24:07 +0000455{
wdenkbf9e3b32004-02-12 00:47:09 +0000456 /* writing back the registers default values. */
457 GT_REG_WRITE (pci_access_control_base_0_low[host] + 0x10 * region,
458 0x01001fff);
459 GT_REG_WRITE (pci_access_control_top_0[host] + 0x10 * region, 0);
wdenkc6097192002-11-03 00:24:07 +0000460}
461
462/********************************************************************
463* pciArbiterEnable - Enables PCI-0`s Arbitration mechanism.
464*
465* Inputs: N/A
466* Returns: true.
467*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000468bool pciArbiterEnable (PCI_HOST host)
wdenkc6097192002-11-03 00:24:07 +0000469{
wdenkbf9e3b32004-02-12 00:47:09 +0000470 unsigned int regData;
wdenkc6097192002-11-03 00:24:07 +0000471
wdenkbf9e3b32004-02-12 00:47:09 +0000472 GT_REG_READ (pci_arbiter_control[host], &regData);
473 GT_REG_WRITE (pci_arbiter_control[host], regData | BIT31);
474 return true;
wdenkc6097192002-11-03 00:24:07 +0000475}
476
477/********************************************************************
478* pciArbiterDisable - Disable PCI-0`s Arbitration mechanism.
479*
480* Inputs: N/A
481* Returns: true
482*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000483bool pciArbiterDisable (PCI_HOST host)
wdenkc6097192002-11-03 00:24:07 +0000484{
wdenkbf9e3b32004-02-12 00:47:09 +0000485 unsigned int regData;
wdenkc6097192002-11-03 00:24:07 +0000486
wdenkbf9e3b32004-02-12 00:47:09 +0000487 GT_REG_READ (pci_arbiter_control[host], &regData);
488 GT_REG_WRITE (pci_arbiter_control[host], regData & 0x7fffffff);
489 return true;
wdenkc6097192002-11-03 00:24:07 +0000490}
491
492/********************************************************************
493* pciParkingDisable - Park on last option disable, with this function you can
494* disable the park on last mechanism for each agent.
495* disabling this option for all agents results parking
496* on the internal master.
497*
498* Inputs: PCI_AGENT_PARK internalAgent - parking Disable for internal agent.
499* PCI_AGENT_PARK externalAgent0 - parking Disable for external#0 agent.
500* PCI_AGENT_PARK externalAgent1 - parking Disable for external#1 agent.
501* PCI_AGENT_PARK externalAgent2 - parking Disable for external#2 agent.
502* PCI_AGENT_PARK externalAgent3 - parking Disable for external#3 agent.
503* PCI_AGENT_PARK externalAgent4 - parking Disable for external#4 agent.
504* PCI_AGENT_PARK externalAgent5 - parking Disable for external#5 agent.
505* Returns: true
506*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000507bool pciParkingDisable (PCI_HOST host, PCI_AGENT_PARK internalAgent,
wdenk8bde7f72003-06-27 21:31:46 +0000508 PCI_AGENT_PARK externalAgent0,
509 PCI_AGENT_PARK externalAgent1,
510 PCI_AGENT_PARK externalAgent2,
511 PCI_AGENT_PARK externalAgent3,
512 PCI_AGENT_PARK externalAgent4,
513 PCI_AGENT_PARK externalAgent5)
wdenkc6097192002-11-03 00:24:07 +0000514{
wdenkbf9e3b32004-02-12 00:47:09 +0000515 unsigned int regData;
516 unsigned int writeData;
wdenkc6097192002-11-03 00:24:07 +0000517
wdenkbf9e3b32004-02-12 00:47:09 +0000518 GT_REG_READ (pci_arbiter_control[host], &regData);
519 writeData = (internalAgent << 14) + (externalAgent0 << 15) +
520 (externalAgent1 << 16) + (externalAgent2 << 17) +
521 (externalAgent3 << 18) + (externalAgent4 << 19) +
wdenk8bde7f72003-06-27 21:31:46 +0000522 (externalAgent5 << 20);
wdenkbf9e3b32004-02-12 00:47:09 +0000523 regData = (regData & ~(0x7f << 14)) | writeData;
524 GT_REG_WRITE (pci_arbiter_control[host], regData);
525 return true;
wdenkc6097192002-11-03 00:24:07 +0000526}
527
528/********************************************************************
529* pciSetRegionSnoopMode - This function modifys one of the 4 regions which
530* supports Cache Coherency in the PCI_n interface.
531* Inputs: region - One of the four regions.
532* snoopType - There is four optional Types:
533* 1. No Snoop.
534* 2. Snoop to WT region.
535* 3. Snoop to WB region.
536* 4. Snoop & Invalidate to WB region.
537* baseAddress - Base Address of this region.
538* regionLength - Region length.
539* Returns: false if one of the parameters is wrong otherwise return true.
540*********************************************************************/
wdenkbf9e3b32004-02-12 00:47:09 +0000541bool pciSetRegionSnoopMode (PCI_HOST host, PCI_SNOOP_REGION region,
542 PCI_SNOOP_TYPE snoopType,
wdenk8bde7f72003-06-27 21:31:46 +0000543 unsigned int baseAddress,
544 unsigned int regionLength)
wdenkc6097192002-11-03 00:24:07 +0000545{
wdenkbf9e3b32004-02-12 00:47:09 +0000546 unsigned int snoopXbaseAddress;
547 unsigned int snoopXtopAddress;
548 unsigned int data;
549 unsigned int snoopHigh = baseAddress + regionLength;
wdenkc6097192002-11-03 00:24:07 +0000550
wdenkbf9e3b32004-02-12 00:47:09 +0000551 if ((region > PCI_SNOOP_REGION3) || (snoopType > PCI_SNOOP_WB))
552 return false;
553 snoopXbaseAddress =
554 pci_snoop_control_base_0_low[host] + 0x10 * region;
555 snoopXtopAddress = pci_snoop_control_top_0[host] + 0x10 * region;
556 if (regionLength == 0) { /* closing the region */
557 GT_REG_WRITE (snoopXbaseAddress, 0x0000ffff);
558 GT_REG_WRITE (snoopXtopAddress, 0);
559 return true;
560 }
561 baseAddress = baseAddress & 0xfff00000; /* Granularity of 1MByte */
562 data = (baseAddress >> 20) | snoopType << 12;
563 GT_REG_WRITE (snoopXbaseAddress, data);
564 snoopHigh = (snoopHigh & 0xfff00000) >> 20;
565 GT_REG_WRITE (snoopXtopAddress, snoopHigh - 1);
wdenk8bde7f72003-06-27 21:31:46 +0000566 return true;
wdenkc6097192002-11-03 00:24:07 +0000567}
568
569/*
570 *
571 */
572
wdenkbf9e3b32004-02-12 00:47:09 +0000573static int gt_read_config_dword (struct pci_controller *hose,
574 pci_dev_t dev, int offset, u32 * value)
wdenkc6097192002-11-03 00:24:07 +0000575{
wdenkbf9e3b32004-02-12 00:47:09 +0000576 int bus = PCI_BUS (dev);
wdenk8bde7f72003-06-27 21:31:46 +0000577
wdenkbf9e3b32004-02-12 00:47:09 +0000578 if ((bus == local_buses[0]) || (bus == local_buses[1])) {
579 *value = pciReadConfigReg ((PCI_HOST) hose->cfg_addr, offset,
580 PCI_DEV (dev));
wdenkdb2f721f2003-03-06 00:58:30 +0000581 } else {
wdenkbf9e3b32004-02-12 00:47:09 +0000582 *value = pciOverBridgeReadConfigReg ((PCI_HOST) hose->
583 cfg_addr, offset,
584 PCI_DEV (dev), bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000585 }
586 return 0;
wdenkc6097192002-11-03 00:24:07 +0000587}
588
wdenkbf9e3b32004-02-12 00:47:09 +0000589static int gt_write_config_dword (struct pci_controller *hose,
590 pci_dev_t dev, int offset, u32 value)
wdenkc6097192002-11-03 00:24:07 +0000591{
wdenkbf9e3b32004-02-12 00:47:09 +0000592 int bus = PCI_BUS (dev);
wdenkdb2f721f2003-03-06 00:58:30 +0000593
wdenkbf9e3b32004-02-12 00:47:09 +0000594 if ((bus == local_buses[0]) || (bus == local_buses[1])) {
595 pciWriteConfigReg ((PCI_HOST) hose->cfg_addr, offset,
596 PCI_DEV (dev), value);
wdenkdb2f721f2003-03-06 00:58:30 +0000597 } else {
wdenkbf9e3b32004-02-12 00:47:09 +0000598 pciOverBridgeWriteConfigReg ((PCI_HOST) hose->cfg_addr,
599 offset, PCI_DEV (dev), value,
600 bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000601 }
602 return 0;
wdenkc6097192002-11-03 00:24:07 +0000603}
604
605/*
606 *
607 */
608
wdenkbf9e3b32004-02-12 00:47:09 +0000609static void gt_setup_ide (struct pci_controller *hose,
610 pci_dev_t dev, struct pci_config_table *entry)
wdenkc6097192002-11-03 00:24:07 +0000611{
wdenkbf9e3b32004-02-12 00:47:09 +0000612 static const int ide_bar[] = { 8, 4, 8, 4, 0, 0 };
613 u32 bar_response, bar_value;
614 int bar;
wdenkc6097192002-11-03 00:24:07 +0000615
wdenkbf9e3b32004-02-12 00:47:09 +0000616 for (bar = 0; bar < 6; bar++) {
617 pci_write_config_dword (dev, PCI_BASE_ADDRESS_0 + bar * 4,
618 0x0);
619 pci_read_config_dword (dev, PCI_BASE_ADDRESS_0 + bar * 4,
620 &bar_response);
wdenkc6097192002-11-03 00:24:07 +0000621
wdenkbf9e3b32004-02-12 00:47:09 +0000622 pciauto_region_allocate (bar_response &
623 PCI_BASE_ADDRESS_SPACE_IO ? hose->
624 pci_io : hose->pci_mem, ide_bar[bar],
625 &bar_value);
wdenkc6097192002-11-03 00:24:07 +0000626
wdenkbf9e3b32004-02-12 00:47:09 +0000627 pci_write_config_dword (dev, PCI_BASE_ADDRESS_0 + bar * 4,
628 bar_value);
629 }
wdenkc6097192002-11-03 00:24:07 +0000630}
631
wdenkbf9e3b32004-02-12 00:47:09 +0000632static void gt_fixup_irq (struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000633{
wdenkbf9e3b32004-02-12 00:47:09 +0000634 unsigned char pin, irq;
wdenkc6097192002-11-03 00:24:07 +0000635
wdenkbf9e3b32004-02-12 00:47:09 +0000636 pci_read_config_byte (dev, PCI_INTERRUPT_PIN, &pin);
wdenkc6097192002-11-03 00:24:07 +0000637
wdenkbf9e3b32004-02-12 00:47:09 +0000638 if (pin == 1) { /* only allow INT A */
639 irq = pci_irq_swizzle[(PCI_HOST) hose->
640 cfg_addr][PCI_DEV (dev)];
641 if (irq)
642 pci_write_config_byte (dev, PCI_INTERRUPT_LINE, irq);
643 }
wdenkc6097192002-11-03 00:24:07 +0000644}
645
646struct pci_config_table gt_config_table[] = {
wdenkbf9e3b32004-02-12 00:47:09 +0000647 {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE,
648 PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, gt_setup_ide},
wdenkc6097192002-11-03 00:24:07 +0000649
wdenkbf9e3b32004-02-12 00:47:09 +0000650 {}
wdenkc6097192002-11-03 00:24:07 +0000651};
652
653struct pci_controller pci0_hose = {
wdenkbf9e3b32004-02-12 00:47:09 +0000654 fixup_irq:gt_fixup_irq,
655 config_table:gt_config_table,
wdenkc6097192002-11-03 00:24:07 +0000656};
657
658struct pci_controller pci1_hose = {
wdenkbf9e3b32004-02-12 00:47:09 +0000659 fixup_irq:gt_fixup_irq,
660 config_table:gt_config_table,
wdenkc6097192002-11-03 00:24:07 +0000661};
662
wdenkbf9e3b32004-02-12 00:47:09 +0000663void pci_init_board (void)
wdenkc6097192002-11-03 00:24:07 +0000664{
wdenkbf9e3b32004-02-12 00:47:09 +0000665 unsigned int command;
wdenkc6097192002-11-03 00:24:07 +0000666
wdenkbf9e3b32004-02-12 00:47:09 +0000667 pci0_hose.first_busno = 0;
668 pci0_hose.last_busno = 0xff;
669 local_buses[0] = pci0_hose.first_busno;
670 /* PCI memory space */
671 pci_set_region (pci0_hose.regions + 0,
672 CFG_PCI0_0_MEM_SPACE,
673 CFG_PCI0_0_MEM_SPACE,
674 CFG_PCI0_MEM_SIZE, PCI_REGION_MEM);
wdenkc6097192002-11-03 00:24:07 +0000675
wdenkbf9e3b32004-02-12 00:47:09 +0000676 /* PCI I/O space */
677 pci_set_region (pci0_hose.regions + 1,
678 CFG_PCI0_IO_SPACE_PCI,
679 CFG_PCI0_IO_SPACE, CFG_PCI0_IO_SIZE, PCI_REGION_IO);
wdenkc6097192002-11-03 00:24:07 +0000680
wdenkbf9e3b32004-02-12 00:47:09 +0000681 pci_set_ops (&pci0_hose,
682 pci_hose_read_config_byte_via_dword,
683 pci_hose_read_config_word_via_dword,
684 gt_read_config_dword,
685 pci_hose_write_config_byte_via_dword,
686 pci_hose_write_config_word_via_dword,
687 gt_write_config_dword);
wdenkc6097192002-11-03 00:24:07 +0000688
wdenkbf9e3b32004-02-12 00:47:09 +0000689 pci0_hose.region_count = 2;
wdenkc6097192002-11-03 00:24:07 +0000690
wdenkbf9e3b32004-02-12 00:47:09 +0000691 pci0_hose.cfg_addr = (unsigned int *) PCI_HOST0;
wdenkc6097192002-11-03 00:24:07 +0000692
wdenkbf9e3b32004-02-12 00:47:09 +0000693 pci_register_hose (&pci0_hose);
wdenkc6097192002-11-03 00:24:07 +0000694
wdenkbf9e3b32004-02-12 00:47:09 +0000695 pciArbiterEnable (PCI_HOST0);
696 pciParkingDisable (PCI_HOST0, 1, 1, 1, 1, 1, 1, 1);
wdenkc6097192002-11-03 00:24:07 +0000697
wdenkbf9e3b32004-02-12 00:47:09 +0000698 command = pciReadConfigReg (PCI_HOST0, PCI_COMMAND, SELF);
699 command |= PCI_COMMAND_MASTER;
700 pciWriteConfigReg (PCI_HOST0, PCI_COMMAND, SELF, command);
wdenkc6097192002-11-03 00:24:07 +0000701
wdenkbf9e3b32004-02-12 00:47:09 +0000702 pci0_hose.last_busno = pci_hose_scan (&pci0_hose);
wdenkc6097192002-11-03 00:24:07 +0000703
wdenkbf9e3b32004-02-12 00:47:09 +0000704 command = pciReadConfigReg (PCI_HOST0, PCI_COMMAND, SELF);
705 command |= PCI_COMMAND_MEMORY;
706 pciWriteConfigReg (PCI_HOST0, PCI_COMMAND, SELF, command);
wdenkc6097192002-11-03 00:24:07 +0000707
wdenkbf9e3b32004-02-12 00:47:09 +0000708 pci1_hose.first_busno = pci0_hose.last_busno + 1;
709 pci1_hose.last_busno = 0xff;
710 pci1_hose.current_busno = pci0_hose.current_busno;
711 local_buses[1] = pci1_hose.first_busno;
wdenkc6097192002-11-03 00:24:07 +0000712
wdenkbf9e3b32004-02-12 00:47:09 +0000713 /* PCI memory space */
714 pci_set_region (pci1_hose.regions + 0,
715 CFG_PCI1_0_MEM_SPACE,
716 CFG_PCI1_0_MEM_SPACE,
717 CFG_PCI1_MEM_SIZE, PCI_REGION_MEM);
wdenkc6097192002-11-03 00:24:07 +0000718
wdenkbf9e3b32004-02-12 00:47:09 +0000719 /* PCI I/O space */
720 pci_set_region (pci1_hose.regions + 1,
721 CFG_PCI1_IO_SPACE_PCI,
722 CFG_PCI1_IO_SPACE, CFG_PCI1_IO_SIZE, PCI_REGION_IO);
wdenkc6097192002-11-03 00:24:07 +0000723
wdenkbf9e3b32004-02-12 00:47:09 +0000724 pci_set_ops (&pci1_hose,
725 pci_hose_read_config_byte_via_dword,
726 pci_hose_read_config_word_via_dword,
727 gt_read_config_dword,
728 pci_hose_write_config_byte_via_dword,
729 pci_hose_write_config_word_via_dword,
730 gt_write_config_dword);
wdenkc6097192002-11-03 00:24:07 +0000731
wdenkbf9e3b32004-02-12 00:47:09 +0000732 pci1_hose.region_count = 2;
wdenkc6097192002-11-03 00:24:07 +0000733
wdenkbf9e3b32004-02-12 00:47:09 +0000734 pci1_hose.cfg_addr = (unsigned int *) PCI_HOST1;
wdenkc6097192002-11-03 00:24:07 +0000735
wdenkbf9e3b32004-02-12 00:47:09 +0000736 pci_register_hose (&pci1_hose);
wdenkc6097192002-11-03 00:24:07 +0000737
wdenkbf9e3b32004-02-12 00:47:09 +0000738 pciArbiterEnable (PCI_HOST1);
739 pciParkingDisable (PCI_HOST1, 1, 1, 1, 1, 1, 1, 1);
wdenkc6097192002-11-03 00:24:07 +0000740
wdenkbf9e3b32004-02-12 00:47:09 +0000741 command = pciReadConfigReg (PCI_HOST1, PCI_COMMAND, SELF);
742 command |= PCI_COMMAND_MASTER;
743 pciWriteConfigReg (PCI_HOST1, PCI_COMMAND, SELF, command);
wdenkc6097192002-11-03 00:24:07 +0000744
wdenkbf9e3b32004-02-12 00:47:09 +0000745 pci1_hose.last_busno = pci_hose_scan (&pci1_hose);
wdenkc6097192002-11-03 00:24:07 +0000746
wdenkbf9e3b32004-02-12 00:47:09 +0000747 command = pciReadConfigReg (PCI_HOST1, PCI_COMMAND, SELF);
748 command |= PCI_COMMAND_MEMORY;
749 pciWriteConfigReg (PCI_HOST1, PCI_COMMAND, SELF, command);
wdenkc6097192002-11-03 00:24:07 +0000750}