blob: bc119fba872487c36f406be11ae2f99a7f20e449 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
Simon Glass2b81e8a2015-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 Glass4a2708a2015-01-14 21:37:04 -070011#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000012#include <pci.h>
13
Simon Glass2b81e8a2015-11-29 13:17:46 -070014/*
15 * Do not change this file. Instead, convert your board to use CONFIG_DM_PCI
16 * and change pci_auto.c.
17 */
18
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020019/* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */
20#ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE
21#define CONFIG_SYS_PCI_CACHE_LINE_SIZE 8
Gary Jennejohn81b73de2007-08-31 15:21:46 +020022#endif
23
wdenkc6097192002-11-03 00:24:07 +000024/*
25 *
26 */
27
wdenkc6097192002-11-03 00:24:07 +000028void pciauto_setup_device(struct pci_controller *hose,
29 pci_dev_t dev, int bars_num,
30 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -060031 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000032 struct pci_region *io)
33{
Kumar Galacf5787f2012-09-19 04:47:36 +000034 u32 bar_response;
Kumar Gala30e76d52008-10-21 08:36:08 -050035 pci_size_t bar_size;
Andrew Sharpaf778c62012-08-01 12:27:16 +000036 u16 cmdstat = 0;
wdenkc6097192002-11-03 00:24:07 +000037 int bar, bar_nr = 0;
Simon Glass53292ad2015-07-31 09:31:34 -060038#ifndef CONFIG_PCI_ENUM_ONLY
Bin Meng6c896632015-07-08 13:06:40 +080039 u8 header_type;
40 int rom_addr;
Andrew Sharp69fd2d32012-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;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000044#endif
Bin Mengcdf9f082015-10-01 00:35:59 -070045 u16 class;
wdenkc6097192002-11-03 00:24:07 +000046
Andrew Sharpaf778c62012-08-01 12:27:16 +000047 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
wdenkc6097192002-11-03 00:24:07 +000048 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
49
Andrew Sharpcb2bf932012-08-29 14:16:29 +000050 for (bar = PCI_BASE_ADDRESS_0;
51 bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000052 /* Tickle the BAR and get the response */
Andrew Sharp69fd2d32012-08-29 14:16:32 +000053#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000054 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +000055#endif
wdenkc6097192002-11-03 00:24:07 +000056 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
57
58 /* If BAR is not implemented go to the next BAR */
59 if (!bar_response)
60 continue;
61
Andrew Sharp69fd2d32012-08-29 14:16:32 +000062#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000063 found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000064#endif
wdenkc6097192002-11-03 00:24:07 +000065
66 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +000067 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +080068 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
69 & 0xffff) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000070#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000071 bar_res = io;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000072#endif
wdenkc6097192002-11-03 00:24:07 +000073
Simon Glassda4b1592015-07-31 09:31:33 -060074 debug("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ",
75 bar_nr, (unsigned long long)bar_size);
wdenk3c74e322004-02-22 23:46:08 +000076 } else {
Andrew Sharpcb2bf932012-08-29 14:16:29 +000077 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -050078 PCI_BASE_ADDRESS_MEM_TYPE_64) {
79 u32 bar_response_upper;
80 u64 bar64;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000081
82#ifndef CONFIG_PCI_ENUM_ONLY
Andrew Sharpcb2bf932012-08-29 14:16:29 +000083 pci_hose_write_config_dword(hose, dev, bar + 4,
84 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +000085#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +000086 pci_hose_read_config_dword(hose, dev, bar + 4,
87 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +000088
Kumar Gala30e76d52008-10-21 08:36:08 -050089 bar64 = ((u64)bar_response_upper << 32) | bar_response;
90
91 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000092#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Gala30e76d52008-10-21 08:36:08 -050093 found_mem64 = 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000094#endif
Kumar Gala30e76d52008-10-21 08:36:08 -050095 } else {
96 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
97 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +000098#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Galaa1790122006-01-11 13:24:15 -060099 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
100 bar_res = prefetch;
101 else
102 bar_res = mem;
wdenkc6097192002-11-03 00:24:07 +0000103
Simon Glass4bad2e72015-07-27 15:47:18 -0600104 debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ",
105 bar_nr, bar_res == prefetch ? "Prf" : "Mem",
106 (unsigned long long)bar_size);
Phil Sutter11131462015-12-25 14:41:17 +0100107#endif
wdenkc6097192002-11-03 00:24:07 +0000108 }
109
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000110#ifndef CONFIG_PCI_ENUM_ONLY
wdenk3c74e322004-02-22 23:46:08 +0000111 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000112 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500113 pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000114
wdenk3c74e322004-02-22 23:46:08 +0000115 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000116 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500117#ifdef CONFIG_SYS_PCI_64BIT
118 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
119#else
120 /*
121 * If we are a 64-bit decoder then increment to the
122 * upper 32 bits of the bar and force it to locate
123 * in the lower 4GB of memory.
124 */
wdenkc6097192002-11-03 00:24:07 +0000125 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500126#endif
wdenkc6097192002-11-03 00:24:07 +0000127 }
128
wdenkc6097192002-11-03 00:24:07 +0000129 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000130#endif
131 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
132 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
wdenkc6097192002-11-03 00:24:07 +0000133
Simon Glassda4b1592015-07-31 09:31:33 -0600134 debug("\n");
wdenkc6097192002-11-03 00:24:07 +0000135
136 bar_nr++;
137 }
138
Simon Glass53292ad2015-07-31 09:31:34 -0600139#ifndef CONFIG_PCI_ENUM_ONLY
Bin Meng6c896632015-07-08 13:06:40 +0800140 /* Configure the expansion ROM address */
141 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
Bin Meng74454352015-10-07 02:13:18 -0700142 header_type &= 0x7f;
Bin Meng6c896632015-07-08 13:06:40 +0800143 if (header_type != PCI_HEADER_TYPE_CARDBUS) {
144 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
145 PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
146 pci_hose_write_config_dword(hose, dev, rom_addr, 0xfffffffe);
147 pci_hose_read_config_dword(hose, dev, rom_addr, &bar_response);
148 if (bar_response) {
149 bar_size = -(bar_response & ~1);
Simon Glassda4b1592015-07-31 09:31:33 -0600150 debug("PCI Autoconfig: ROM, size=%#x, ",
151 (unsigned int)bar_size);
Bin Meng6c896632015-07-08 13:06:40 +0800152 if (pciauto_region_allocate(mem, bar_size,
153 &bar_value) == 0) {
154 pci_hose_write_config_dword(hose, dev, rom_addr,
155 bar_value);
156 }
157 cmdstat |= PCI_COMMAND_MEMORY;
Simon Glassda4b1592015-07-31 09:31:33 -0600158 debug("\n");
Bin Meng6c896632015-07-08 13:06:40 +0800159 }
160 }
Simon Glass53292ad2015-07-31 09:31:34 -0600161#endif
Bin Meng6c896632015-07-08 13:06:40 +0800162
Bin Mengcdf9f082015-10-01 00:35:59 -0700163 /* PCI_COMMAND_IO must be set for VGA device */
164 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
165 if (class == PCI_CLASS_DISPLAY_VGA)
166 cmdstat |= PCI_COMMAND_IO;
167
Andrew Sharpaf778c62012-08-01 12:27:16 +0000168 pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
Gary Jennejohn81b73de2007-08-31 15:21:46 +0200169 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200170 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000171 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
172}
173
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500174void pciauto_prescan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000175 pci_dev_t dev, int sub_bus)
176{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800177 struct pci_region *pci_mem;
178 struct pci_region *pci_prefetch;
179 struct pci_region *pci_io;
David Feng6eefd522015-02-02 16:53:13 +0800180 u16 cmdstat, prefechable_64;
wdenkc6097192002-11-03 00:24:07 +0000181
Bin Mengd11d9ef2015-07-19 00:20:06 +0800182 pci_mem = hose->pci_mem;
183 pci_prefetch = hose->pci_prefetch;
184 pci_io = hose->pci_io;
Bin Mengd11d9ef2015-07-19 00:20:06 +0800185
Andrew Sharpaf778c62012-08-01 12:27:16 +0000186 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
David Feng6eefd522015-02-02 16:53:13 +0800187 pci_hose_read_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
188 &prefechable_64);
189 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
wdenkc6097192002-11-03 00:24:07 +0000190
191 /* Configure bus number registers */
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500192 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
193 PCI_BUS(dev) - hose->first_busno);
194 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
195 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000196 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
197
wdenk3c74e322004-02-22 23:46:08 +0000198 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000199 /* Round memory allocator to 1MB boundary */
200 pciauto_region_align(pci_mem, 0x100000);
201
202 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
203 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
204 (pci_mem->bus_lower & 0xfff00000) >> 16);
205
206 cmdstat |= PCI_COMMAND_MEMORY;
207 }
208
Kumar Galaa1790122006-01-11 13:24:15 -0600209 if (pci_prefetch) {
210 /* Round memory allocator to 1MB boundary */
211 pciauto_region_align(pci_prefetch, 0x100000);
212
213 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
214 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
215 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800216 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
217#ifdef CONFIG_SYS_PCI_64BIT
218 pci_hose_write_config_dword(hose, dev,
219 PCI_PREF_BASE_UPPER32,
220 pci_prefetch->bus_lower >> 32);
221#else
222 pci_hose_write_config_dword(hose, dev,
223 PCI_PREF_BASE_UPPER32,
224 0x0);
225#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600226
227 cmdstat |= PCI_COMMAND_MEMORY;
228 } else {
229 /* We don't support prefetchable memory for now, so disable */
230 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500231 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
David Feng6eefd522015-02-02 16:53:13 +0800232 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
233 pci_hose_write_config_word(hose, dev, PCI_PREF_BASE_UPPER32, 0x0);
234 pci_hose_write_config_word(hose, dev, PCI_PREF_LIMIT_UPPER32, 0x0);
235 }
Kumar Galaa1790122006-01-11 13:24:15 -0600236 }
237
wdenk3c74e322004-02-22 23:46:08 +0000238 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000239 /* Round I/O allocator to 4KB boundary */
240 pciauto_region_align(pci_io, 0x1000);
241
242 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
243 (pci_io->bus_lower & 0x0000f000) >> 8);
244 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
245 (pci_io->bus_lower & 0xffff0000) >> 16);
246
247 cmdstat |= PCI_COMMAND_IO;
248 }
249
wdenkc6097192002-11-03 00:24:07 +0000250 /* Enable memory and I/O accesses, enable bus master */
Andrew Sharpaf778c62012-08-01 12:27:16 +0000251 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
252 cmdstat | PCI_COMMAND_MASTER);
wdenkc6097192002-11-03 00:24:07 +0000253}
254
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500255void pciauto_postscan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000256 pci_dev_t dev, int sub_bus)
257{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800258 struct pci_region *pci_mem;
259 struct pci_region *pci_prefetch;
260 struct pci_region *pci_io;
261
Bin Mengd11d9ef2015-07-19 00:20:06 +0800262 pci_mem = hose->pci_mem;
263 pci_prefetch = hose->pci_prefetch;
264 pci_io = hose->pci_io;
wdenkc6097192002-11-03 00:24:07 +0000265
266 /* Configure bus number registers */
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500267 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
268 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000269
wdenk3c74e322004-02-22 23:46:08 +0000270 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000271 /* Round memory allocator to 1MB boundary */
272 pciauto_region_align(pci_mem, 0x100000);
273
274 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000275 (pci_mem->bus_lower - 1) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000276 }
277
Kumar Galaa1790122006-01-11 13:24:15 -0600278 if (pci_prefetch) {
David Feng6eefd522015-02-02 16:53:13 +0800279 u16 prefechable_64;
280
281 pci_hose_read_config_word(hose, dev,
282 PCI_PREF_MEMORY_LIMIT,
283 &prefechable_64);
284 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
285
Kumar Galaa1790122006-01-11 13:24:15 -0600286 /* Round memory allocator to 1MB boundary */
287 pciauto_region_align(pci_prefetch, 0x100000);
288
289 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000290 (pci_prefetch->bus_lower - 1) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800291 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
292#ifdef CONFIG_SYS_PCI_64BIT
293 pci_hose_write_config_dword(hose, dev,
294 PCI_PREF_LIMIT_UPPER32,
295 (pci_prefetch->bus_lower - 1) >> 32);
296#else
297 pci_hose_write_config_dword(hose, dev,
298 PCI_PREF_LIMIT_UPPER32,
299 0x0);
300#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600301 }
302
wdenk3c74e322004-02-22 23:46:08 +0000303 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000304 /* Round I/O allocator to 4KB boundary */
305 pciauto_region_align(pci_io, 0x1000);
306
307 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000308 ((pci_io->bus_lower - 1) & 0x0000f000) >> 8);
wdenkc6097192002-11-03 00:24:07 +0000309 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000310 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000311 }
312}
313
wdenkc6097192002-11-03 00:24:07 +0000314
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000315/*
316 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000317 * to get the correct result when scanning bridges
318 */
319int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000320{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800321 struct pci_region *pci_mem;
322 struct pci_region *pci_prefetch;
323 struct pci_region *pci_io;
wdenkc7de8292002-11-19 11:04:11 +0000324 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000325 unsigned short class;
wdenk5653fc32004-02-08 22:55:38 +0000326 int n;
wdenkc6097192002-11-03 00:24:07 +0000327
Bin Mengd11d9ef2015-07-19 00:20:06 +0800328 pci_mem = hose->pci_mem;
329 pci_prefetch = hose->pci_prefetch;
330 pci_io = hose->pci_io;
Bin Mengd11d9ef2015-07-19 00:20:06 +0800331
wdenkc6097192002-11-03 00:24:07 +0000332 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
333
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000334 switch (class) {
wdenkc6097192002-11-03 00:24:07 +0000335 case PCI_CLASS_BRIDGE_PCI:
Simon Glassda4b1592015-07-31 09:31:33 -0600336 debug("PCI Autoconfig: Found P2P bridge, device %d\n",
337 PCI_DEV(dev));
Simon Glassff3e0772015-03-05 12:25:25 -0700338
Bin Mengd11d9ef2015-07-19 00:20:06 +0800339 pciauto_setup_device(hose, dev, 2, pci_mem,
340 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000341
wdenk3c74e322004-02-22 23:46:08 +0000342 /* Passing in current_busno allows for sibling P2P bridges */
Simon Glassff3e0772015-03-05 12:25:25 -0700343 hose->current_busno++;
wdenk5653fc32004-02-08 22:55:38 +0000344 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000345 /*
wdenk3c74e322004-02-22 23:46:08 +0000346 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000347 * to be able to properly set the pri/sec/sub bridge registers.
348 */
349 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000350
wdenk3c74e322004-02-22 23:46:08 +0000351 /* figure out the deepest we've gone for this leg */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900352 sub_bus = max((unsigned int)n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000353 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000354
wdenkdb2f721f2003-03-06 00:58:30 +0000355 sub_bus = hose->current_busno;
wdenkc6097192002-11-03 00:24:07 +0000356 break;
357
wdenk1cb8e982003-03-06 21:55:29 +0000358 case PCI_CLASS_BRIDGE_CARDBUS:
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000359 /*
360 * just do a minimal setup of the bridge,
361 * let the OS take care of the rest
362 */
Bin Mengd11d9ef2015-07-19 00:20:06 +0800363 pciauto_setup_device(hose, dev, 0, pci_mem,
364 pci_prefetch, pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000365
Simon Glassda4b1592015-07-31 09:31:33 -0600366 debug("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
367 PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000368
369 hose->current_busno++;
370 break;
371
TsiChung Liewf33fca22008-03-30 01:19:06 -0500372#if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
wdenke0ac62d2003-08-17 18:55:18 +0000373 case PCI_CLASS_BRIDGE_OTHER:
Simon Glassda4b1592015-07-31 09:31:33 -0600374 debug("PCI Autoconfig: Skipping bridge device %d\n",
375 PCI_DEV(dev));
wdenke0ac62d2003-08-17 18:55:18 +0000376 break;
377#endif
Reinhard Arltc2e49f72009-07-25 06:19:12 +0200378#if defined(CONFIG_MPC834x) && !defined(CONFIG_VME8349)
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200379 case PCI_CLASS_BRIDGE_OTHER:
380 /*
381 * The host/PCI bridge 1 seems broken in 8349 - it presents
382 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
383 * device claiming resources io/mem/irq.. we only allow for
384 * the PIMMR window to be allocated (BAR0 - 1MB size)
385 */
Simon Glassda4b1592015-07-31 09:31:33 -0600386 debug("PCI Autoconfig: Broken bridge found, only minimal config\n");
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000387 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
388 hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200389 break;
390#endif
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000391
392 case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
Simon Glassda4b1592015-07-31 09:31:33 -0600393 debug("PCI AutoConfig: Found PowerPC device\n");
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000394
wdenkc6097192002-11-03 00:24:07 +0000395 default:
Bin Mengd11d9ef2015-07-19 00:20:06 +0800396 pciauto_setup_device(hose, dev, 6, pci_mem,
397 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000398 break;
399 }
wdenkc7de8292002-11-19 11:04:11 +0000400
401 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000402}