]> git.sur5r.net Git - u-boot/blob - drivers/pci/pci_auto.c
2338706b2f724ee79796979469651f37be09f80b
[u-boot] / drivers / pci / pci_auto.c
1 /*
2  * arch/powerpc/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 #include <pci.h>
19
20 #undef DEBUG
21 #ifdef DEBUG
22 #define DEBUGF(x...) printf(x)
23 #else
24 #define DEBUGF(x...)
25 #endif /* DEBUG */
26
27 #define PCIAUTO_IDE_MODE_MASK           0x05
28
29 /* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */
30 #ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE
31 #define CONFIG_SYS_PCI_CACHE_LINE_SIZE  8
32 #endif
33
34 /*
35  *
36  */
37
38 void pciauto_region_init(struct pci_region* res)
39 {
40         /*
41          * Avoid allocating PCI resources from address 0 -- this is illegal
42          * according to PCI 2.1 and moreover, this is known to cause Linux IDE
43          * drivers to fail. Use a reasonable starting value of 0x1000 instead.
44          */
45         res->bus_lower = res->bus_start ? res->bus_start : 0x1000;
46 }
47
48 void pciauto_region_align(struct pci_region *res, pci_size_t size)
49 {
50         res->bus_lower = ((res->bus_lower - 1) | (size - 1)) + 1;
51 }
52
53 int pciauto_region_allocate(struct pci_region* res, pci_size_t size, pci_addr_t *bar)
54 {
55         pci_addr_t addr;
56
57         if (!res) {
58                 DEBUGF("No resource");
59                 goto error;
60         }
61
62         addr = ((res->bus_lower - 1) | (size - 1)) + 1;
63
64         if (addr - res->bus_start + size > res->size) {
65                 DEBUGF("No room in resource");
66                 goto error;
67         }
68
69         res->bus_lower = addr + size;
70
71         DEBUGF("address=0x%llx bus_lower=0x%llx", (u64)addr, (u64)res->bus_lower);
72
73         *bar = addr;
74         return 0;
75
76  error:
77         *bar = (pci_addr_t)-1;
78         return -1;
79 }
80
81 /*
82  *
83  */
84
85 void pciauto_setup_device(struct pci_controller *hose,
86                           pci_dev_t dev, int bars_num,
87                           struct pci_region *mem,
88                           struct pci_region *prefetch,
89                           struct pci_region *io)
90 {
91         pci_addr_t bar_response;
92         pci_addr_t bar_value;
93         pci_size_t bar_size;
94         u16 cmdstat = 0;
95         struct pci_region *bar_res;
96         int bar, bar_nr = 0;
97         int found_mem64 = 0;
98
99         pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
100         cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
101
102         for (bar = PCI_BASE_ADDRESS_0; bar < PCI_BASE_ADDRESS_0 + (bars_num*4); bar += 4) {
103                 /* Tickle the BAR and get the response */
104                 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
105                 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
106
107                 /* If BAR is not implemented go to the next BAR */
108                 if (!bar_response)
109                         continue;
110
111                 found_mem64 = 0;
112
113                 /* Check the BAR type and set our address mask */
114                 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
115                         bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
116                                    & 0xffff) + 1;
117                         bar_res = io;
118
119                         DEBUGF("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ", bar_nr, (u64)bar_size);
120                 } else {
121                         if ( (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
122                              PCI_BASE_ADDRESS_MEM_TYPE_64) {
123                                 u32 bar_response_upper;
124                                 u64 bar64;
125                                 pci_hose_write_config_dword(hose, dev, bar+4, 0xffffffff);
126                                 pci_hose_read_config_dword(hose, dev, bar+4, &bar_response_upper);
127
128                                 bar64 = ((u64)bar_response_upper << 32) | bar_response;
129
130                                 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
131                                 found_mem64 = 1;
132                         } else {
133                                 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
134                         }
135                         if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
136                                 bar_res = prefetch;
137                         else
138                                 bar_res = mem;
139
140                         DEBUGF("PCI Autoconfig: BAR %d, Mem, size=0x%llx, ", bar_nr, (u64)bar_size);
141                 }
142
143                 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
144                         /* Write it out and update our limit */
145                         pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
146
147                         if (found_mem64) {
148                                 bar += 4;
149 #ifdef CONFIG_SYS_PCI_64BIT
150                                 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
151 #else
152                                 /*
153                                  * If we are a 64-bit decoder then increment to the
154                                  * upper 32 bits of the bar and force it to locate
155                                  * in the lower 4GB of memory.
156                                  */
157                                 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
158 #endif
159                         }
160
161                         cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
162                                 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
163                 }
164
165                 DEBUGF("\n");
166
167                 bar_nr++;
168         }
169
170         pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
171         pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
172                 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
173         pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
174 }
175
176 void pciauto_prescan_setup_bridge(struct pci_controller *hose,
177                                          pci_dev_t dev, int sub_bus)
178 {
179         struct pci_region *pci_mem = hose->pci_mem;
180         struct pci_region *pci_prefetch = hose->pci_prefetch;
181         struct pci_region *pci_io = hose->pci_io;
182         u16 cmdstat;
183
184         pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
185
186         /* Configure bus number registers */
187         pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
188                                    PCI_BUS(dev) - hose->first_busno);
189         pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
190                                    sub_bus - hose->first_busno);
191         pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
192
193         if (pci_mem) {
194                 /* Round memory allocator to 1MB boundary */
195                 pciauto_region_align(pci_mem, 0x100000);
196
197                 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
198                 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
199                                         (pci_mem->bus_lower & 0xfff00000) >> 16);
200
201                 cmdstat |= PCI_COMMAND_MEMORY;
202         }
203
204         if (pci_prefetch) {
205                 /* Round memory allocator to 1MB boundary */
206                 pciauto_region_align(pci_prefetch, 0x100000);
207
208                 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
209                 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
210                                         (pci_prefetch->bus_lower & 0xfff00000) >> 16);
211
212                 cmdstat |= PCI_COMMAND_MEMORY;
213         } else {
214                 /* We don't support prefetchable memory for now, so disable */
215                 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
216                 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
217         }
218
219         if (pci_io) {
220                 /* Round I/O allocator to 4KB boundary */
221                 pciauto_region_align(pci_io, 0x1000);
222
223                 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
224                                         (pci_io->bus_lower & 0x0000f000) >> 8);
225                 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
226                                         (pci_io->bus_lower & 0xffff0000) >> 16);
227
228                 cmdstat |= PCI_COMMAND_IO;
229         }
230
231         /* Enable memory and I/O accesses, enable bus master */
232         pci_hose_write_config_word(hose, dev, PCI_COMMAND,
233                                         cmdstat | PCI_COMMAND_MASTER);
234 }
235
236 void pciauto_postscan_setup_bridge(struct pci_controller *hose,
237                                           pci_dev_t dev, int sub_bus)
238 {
239         struct pci_region *pci_mem = hose->pci_mem;
240         struct pci_region *pci_prefetch = hose->pci_prefetch;
241         struct pci_region *pci_io = hose->pci_io;
242
243         /* Configure bus number registers */
244         pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
245                                    sub_bus - hose->first_busno);
246
247         if (pci_mem) {
248                 /* Round memory allocator to 1MB boundary */
249                 pciauto_region_align(pci_mem, 0x100000);
250
251                 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
252                                         (pci_mem->bus_lower-1) >> 16);
253         }
254
255         if (pci_prefetch) {
256                 /* Round memory allocator to 1MB boundary */
257                 pciauto_region_align(pci_prefetch, 0x100000);
258
259                 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
260                                         (pci_prefetch->bus_lower-1) >> 16);
261         }
262
263         if (pci_io) {
264                 /* Round I/O allocator to 4KB boundary */
265                 pciauto_region_align(pci_io, 0x1000);
266
267                 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
268                                         ((pci_io->bus_lower-1) & 0x0000f000) >> 8);
269                 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
270                                         ((pci_io->bus_lower-1) & 0xffff0000) >> 16);
271         }
272 }
273
274 /*
275  *
276  */
277
278 void pciauto_config_init(struct pci_controller *hose)
279 {
280         int i;
281
282         hose->pci_io = hose->pci_mem = NULL;
283
284         for (i=0; i<hose->region_count; i++) {
285                 switch(hose->regions[i].flags) {
286                 case PCI_REGION_IO:
287                         if (!hose->pci_io ||
288                             hose->pci_io->size < hose->regions[i].size)
289                                 hose->pci_io = hose->regions + i;
290                         break;
291                 case PCI_REGION_MEM:
292                         if (!hose->pci_mem ||
293                             hose->pci_mem->size < hose->regions[i].size)
294                                 hose->pci_mem = hose->regions + i;
295                         break;
296                 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
297                         if (!hose->pci_prefetch ||
298                             hose->pci_prefetch->size < hose->regions[i].size)
299                                 hose->pci_prefetch = hose->regions + i;
300                         break;
301                 }
302         }
303
304
305         if (hose->pci_mem) {
306                 pciauto_region_init(hose->pci_mem);
307
308                 DEBUGF("PCI Autoconfig: Bus Memory region: [0x%llx-0x%llx],\n"
309                        "\t\tPhysical Memory [%llx-%llxx]\n",
310                     (u64)hose->pci_mem->bus_start,
311                     (u64)(hose->pci_mem->bus_start + hose->pci_mem->size - 1),
312                     (u64)hose->pci_mem->phys_start,
313                     (u64)(hose->pci_mem->phys_start + hose->pci_mem->size - 1));
314         }
315
316         if (hose->pci_prefetch) {
317                 pciauto_region_init(hose->pci_prefetch);
318
319                 DEBUGF("PCI Autoconfig: Bus Prefetchable Mem: [0x%llx-0x%llx],\n"
320                        "\t\tPhysical Memory [%llx-%llx]\n",
321                     (u64)hose->pci_prefetch->bus_start,
322                     (u64)(hose->pci_prefetch->bus_start +
323                             hose->pci_prefetch->size - 1),
324                     (u64)hose->pci_prefetch->phys_start,
325                     (u64)(hose->pci_prefetch->phys_start +
326                             hose->pci_prefetch->size - 1));
327         }
328
329         if (hose->pci_io) {
330                 pciauto_region_init(hose->pci_io);
331
332                 DEBUGF("PCI Autoconfig: Bus I/O region: [0x%llx-0x%llx],\n"
333                        "\t\tPhysical Memory: [%llx-%llx]\n",
334                     (u64)hose->pci_io->bus_start,
335                     (u64)(hose->pci_io->bus_start + hose->pci_io->size - 1),
336                     (u64)hose->pci_io->phys_start,
337                     (u64)(hose->pci_io->phys_start + hose->pci_io->size - 1));
338
339         }
340 }
341
342 /* HJF: Changed this to return int. I think this is required
343  * to get the correct result when scanning bridges
344  */
345 int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
346 {
347         unsigned int sub_bus = PCI_BUS(dev);
348         unsigned short class;
349         unsigned char prg_iface;
350         int n;
351
352         pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
353
354         switch(class) {
355         case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
356                 DEBUGF("PCI AutoConfig: Found PowerPC device\n");
357                 pciauto_setup_device(hose, dev, 6, hose->pci_mem,
358                                      hose->pci_prefetch, hose->pci_io);
359                 break;
360
361         case PCI_CLASS_BRIDGE_PCI:
362                 hose->current_busno++;
363                 pciauto_setup_device(hose, dev, 2, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
364
365                 DEBUGF("PCI Autoconfig: Found P2P bridge, device %d\n", PCI_DEV(dev));
366
367                 /* Passing in current_busno allows for sibling P2P bridges */
368                 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
369                 /*
370                  * need to figure out if this is a subordinate bridge on the bus
371                  * to be able to properly set the pri/sec/sub bridge registers.
372                  */
373                 n = pci_hose_scan_bus(hose, hose->current_busno);
374
375                 /* figure out the deepest we've gone for this leg */
376                 sub_bus = max(n, sub_bus);
377                 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
378
379                 sub_bus = hose->current_busno;
380                 break;
381
382         case PCI_CLASS_STORAGE_IDE:
383                 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prg_iface);
384                 if (!(prg_iface & PCIAUTO_IDE_MODE_MASK)) {
385                         DEBUGF("PCI Autoconfig: Skipping legacy mode IDE controller\n");
386                         return sub_bus;
387                 }
388
389                 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
390                 break;
391
392         case PCI_CLASS_BRIDGE_CARDBUS:
393                 /* just do a minimal setup of the bridge, let the OS take care of the rest */
394                 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
395
396                 DEBUGF("PCI Autoconfig: Found P2CardBus bridge, device %d\n", PCI_DEV(dev));
397
398                 hose->current_busno++;
399                 break;
400
401 #if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
402         case PCI_CLASS_BRIDGE_OTHER:
403                 DEBUGF("PCI Autoconfig: Skipping bridge device %d\n",
404                        PCI_DEV(dev));
405                 break;
406 #endif
407 #if defined(CONFIG_MPC834x) && !defined(CONFIG_VME8349)
408         case PCI_CLASS_BRIDGE_OTHER:
409                 /*
410                  * The host/PCI bridge 1 seems broken in 8349 - it presents
411                  * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
412                  * device claiming resources io/mem/irq.. we only allow for
413                  * the PIMMR window to be allocated (BAR0 - 1MB size)
414                  */
415                 DEBUGF("PCI Autoconfig: Broken bridge found, only minimal config\n");
416                 pciauto_setup_device(hose, dev, 0, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
417                 break;
418 #endif
419         default:
420                 pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io);
421                 break;
422         }
423
424         return sub_bus;
425 }