blob: c56ff53c4f9f326ad7a0df826b5ab12a693ea474 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
Simon Glass0ba553a2015-11-29 13:17:46 -07003 * PCI autoconfiguration library (legacy version, do not change)
wdenkc6097192002-11-03 00:24:07 +00004 *
5 * Author: Matt Porter <mporter@mvista.com>
6 *
7 * Copyright 2000 MontaVista Software Inc.
wdenkc6097192002-11-03 00:24:07 +00008 */
9
10#include <common.h>
Simon Glass1c1695b2015-01-14 21:37:04 -070011#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
wdenkc6097192002-11-03 00:24:07 +000013#include <pci.h>
14
Simon Glass0ba553a2015-11-29 13:17:46 -070015/*
16 * Do not change this file. Instead, convert your board to use CONFIG_DM_PCI
17 * and change pci_auto.c.
18 */
19
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020020/* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */
21#ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE
22#define CONFIG_SYS_PCI_CACHE_LINE_SIZE 8
Gary Jennejohn9a1263f2007-08-31 15:21:46 +020023#endif
24
wdenkc6097192002-11-03 00:24:07 +000025/*
26 *
27 */
28
wdenkc6097192002-11-03 00:24:07 +000029void pciauto_setup_device(struct pci_controller *hose,
30 pci_dev_t dev, int bars_num,
31 struct pci_region *mem,
Kumar Galae5ce4202006-01-11 13:24:15 -060032 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000033 struct pci_region *io)
34{
Kumar Gala1873d5c2012-09-19 04:47:36 +000035 u32 bar_response;
Kumar Galaad714f52008-10-21 08:36:08 -050036 pci_size_t bar_size;
Andrew Sharpf4f24822012-08-01 12:27:16 +000037 u16 cmdstat = 0;
wdenkc6097192002-11-03 00:24:07 +000038 int bar, bar_nr = 0;
Bin Meng51e98ca2015-07-08 13:06:40 +080039 u8 header_type;
40 int rom_addr;
Andrew Sharp61d47ca2012-08-29 14:16:32 +000041 pci_addr_t bar_value;
42 struct pci_region *bar_res;
wdenkc6097192002-11-03 00:24:07 +000043 int found_mem64 = 0;
Bin Meng9dd7c002015-10-01 00:35:59 -070044 u16 class;
wdenkc6097192002-11-03 00:24:07 +000045
Andrew Sharpf4f24822012-08-01 12:27:16 +000046 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
wdenkc6097192002-11-03 00:24:07 +000047 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
48
Andrew Sharp68705132012-08-29 14:16:29 +000049 for (bar = PCI_BASE_ADDRESS_0;
50 bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000051 /* Tickle the BAR and get the response */
52 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
53 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
54
55 /* If BAR is not implemented go to the next BAR */
56 if (!bar_response)
57 continue;
58
59 found_mem64 = 0;
60
61 /* Check the BAR type and set our address mask */
wdenk56ed43e2004-02-22 23:46:08 +000062 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188f4ff3e82006-06-27 18:12:02 +080063 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
64 & 0xffff) + 1;
wdenkc6097192002-11-03 00:24:07 +000065 bar_res = io;
66
Simon Glass927c1042015-07-31 09:31:33 -060067 debug("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ",
68 bar_nr, (unsigned long long)bar_size);
wdenk56ed43e2004-02-22 23:46:08 +000069 } else {
Andrew Sharp68705132012-08-29 14:16:29 +000070 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Galaad714f52008-10-21 08:36:08 -050071 PCI_BASE_ADDRESS_MEM_TYPE_64) {
72 u32 bar_response_upper;
73 u64 bar64;
Andrew Sharp61d47ca2012-08-29 14:16:32 +000074
Andrew Sharp68705132012-08-29 14:16:29 +000075 pci_hose_write_config_dword(hose, dev, bar + 4,
76 0xffffffff);
77 pci_hose_read_config_dword(hose, dev, bar + 4,
78 &bar_response_upper);
Kumar Galaad714f52008-10-21 08:36:08 -050079
80 bar64 = ((u64)bar_response_upper << 32) | bar_response;
wdenkc6097192002-11-03 00:24:07 +000081
Kumar Galaad714f52008-10-21 08:36:08 -050082 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
83 found_mem64 = 1;
84 } else {
85 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
86 }
Kumar Galae5ce4202006-01-11 13:24:15 -060087 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
88 bar_res = prefetch;
89 else
90 bar_res = mem;
wdenkc6097192002-11-03 00:24:07 +000091
Simon Glassa292d2a2015-07-27 15:47:18 -060092 debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ",
93 bar_nr, bar_res == prefetch ? "Prf" : "Mem",
94 (unsigned long long)bar_size);
wdenkc6097192002-11-03 00:24:07 +000095 }
96
Tuomas Tynkkynenf20b7182018-05-14 19:38:13 +030097 if (pciauto_region_allocate(bar_res, bar_size,
98 &bar_value, found_mem64) == 0) {
wdenkc6097192002-11-03 00:24:07 +000099 /* Write it out and update our limit */
Kumar Galaad714f52008-10-21 08:36:08 -0500100 pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000101
wdenk56ed43e2004-02-22 23:46:08 +0000102 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000103 bar += 4;
Kumar Galaad714f52008-10-21 08:36:08 -0500104#ifdef CONFIG_SYS_PCI_64BIT
105 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
106#else
107 /*
108 * If we are a 64-bit decoder then increment to the
109 * upper 32 bits of the bar and force it to locate
110 * in the lower 4GB of memory.
111 */
wdenkc6097192002-11-03 00:24:07 +0000112 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Galaad714f52008-10-21 08:36:08 -0500113#endif
wdenkc6097192002-11-03 00:24:07 +0000114 }
115
wdenkc6097192002-11-03 00:24:07 +0000116 }
Andrew Sharp61d47ca2012-08-29 14:16:32 +0000117 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
118 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
wdenkc6097192002-11-03 00:24:07 +0000119
Simon Glass927c1042015-07-31 09:31:33 -0600120 debug("\n");
wdenkc6097192002-11-03 00:24:07 +0000121
122 bar_nr++;
123 }
124
Bin Meng51e98ca2015-07-08 13:06:40 +0800125 /* Configure the expansion ROM address */
126 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
Bin Menge8bd7462015-10-07 02:13:18 -0700127 header_type &= 0x7f;
Bin Meng51e98ca2015-07-08 13:06:40 +0800128 if (header_type != PCI_HEADER_TYPE_CARDBUS) {
129 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
130 PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
131 pci_hose_write_config_dword(hose, dev, rom_addr, 0xfffffffe);
132 pci_hose_read_config_dword(hose, dev, rom_addr, &bar_response);
133 if (bar_response) {
134 bar_size = -(bar_response & ~1);
Simon Glass927c1042015-07-31 09:31:33 -0600135 debug("PCI Autoconfig: ROM, size=%#x, ",
136 (unsigned int)bar_size);
Bin Meng51e98ca2015-07-08 13:06:40 +0800137 if (pciauto_region_allocate(mem, bar_size,
Tuomas Tynkkynenf20b7182018-05-14 19:38:13 +0300138 &bar_value, false) == 0) {
Bin Meng51e98ca2015-07-08 13:06:40 +0800139 pci_hose_write_config_dword(hose, dev, rom_addr,
140 bar_value);
141 }
142 cmdstat |= PCI_COMMAND_MEMORY;
Simon Glass927c1042015-07-31 09:31:33 -0600143 debug("\n");
Bin Meng51e98ca2015-07-08 13:06:40 +0800144 }
145 }
146
Bin Meng9dd7c002015-10-01 00:35:59 -0700147 /* PCI_COMMAND_IO must be set for VGA device */
148 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
149 if (class == PCI_CLASS_DISPLAY_VGA)
150 cmdstat |= PCI_COMMAND_IO;
151
Andrew Sharpf4f24822012-08-01 12:27:16 +0000152 pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
Gary Jennejohn9a1263f2007-08-31 15:21:46 +0200153 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200154 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000155 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
156}
157
Ed Swarthouta5232962007-07-11 14:51:48 -0500158void pciauto_prescan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000159 pci_dev_t dev, int sub_bus)
160{
Bin Meng39164092015-07-19 00:20:06 +0800161 struct pci_region *pci_mem;
162 struct pci_region *pci_prefetch;
163 struct pci_region *pci_io;
David Feng3be54fd2015-02-02 16:53:13 +0800164 u16 cmdstat, prefechable_64;
wdenkc6097192002-11-03 00:24:07 +0000165
Bin Meng39164092015-07-19 00:20:06 +0800166 pci_mem = hose->pci_mem;
167 pci_prefetch = hose->pci_prefetch;
168 pci_io = hose->pci_io;
Bin Meng39164092015-07-19 00:20:06 +0800169
Andrew Sharpf4f24822012-08-01 12:27:16 +0000170 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
David Feng3be54fd2015-02-02 16:53:13 +0800171 pci_hose_read_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
172 &prefechable_64);
173 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
wdenkc6097192002-11-03 00:24:07 +0000174
175 /* Configure bus number registers */
Ed Swarthout4aeb55a2007-07-11 14:52:08 -0500176 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
177 PCI_BUS(dev) - hose->first_busno);
178 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
179 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000180 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
181
wdenk56ed43e2004-02-22 23:46:08 +0000182 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000183 /* Round memory allocator to 1MB boundary */
184 pciauto_region_align(pci_mem, 0x100000);
185
186 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
187 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
188 (pci_mem->bus_lower & 0xfff00000) >> 16);
189
190 cmdstat |= PCI_COMMAND_MEMORY;
191 }
192
Kumar Galae5ce4202006-01-11 13:24:15 -0600193 if (pci_prefetch) {
194 /* Round memory allocator to 1MB boundary */
195 pciauto_region_align(pci_prefetch, 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_PREF_MEMORY_BASE,
199 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
David Feng3be54fd2015-02-02 16:53:13 +0800200 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
201#ifdef CONFIG_SYS_PCI_64BIT
202 pci_hose_write_config_dword(hose, dev,
203 PCI_PREF_BASE_UPPER32,
204 pci_prefetch->bus_lower >> 32);
205#else
206 pci_hose_write_config_dword(hose, dev,
207 PCI_PREF_BASE_UPPER32,
208 0x0);
209#endif
Kumar Galae5ce4202006-01-11 13:24:15 -0600210
211 cmdstat |= PCI_COMMAND_MEMORY;
212 } else {
213 /* We don't support prefetchable memory for now, so disable */
214 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintock2f43f332006-06-28 10:44:23 -0500215 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
David Feng3be54fd2015-02-02 16:53:13 +0800216 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
217 pci_hose_write_config_word(hose, dev, PCI_PREF_BASE_UPPER32, 0x0);
218 pci_hose_write_config_word(hose, dev, PCI_PREF_LIMIT_UPPER32, 0x0);
219 }
Kumar Galae5ce4202006-01-11 13:24:15 -0600220 }
221
wdenk56ed43e2004-02-22 23:46:08 +0000222 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000223 /* Round I/O allocator to 4KB boundary */
224 pciauto_region_align(pci_io, 0x1000);
225
226 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
227 (pci_io->bus_lower & 0x0000f000) >> 8);
228 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
229 (pci_io->bus_lower & 0xffff0000) >> 16);
230
231 cmdstat |= PCI_COMMAND_IO;
232 }
233
wdenkc6097192002-11-03 00:24:07 +0000234 /* Enable memory and I/O accesses, enable bus master */
Andrew Sharpf4f24822012-08-01 12:27:16 +0000235 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
236 cmdstat | PCI_COMMAND_MASTER);
wdenkc6097192002-11-03 00:24:07 +0000237}
238
Ed Swarthouta5232962007-07-11 14:51:48 -0500239void pciauto_postscan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000240 pci_dev_t dev, int sub_bus)
241{
Bin Meng39164092015-07-19 00:20:06 +0800242 struct pci_region *pci_mem;
243 struct pci_region *pci_prefetch;
244 struct pci_region *pci_io;
245
Bin Meng39164092015-07-19 00:20:06 +0800246 pci_mem = hose->pci_mem;
247 pci_prefetch = hose->pci_prefetch;
248 pci_io = hose->pci_io;
wdenkc6097192002-11-03 00:24:07 +0000249
250 /* Configure bus number registers */
Ed Swarthout4aeb55a2007-07-11 14:52:08 -0500251 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
252 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000253
wdenk56ed43e2004-02-22 23:46:08 +0000254 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000255 /* Round memory allocator to 1MB boundary */
256 pciauto_region_align(pci_mem, 0x100000);
257
258 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
Andrew Sharp68705132012-08-29 14:16:29 +0000259 (pci_mem->bus_lower - 1) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000260 }
261
Kumar Galae5ce4202006-01-11 13:24:15 -0600262 if (pci_prefetch) {
David Feng3be54fd2015-02-02 16:53:13 +0800263 u16 prefechable_64;
264
265 pci_hose_read_config_word(hose, dev,
266 PCI_PREF_MEMORY_LIMIT,
267 &prefechable_64);
268 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
269
Kumar Galae5ce4202006-01-11 13:24:15 -0600270 /* Round memory allocator to 1MB boundary */
271 pciauto_region_align(pci_prefetch, 0x100000);
272
273 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
Andrew Sharp68705132012-08-29 14:16:29 +0000274 (pci_prefetch->bus_lower - 1) >> 16);
David Feng3be54fd2015-02-02 16:53:13 +0800275 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
276#ifdef CONFIG_SYS_PCI_64BIT
277 pci_hose_write_config_dword(hose, dev,
278 PCI_PREF_LIMIT_UPPER32,
279 (pci_prefetch->bus_lower - 1) >> 32);
280#else
281 pci_hose_write_config_dword(hose, dev,
282 PCI_PREF_LIMIT_UPPER32,
283 0x0);
284#endif
Kumar Galae5ce4202006-01-11 13:24:15 -0600285 }
286
wdenk56ed43e2004-02-22 23:46:08 +0000287 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000288 /* Round I/O allocator to 4KB boundary */
289 pciauto_region_align(pci_io, 0x1000);
290
291 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
Andrew Sharp68705132012-08-29 14:16:29 +0000292 ((pci_io->bus_lower - 1) & 0x0000f000) >> 8);
wdenkc6097192002-11-03 00:24:07 +0000293 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
Andrew Sharp68705132012-08-29 14:16:29 +0000294 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000295 }
296}
297
wdenkc6097192002-11-03 00:24:07 +0000298
Andrew Sharp68705132012-08-29 14:16:29 +0000299/*
300 * HJF: Changed this to return int. I think this is required
wdenk452cfd62002-11-19 11:04:11 +0000301 * to get the correct result when scanning bridges
302 */
303int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000304{
Bin Meng39164092015-07-19 00:20:06 +0800305 struct pci_region *pci_mem;
306 struct pci_region *pci_prefetch;
307 struct pci_region *pci_io;
wdenk452cfd62002-11-19 11:04:11 +0000308 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000309 unsigned short class;
wdenk2cefd152004-02-08 22:55:38 +0000310 int n;
wdenkc6097192002-11-03 00:24:07 +0000311
Bin Meng39164092015-07-19 00:20:06 +0800312 pci_mem = hose->pci_mem;
313 pci_prefetch = hose->pci_prefetch;
314 pci_io = hose->pci_io;
Bin Meng39164092015-07-19 00:20:06 +0800315
wdenkc6097192002-11-03 00:24:07 +0000316 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
317
Andrew Sharp68705132012-08-29 14:16:29 +0000318 switch (class) {
wdenkc6097192002-11-03 00:24:07 +0000319 case PCI_CLASS_BRIDGE_PCI:
Simon Glass927c1042015-07-31 09:31:33 -0600320 debug("PCI Autoconfig: Found P2P bridge, device %d\n",
321 PCI_DEV(dev));
Simon Glassb94dc892015-03-05 12:25:25 -0700322
Bin Meng39164092015-07-19 00:20:06 +0800323 pciauto_setup_device(hose, dev, 2, pci_mem,
324 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000325
wdenk56ed43e2004-02-22 23:46:08 +0000326 /* Passing in current_busno allows for sibling P2P bridges */
Simon Glassb94dc892015-03-05 12:25:25 -0700327 hose->current_busno++;
wdenk2cefd152004-02-08 22:55:38 +0000328 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenk6cfa84e2004-02-10 00:03:41 +0000329 /*
wdenk56ed43e2004-02-22 23:46:08 +0000330 * need to figure out if this is a subordinate bridge on the bus
wdenk2cefd152004-02-08 22:55:38 +0000331 * to be able to properly set the pri/sec/sub bridge registers.
332 */
333 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk57b2d802003-06-27 21:31:46 +0000334
wdenk56ed43e2004-02-22 23:46:08 +0000335 /* figure out the deepest we've gone for this leg */
Masahiro Yamadadb204642014-11-07 03:03:31 +0900336 sub_bus = max((unsigned int)n, sub_bus);
wdenkb666c8f2003-03-06 00:58:30 +0000337 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk2cefd152004-02-08 22:55:38 +0000338
wdenkb666c8f2003-03-06 00:58:30 +0000339 sub_bus = hose->current_busno;
wdenkc6097192002-11-03 00:24:07 +0000340 break;
341
wdenk1fe2c702003-03-06 21:55:29 +0000342 case PCI_CLASS_BRIDGE_CARDBUS:
Andrew Sharp68705132012-08-29 14:16:29 +0000343 /*
344 * just do a minimal setup of the bridge,
345 * let the OS take care of the rest
346 */
Bin Meng39164092015-07-19 00:20:06 +0800347 pciauto_setup_device(hose, dev, 0, pci_mem,
348 pci_prefetch, pci_io);
wdenk1fe2c702003-03-06 21:55:29 +0000349
Simon Glass927c1042015-07-31 09:31:33 -0600350 debug("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
351 PCI_DEV(dev));
wdenk1fe2c702003-03-06 21:55:29 +0000352
353 hose->current_busno++;
354 break;
355
TsiChung Liew521f97b2008-03-30 01:19:06 -0500356#if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
wdenk5d841732003-08-17 18:55:18 +0000357 case PCI_CLASS_BRIDGE_OTHER:
Simon Glass927c1042015-07-31 09:31:33 -0600358 debug("PCI Autoconfig: Skipping bridge device %d\n",
359 PCI_DEV(dev));
wdenk5d841732003-08-17 18:55:18 +0000360 break;
361#endif
Mario Sixa83f5492019-01-21 09:17:38 +0100362#if defined(CONFIG_ARCH_MPC834X) && !defined(CONFIG_TARGET_VME8349) && \
363 !defined(CONFIG_TARGET_CADDY2)
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200364 case PCI_CLASS_BRIDGE_OTHER:
365 /*
366 * The host/PCI bridge 1 seems broken in 8349 - it presents
367 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
368 * device claiming resources io/mem/irq.. we only allow for
369 * the PIMMR window to be allocated (BAR0 - 1MB size)
370 */
Simon Glass927c1042015-07-31 09:31:33 -0600371 debug("PCI Autoconfig: Broken bridge found, only minimal config\n");
Andrew Sharp68705132012-08-29 14:16:29 +0000372 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
373 hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200374 break;
375#endif
Andrew Sharp61d47ca2012-08-29 14:16:32 +0000376
377 case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
Simon Glass927c1042015-07-31 09:31:33 -0600378 debug("PCI AutoConfig: Found PowerPC device\n");
Andrew Sharp61d47ca2012-08-29 14:16:32 +0000379
wdenkc6097192002-11-03 00:24:07 +0000380 default:
Bin Meng39164092015-07-19 00:20:06 +0800381 pciauto_setup_device(hose, dev, 6, pci_mem,
382 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000383 break;
384 }
wdenk452cfd62002-11-19 11:04:11 +0000385
386 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000387}