blob: f170c2db89e066420771a5fbb813385905c9baf2 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * arch/ppc/kernel/pci_auto.c
3 *
4 * PCI autoconfiguration library
5 *
6 * Author: Matt Porter <mporter@mvista.com>
7 *
8 * Copyright 2000 MontaVista Software Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
16#include <common.h>
17
18#ifdef CONFIG_PCI
19
20#include <pci.h>
21
22#undef DEBUG
23#ifdef DEBUG
24#define DEBUGF(x...) printf(x)
25#else
26#define DEBUGF(x...)
27#endif /* DEBUG */
28
29#define PCIAUTO_IDE_MODE_MASK 0x05
30
31/*
32 *
33 */
34
35void pciauto_region_init(struct pci_region* res)
36{
Sergei Shtylyovb7598a42007-04-23 15:30:39 +020037 /*
38 * Avoid allocating PCI resources from address 0 -- this is illegal
39 * according to PCI 2.1 and moreover, this is known to cause Linux IDE
40 * drivers to fail. Use a reasonable starting value of 0x1000 instead.
41 */
42 res->bus_lower = res->bus_start ? res->bus_start : 0x1000;
wdenkc6097192002-11-03 00:24:07 +000043}
44
45void pciauto_region_align(struct pci_region *res, unsigned long size)
46{
47 res->bus_lower = ((res->bus_lower - 1) | (size - 1)) + 1;
48}
49
50int pciauto_region_allocate(struct pci_region* res, unsigned int size, unsigned int *bar)
51{
52 unsigned long addr;
53
wdenk3c74e322004-02-22 23:46:08 +000054 if (!res) {
wdenkc6097192002-11-03 00:24:07 +000055 DEBUGF("No resource");
56 goto error;
57 }
58
59 addr = ((res->bus_lower - 1) | (size - 1)) + 1;
60
wdenk3c74e322004-02-22 23:46:08 +000061 if (addr - res->bus_start + size > res->size) {
wdenkc6097192002-11-03 00:24:07 +000062 DEBUGF("No room in resource");
63 goto error;
64 }
65
66 res->bus_lower = addr + size;
67
68 DEBUGF("address=0x%lx", addr);
69
70 *bar = addr;
71 return 0;
72
73 error:
74 *bar = 0xffffffff;
75 return -1;
76}
77
78/*
79 *
80 */
81
82void pciauto_setup_device(struct pci_controller *hose,
83 pci_dev_t dev, int bars_num,
84 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -060085 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000086 struct pci_region *io)
87{
88 unsigned int bar_value, bar_response, bar_size;
89 unsigned int cmdstat = 0;
90 struct pci_region *bar_res;
91 int bar, bar_nr = 0;
92 int found_mem64 = 0;
93
94 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
95 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
96
wdenk3c74e322004-02-22 23:46:08 +000097 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_0 + (bars_num*4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000098 /* Tickle the BAR and get the response */
99 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
100 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
101
102 /* If BAR is not implemented go to the next BAR */
103 if (!bar_response)
104 continue;
105
106 found_mem64 = 0;
107
108 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +0000109 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +0800110 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
111 & 0xffff) + 1;
wdenkc6097192002-11-03 00:24:07 +0000112 bar_res = io;
113
114 DEBUGF("PCI Autoconfig: BAR %d, I/O, size=0x%x, ", bar_nr, bar_size);
wdenk3c74e322004-02-22 23:46:08 +0000115 } else {
wdenkc6097192002-11-03 00:24:07 +0000116 if ( (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
117 PCI_BASE_ADDRESS_MEM_TYPE_64)
118 found_mem64 = 1;
119
120 bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Kumar Galaa1790122006-01-11 13:24:15 -0600121 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
122 bar_res = prefetch;
123 else
124 bar_res = mem;
wdenkc6097192002-11-03 00:24:07 +0000125
126 DEBUGF("PCI Autoconfig: BAR %d, Mem, size=0x%x, ", bar_nr, bar_size);
127 }
128
wdenk3c74e322004-02-22 23:46:08 +0000129 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000130 /* Write it out and update our limit */
131 pci_hose_write_config_dword(hose, dev, bar, bar_value);
132
133 /*
134 * If we are a 64-bit decoder then increment to the
135 * upper 32 bits of the bar and force it to locate
136 * in the lower 4GB of memory.
137 */
wdenk3c74e322004-02-22 23:46:08 +0000138 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000139 bar += 4;
140 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
141 }
142
143 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
144 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
145 }
146
147 DEBUGF("\n");
148
149 bar_nr++;
150 }
151
152 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);
153 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
154 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
155}
156
157static void pciauto_prescan_setup_bridge(struct pci_controller *hose,
158 pci_dev_t dev, int sub_bus)
159{
160 struct pci_region *pci_mem = hose->pci_mem;
Kumar Galaa1790122006-01-11 13:24:15 -0600161 struct pci_region *pci_prefetch = hose->pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000162 struct pci_region *pci_io = hose->pci_io;
163 unsigned int cmdstat;
164
165 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
166
167 /* Configure bus number registers */
168 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS, PCI_BUS(dev));
wdenk5653fc32004-02-08 22:55:38 +0000169 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS, sub_bus);
wdenkc6097192002-11-03 00:24:07 +0000170 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
171
wdenk3c74e322004-02-22 23:46:08 +0000172 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000173 /* Round memory allocator to 1MB boundary */
174 pciauto_region_align(pci_mem, 0x100000);
175
176 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
177 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
178 (pci_mem->bus_lower & 0xfff00000) >> 16);
179
180 cmdstat |= PCI_COMMAND_MEMORY;
181 }
182
Kumar Galaa1790122006-01-11 13:24:15 -0600183 if (pci_prefetch) {
184 /* Round memory allocator to 1MB boundary */
185 pciauto_region_align(pci_prefetch, 0x100000);
186
187 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
188 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
189 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
190
191 cmdstat |= PCI_COMMAND_MEMORY;
192 } else {
193 /* We don't support prefetchable memory for now, so disable */
194 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500195 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
Kumar Galaa1790122006-01-11 13:24:15 -0600196 }
197
wdenk3c74e322004-02-22 23:46:08 +0000198 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000199 /* Round I/O allocator to 4KB boundary */
200 pciauto_region_align(pci_io, 0x1000);
201
202 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
203 (pci_io->bus_lower & 0x0000f000) >> 8);
204 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
205 (pci_io->bus_lower & 0xffff0000) >> 16);
206
207 cmdstat |= PCI_COMMAND_IO;
208 }
209
wdenkc6097192002-11-03 00:24:07 +0000210 /* Enable memory and I/O accesses, enable bus master */
211 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat | PCI_COMMAND_MASTER);
212}
213
214static void pciauto_postscan_setup_bridge(struct pci_controller *hose,
215 pci_dev_t dev, int sub_bus)
216{
217 struct pci_region *pci_mem = hose->pci_mem;
Kumar Galaa1790122006-01-11 13:24:15 -0600218 struct pci_region *pci_prefetch = hose->pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000219 struct pci_region *pci_io = hose->pci_io;
220
221 /* Configure bus number registers */
222 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, sub_bus);
223
wdenk3c74e322004-02-22 23:46:08 +0000224 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000225 /* Round memory allocator to 1MB boundary */
226 pciauto_region_align(pci_mem, 0x100000);
227
228 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
229 (pci_mem->bus_lower-1) >> 16);
230 }
231
Kumar Galaa1790122006-01-11 13:24:15 -0600232 if (pci_prefetch) {
233 /* Round memory allocator to 1MB boundary */
234 pciauto_region_align(pci_prefetch, 0x100000);
235
236 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
237 (pci_prefetch->bus_lower-1) >> 16);
238 }
239
wdenk3c74e322004-02-22 23:46:08 +0000240 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000241 /* Round I/O allocator to 4KB boundary */
242 pciauto_region_align(pci_io, 0x1000);
243
244 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
245 ((pci_io->bus_lower-1) & 0x0000f000) >> 8);
246 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
247 ((pci_io->bus_lower-1) & 0xffff0000) >> 16);
248 }
249}
250
251/*
252 *
253 */
254
255void pciauto_config_init(struct pci_controller *hose)
256{
257 int i;
258
259 hose->pci_io = hose->pci_mem = NULL;
260
wdenk3c74e322004-02-22 23:46:08 +0000261 for (i=0; i<hose->region_count; i++) {
262 switch(hose->regions[i].flags) {
wdenkc6097192002-11-03 00:24:07 +0000263 case PCI_REGION_IO:
264 if (!hose->pci_io ||
265 hose->pci_io->size < hose->regions[i].size)
266 hose->pci_io = hose->regions + i;
267 break;
268 case PCI_REGION_MEM:
269 if (!hose->pci_mem ||
270 hose->pci_mem->size < hose->regions[i].size)
271 hose->pci_mem = hose->regions + i;
272 break;
Kumar Galaa1790122006-01-11 13:24:15 -0600273 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
274 if (!hose->pci_prefetch ||
275 hose->pci_prefetch->size < hose->regions[i].size)
276 hose->pci_prefetch = hose->regions + i;
277 break;
wdenkc6097192002-11-03 00:24:07 +0000278 }
279 }
280
281
wdenk3c74e322004-02-22 23:46:08 +0000282 if (hose->pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000283 pciauto_region_init(hose->pci_mem);
284
285 DEBUGF("PCI Autoconfig: Memory region: [%lx-%lx]\n",
286 hose->pci_mem->bus_start,
287 hose->pci_mem->bus_start + hose->pci_mem->size - 1);
288 }
289
Kumar Galaa1790122006-01-11 13:24:15 -0600290 if (hose->pci_prefetch) {
291 pciauto_region_init(hose->pci_prefetch);
292
293 DEBUGF("PCI Autoconfig: Prefetchable Memory region: [%lx-%lx]\n",
294 hose->pci_prefetch->bus_start,
295 hose->pci_prefetch->bus_start + hose->pci_prefetch->size - 1);
296 }
297
wdenk3c74e322004-02-22 23:46:08 +0000298 if (hose->pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000299 pciauto_region_init(hose->pci_io);
300
301 DEBUGF("PCI Autoconfig: I/O region: [%lx-%lx]\n",
302 hose->pci_io->bus_start,
303 hose->pci_io->bus_start + hose->pci_io->size - 1);
304 }
305}
306
wdenkc7de8292002-11-19 11:04:11 +0000307/* HJF: Changed this to return int. I think this is required
308 * to get the correct result when scanning bridges
309 */
310int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000311{
wdenkc7de8292002-11-19 11:04:11 +0000312 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000313 unsigned short class;
314 unsigned char prg_iface;
wdenk5653fc32004-02-08 22:55:38 +0000315 int n;
wdenkc6097192002-11-03 00:24:07 +0000316
317 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
318
wdenk3c74e322004-02-22 23:46:08 +0000319 switch(class) {
wdenkc6097192002-11-03 00:24:07 +0000320 case PCI_CLASS_BRIDGE_PCI:
wdenkdb2f721f2003-03-06 00:58:30 +0000321 hose->current_busno++;
Kumar Galaa1790122006-01-11 13:24:15 -0600322 pciauto_setup_device(hose, dev, 2, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000323
wdenkdb2f721f2003-03-06 00:58:30 +0000324 DEBUGF("PCI Autoconfig: Found P2P bridge, device %d\n", PCI_DEV(dev));
wdenkcd37d9e2004-02-10 00:03:41 +0000325
wdenk3c74e322004-02-22 23:46:08 +0000326 /* Passing in current_busno allows for sibling P2P bridges */
wdenk5653fc32004-02-08 22:55:38 +0000327 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000328 /*
wdenk3c74e322004-02-22 23:46:08 +0000329 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000330 * to be able to properly set the pri/sec/sub bridge registers.
331 */
332 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000333
wdenk3c74e322004-02-22 23:46:08 +0000334 /* figure out the deepest we've gone for this leg */
wdenk5653fc32004-02-08 22:55:38 +0000335 sub_bus = max(n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000336 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000337
wdenkdb2f721f2003-03-06 00:58:30 +0000338 sub_bus = hose->current_busno;
wdenkc6097192002-11-03 00:24:07 +0000339 break;
340
341 case PCI_CLASS_STORAGE_IDE:
342 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prg_iface);
wdenk3c74e322004-02-22 23:46:08 +0000343 if (!(prg_iface & PCIAUTO_IDE_MODE_MASK)) {
344 DEBUGF("PCI Autoconfig: Skipping legacy mode IDE controller\n");
345 return sub_bus;
346 }
wdenkc6097192002-11-03 00:24:07 +0000347
Kumar Galaa1790122006-01-11 13:24:15 -0600348 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000349 break;
350
wdenk1cb8e982003-03-06 21:55:29 +0000351 case PCI_CLASS_BRIDGE_CARDBUS:
352 /* just do a minimal setup of the bridge, let the OS take care of the rest */
Kumar Galaa1790122006-01-11 13:24:15 -0600353 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000354
wdenk3c74e322004-02-22 23:46:08 +0000355 DEBUGF("PCI Autoconfig: Found P2CardBus bridge, device %d\n", PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000356
357 hose->current_busno++;
358 break;
359
wdenke0ac62d2003-08-17 18:55:18 +0000360#ifdef CONFIG_MPC5200
361 case PCI_CLASS_BRIDGE_OTHER:
362 DEBUGF("PCI Autoconfig: Skipping bridge device %d\n",
363 PCI_DEV(dev));
364 break;
365#endif
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200366#ifdef CONFIG_MPC834X
367 case PCI_CLASS_BRIDGE_OTHER:
368 /*
369 * The host/PCI bridge 1 seems broken in 8349 - it presents
370 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
371 * device claiming resources io/mem/irq.. we only allow for
372 * the PIMMR window to be allocated (BAR0 - 1MB size)
373 */
374 DEBUGF("PCI Autoconfig: Broken bridge found, only minimal config\n");
Kumar Galaa1790122006-01-11 13:24:15 -0600375 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200376 break;
377#endif
wdenkc6097192002-11-03 00:24:07 +0000378 default:
Kumar Galaa1790122006-01-11 13:24:15 -0600379 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000380 break;
381 }
wdenkc7de8292002-11-19 11:04:11 +0000382
383 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000384}
385
386#endif /* CONFIG_PCI */