blob: 969167555ea27369008b7c5b53dc76f75bc9a46f [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{
37 res->bus_lower = res->bus_start;
38}
39
40void pciauto_region_align(struct pci_region *res, unsigned long size)
41{
42 res->bus_lower = ((res->bus_lower - 1) | (size - 1)) + 1;
43}
44
45int pciauto_region_allocate(struct pci_region* res, unsigned int size, unsigned int *bar)
46{
47 unsigned long addr;
48
wdenk3c74e322004-02-22 23:46:08 +000049 if (!res) {
wdenkc6097192002-11-03 00:24:07 +000050 DEBUGF("No resource");
51 goto error;
52 }
53
54 addr = ((res->bus_lower - 1) | (size - 1)) + 1;
55
wdenk3c74e322004-02-22 23:46:08 +000056 if (addr - res->bus_start + size > res->size) {
wdenkc6097192002-11-03 00:24:07 +000057 DEBUGF("No room in resource");
58 goto error;
59 }
60
61 res->bus_lower = addr + size;
62
63 DEBUGF("address=0x%lx", addr);
64
65 *bar = addr;
66 return 0;
67
68 error:
69 *bar = 0xffffffff;
70 return -1;
71}
72
73/*
74 *
75 */
76
77void pciauto_setup_device(struct pci_controller *hose,
78 pci_dev_t dev, int bars_num,
79 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -060080 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000081 struct pci_region *io)
82{
83 unsigned int bar_value, bar_response, bar_size;
84 unsigned int cmdstat = 0;
85 struct pci_region *bar_res;
86 int bar, bar_nr = 0;
87 int found_mem64 = 0;
88
89 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
90 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
91
wdenk3c74e322004-02-22 23:46:08 +000092 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_0 + (bars_num*4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000093 /* Tickle the BAR and get the response */
94 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
95 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
96
97 /* If BAR is not implemented go to the next BAR */
98 if (!bar_response)
99 continue;
100
101 found_mem64 = 0;
102
103 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +0000104 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +0800105 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
106 & 0xffff) + 1;
wdenkc6097192002-11-03 00:24:07 +0000107 bar_res = io;
108
109 DEBUGF("PCI Autoconfig: BAR %d, I/O, size=0x%x, ", bar_nr, bar_size);
wdenk3c74e322004-02-22 23:46:08 +0000110 } else {
wdenkc6097192002-11-03 00:24:07 +0000111 if ( (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
112 PCI_BASE_ADDRESS_MEM_TYPE_64)
113 found_mem64 = 1;
114
115 bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Kumar Galaa1790122006-01-11 13:24:15 -0600116 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
117 bar_res = prefetch;
118 else
119 bar_res = mem;
wdenkc6097192002-11-03 00:24:07 +0000120
121 DEBUGF("PCI Autoconfig: BAR %d, Mem, size=0x%x, ", bar_nr, bar_size);
122 }
123
wdenk3c74e322004-02-22 23:46:08 +0000124 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000125 /* Write it out and update our limit */
126 pci_hose_write_config_dword(hose, dev, bar, bar_value);
127
128 /*
129 * If we are a 64-bit decoder then increment to the
130 * upper 32 bits of the bar and force it to locate
131 * in the lower 4GB of memory.
132 */
wdenk3c74e322004-02-22 23:46:08 +0000133 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000134 bar += 4;
135 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
136 }
137
138 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
139 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
140 }
141
142 DEBUGF("\n");
143
144 bar_nr++;
145 }
146
147 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);
148 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
149 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
150}
151
152static void pciauto_prescan_setup_bridge(struct pci_controller *hose,
153 pci_dev_t dev, int sub_bus)
154{
155 struct pci_region *pci_mem = hose->pci_mem;
Kumar Galaa1790122006-01-11 13:24:15 -0600156 struct pci_region *pci_prefetch = hose->pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000157 struct pci_region *pci_io = hose->pci_io;
158 unsigned int cmdstat;
159
160 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
161
162 /* Configure bus number registers */
163 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS, PCI_BUS(dev));
wdenk5653fc32004-02-08 22:55:38 +0000164 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS, sub_bus);
wdenkc6097192002-11-03 00:24:07 +0000165 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
166
wdenk3c74e322004-02-22 23:46:08 +0000167 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000168 /* Round memory allocator to 1MB boundary */
169 pciauto_region_align(pci_mem, 0x100000);
170
171 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
172 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
173 (pci_mem->bus_lower & 0xfff00000) >> 16);
174
175 cmdstat |= PCI_COMMAND_MEMORY;
176 }
177
Kumar Galaa1790122006-01-11 13:24:15 -0600178 if (pci_prefetch) {
179 /* Round memory allocator to 1MB boundary */
180 pciauto_region_align(pci_prefetch, 0x100000);
181
182 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
183 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
184 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
185
186 cmdstat |= PCI_COMMAND_MEMORY;
187 } else {
188 /* We don't support prefetchable memory for now, so disable */
189 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500190 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
Kumar Galaa1790122006-01-11 13:24:15 -0600191 }
192
wdenk3c74e322004-02-22 23:46:08 +0000193 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000194 /* Round I/O allocator to 4KB boundary */
195 pciauto_region_align(pci_io, 0x1000);
196
197 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
198 (pci_io->bus_lower & 0x0000f000) >> 8);
199 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
200 (pci_io->bus_lower & 0xffff0000) >> 16);
201
202 cmdstat |= PCI_COMMAND_IO;
203 }
204
wdenkc6097192002-11-03 00:24:07 +0000205 /* Enable memory and I/O accesses, enable bus master */
206 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat | PCI_COMMAND_MASTER);
207}
208
209static void pciauto_postscan_setup_bridge(struct pci_controller *hose,
210 pci_dev_t dev, int sub_bus)
211{
212 struct pci_region *pci_mem = hose->pci_mem;
Kumar Galaa1790122006-01-11 13:24:15 -0600213 struct pci_region *pci_prefetch = hose->pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000214 struct pci_region *pci_io = hose->pci_io;
215
216 /* Configure bus number registers */
217 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, sub_bus);
218
wdenk3c74e322004-02-22 23:46:08 +0000219 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000220 /* Round memory allocator to 1MB boundary */
221 pciauto_region_align(pci_mem, 0x100000);
222
223 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
224 (pci_mem->bus_lower-1) >> 16);
225 }
226
Kumar Galaa1790122006-01-11 13:24:15 -0600227 if (pci_prefetch) {
228 /* Round memory allocator to 1MB boundary */
229 pciauto_region_align(pci_prefetch, 0x100000);
230
231 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
232 (pci_prefetch->bus_lower-1) >> 16);
233 }
234
wdenk3c74e322004-02-22 23:46:08 +0000235 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000236 /* Round I/O allocator to 4KB boundary */
237 pciauto_region_align(pci_io, 0x1000);
238
239 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
240 ((pci_io->bus_lower-1) & 0x0000f000) >> 8);
241 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
242 ((pci_io->bus_lower-1) & 0xffff0000) >> 16);
243 }
244}
245
246/*
247 *
248 */
249
250void pciauto_config_init(struct pci_controller *hose)
251{
252 int i;
253
254 hose->pci_io = hose->pci_mem = NULL;
255
wdenk3c74e322004-02-22 23:46:08 +0000256 for (i=0; i<hose->region_count; i++) {
257 switch(hose->regions[i].flags) {
wdenkc6097192002-11-03 00:24:07 +0000258 case PCI_REGION_IO:
259 if (!hose->pci_io ||
260 hose->pci_io->size < hose->regions[i].size)
261 hose->pci_io = hose->regions + i;
262 break;
263 case PCI_REGION_MEM:
264 if (!hose->pci_mem ||
265 hose->pci_mem->size < hose->regions[i].size)
266 hose->pci_mem = hose->regions + i;
267 break;
Kumar Galaa1790122006-01-11 13:24:15 -0600268 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
269 if (!hose->pci_prefetch ||
270 hose->pci_prefetch->size < hose->regions[i].size)
271 hose->pci_prefetch = hose->regions + i;
272 break;
wdenkc6097192002-11-03 00:24:07 +0000273 }
274 }
275
276
wdenk3c74e322004-02-22 23:46:08 +0000277 if (hose->pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000278 pciauto_region_init(hose->pci_mem);
279
280 DEBUGF("PCI Autoconfig: Memory region: [%lx-%lx]\n",
281 hose->pci_mem->bus_start,
282 hose->pci_mem->bus_start + hose->pci_mem->size - 1);
283 }
284
Kumar Galaa1790122006-01-11 13:24:15 -0600285 if (hose->pci_prefetch) {
286 pciauto_region_init(hose->pci_prefetch);
287
288 DEBUGF("PCI Autoconfig: Prefetchable Memory region: [%lx-%lx]\n",
289 hose->pci_prefetch->bus_start,
290 hose->pci_prefetch->bus_start + hose->pci_prefetch->size - 1);
291 }
292
wdenk3c74e322004-02-22 23:46:08 +0000293 if (hose->pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000294 pciauto_region_init(hose->pci_io);
295
296 DEBUGF("PCI Autoconfig: I/O region: [%lx-%lx]\n",
297 hose->pci_io->bus_start,
298 hose->pci_io->bus_start + hose->pci_io->size - 1);
299 }
300}
301
wdenkc7de8292002-11-19 11:04:11 +0000302/* HJF: Changed this to return int. I think this is required
303 * to get the correct result when scanning bridges
304 */
305int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000306{
wdenkc7de8292002-11-19 11:04:11 +0000307 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000308 unsigned short class;
309 unsigned char prg_iface;
wdenk5653fc32004-02-08 22:55:38 +0000310 int n;
wdenkc6097192002-11-03 00:24:07 +0000311
312 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
313
wdenk3c74e322004-02-22 23:46:08 +0000314 switch(class) {
wdenkc6097192002-11-03 00:24:07 +0000315 case PCI_CLASS_BRIDGE_PCI:
wdenkdb2f721f2003-03-06 00:58:30 +0000316 hose->current_busno++;
Kumar Galaa1790122006-01-11 13:24:15 -0600317 pciauto_setup_device(hose, dev, 2, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000318
wdenkdb2f721f2003-03-06 00:58:30 +0000319 DEBUGF("PCI Autoconfig: Found P2P bridge, device %d\n", PCI_DEV(dev));
wdenkcd37d9e2004-02-10 00:03:41 +0000320
wdenk3c74e322004-02-22 23:46:08 +0000321 /* Passing in current_busno allows for sibling P2P bridges */
wdenk5653fc32004-02-08 22:55:38 +0000322 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000323 /*
wdenk3c74e322004-02-22 23:46:08 +0000324 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000325 * to be able to properly set the pri/sec/sub bridge registers.
326 */
327 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000328
wdenk3c74e322004-02-22 23:46:08 +0000329 /* figure out the deepest we've gone for this leg */
wdenk5653fc32004-02-08 22:55:38 +0000330 sub_bus = max(n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000331 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000332
wdenkdb2f721f2003-03-06 00:58:30 +0000333 sub_bus = hose->current_busno;
wdenkc6097192002-11-03 00:24:07 +0000334 break;
335
336 case PCI_CLASS_STORAGE_IDE:
337 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prg_iface);
wdenk3c74e322004-02-22 23:46:08 +0000338 if (!(prg_iface & PCIAUTO_IDE_MODE_MASK)) {
339 DEBUGF("PCI Autoconfig: Skipping legacy mode IDE controller\n");
340 return sub_bus;
341 }
wdenkc6097192002-11-03 00:24:07 +0000342
Kumar Galaa1790122006-01-11 13:24:15 -0600343 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000344 break;
345
wdenk1cb8e982003-03-06 21:55:29 +0000346 case PCI_CLASS_BRIDGE_CARDBUS:
347 /* just do a minimal setup of the bridge, let the OS take care of the rest */
Kumar Galaa1790122006-01-11 13:24:15 -0600348 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000349
wdenk3c74e322004-02-22 23:46:08 +0000350 DEBUGF("PCI Autoconfig: Found P2CardBus bridge, device %d\n", PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000351
352 hose->current_busno++;
353 break;
354
wdenke0ac62d2003-08-17 18:55:18 +0000355#ifdef CONFIG_MPC5200
356 case PCI_CLASS_BRIDGE_OTHER:
357 DEBUGF("PCI Autoconfig: Skipping bridge device %d\n",
358 PCI_DEV(dev));
359 break;
360#endif
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200361#ifdef CONFIG_MPC834X
362 case PCI_CLASS_BRIDGE_OTHER:
363 /*
364 * The host/PCI bridge 1 seems broken in 8349 - it presents
365 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
366 * device claiming resources io/mem/irq.. we only allow for
367 * the PIMMR window to be allocated (BAR0 - 1MB size)
368 */
369 DEBUGF("PCI Autoconfig: Broken bridge found, only minimal config\n");
Kumar Galaa1790122006-01-11 13:24:15 -0600370 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200371 break;
372#endif
wdenkc6097192002-11-03 00:24:07 +0000373 default:
Kumar Galaa1790122006-01-11 13:24:15 -0600374 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
wdenkc6097192002-11-03 00:24:07 +0000375 break;
376 }
wdenkc7de8292002-11-19 11:04:11 +0000377
378 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000379}
380
381#endif /* CONFIG_PCI */