blob: 8b67cfa92b41b3e4850adbdd51c3861ab8ff55e1 [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>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
wdenkc6097192002-11-03 00:24:07 +000013#include <pci.h>
14
Simon Glass2b81e8a2015-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-VILLARD6d0f6bc2008-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 Jennejohn81b73de2007-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 Galaa1790122006-01-11 13:24:15 -060032 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000033 struct pci_region *io)
34{
Kumar Galacf5787f2012-09-19 04:47:36 +000035 u32 bar_response;
Kumar Gala30e76d52008-10-21 08:36:08 -050036 pci_size_t bar_size;
Andrew Sharpaf778c62012-08-01 12:27:16 +000037 u16 cmdstat = 0;
wdenkc6097192002-11-03 00:24:07 +000038 int bar, bar_nr = 0;
Simon Glass53292ad2015-07-31 09:31:34 -060039#ifndef CONFIG_PCI_ENUM_ONLY
Bin Meng6c896632015-07-08 13:06:40 +080040 u8 header_type;
41 int rom_addr;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000042 pci_addr_t bar_value;
43 struct pci_region *bar_res;
wdenkc6097192002-11-03 00:24:07 +000044 int found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000045#endif
Bin Mengcdf9f082015-10-01 00:35:59 -070046 u16 class;
wdenkc6097192002-11-03 00:24:07 +000047
Andrew Sharpaf778c62012-08-01 12:27:16 +000048 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
wdenkc6097192002-11-03 00:24:07 +000049 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
50
Andrew Sharpcb2bf932012-08-29 14:16:29 +000051 for (bar = PCI_BASE_ADDRESS_0;
52 bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000053 /* Tickle the BAR and get the response */
Andrew Sharp69fd2d32012-08-29 14:16:32 +000054#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000055 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +000056#endif
wdenkc6097192002-11-03 00:24:07 +000057 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
58
59 /* If BAR is not implemented go to the next BAR */
60 if (!bar_response)
61 continue;
62
Andrew Sharp69fd2d32012-08-29 14:16:32 +000063#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000064 found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000065#endif
wdenkc6097192002-11-03 00:24:07 +000066
67 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +000068 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +080069 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
70 & 0xffff) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000071#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +000072 bar_res = io;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000073#endif
wdenkc6097192002-11-03 00:24:07 +000074
Simon Glassda4b1592015-07-31 09:31:33 -060075 debug("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ",
76 bar_nr, (unsigned long long)bar_size);
wdenk3c74e322004-02-22 23:46:08 +000077 } else {
Andrew Sharpcb2bf932012-08-29 14:16:29 +000078 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -050079 PCI_BASE_ADDRESS_MEM_TYPE_64) {
80 u32 bar_response_upper;
81 u64 bar64;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000082
83#ifndef CONFIG_PCI_ENUM_ONLY
Andrew Sharpcb2bf932012-08-29 14:16:29 +000084 pci_hose_write_config_dword(hose, dev, bar + 4,
85 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +000086#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +000087 pci_hose_read_config_dword(hose, dev, bar + 4,
88 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +000089
Kumar Gala30e76d52008-10-21 08:36:08 -050090 bar64 = ((u64)bar_response_upper << 32) | bar_response;
91
92 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000093#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Gala30e76d52008-10-21 08:36:08 -050094 found_mem64 = 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000095#endif
Kumar Gala30e76d52008-10-21 08:36:08 -050096 } else {
97 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
98 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +000099#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Galaa1790122006-01-11 13:24:15 -0600100 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
101 bar_res = prefetch;
102 else
103 bar_res = mem;
wdenkc6097192002-11-03 00:24:07 +0000104
Simon Glass4bad2e72015-07-27 15:47:18 -0600105 debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ",
106 bar_nr, bar_res == prefetch ? "Prf" : "Mem",
107 (unsigned long long)bar_size);
Phil Sutter11131462015-12-25 14:41:17 +0100108#endif
wdenkc6097192002-11-03 00:24:07 +0000109 }
110
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000111#ifndef CONFIG_PCI_ENUM_ONLY
Tuomas Tynkkynend71975a2018-05-14 19:38:13 +0300112 if (pciauto_region_allocate(bar_res, bar_size,
113 &bar_value, found_mem64) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000114 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500115 pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000116
wdenk3c74e322004-02-22 23:46:08 +0000117 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000118 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500119#ifdef CONFIG_SYS_PCI_64BIT
120 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
121#else
122 /*
123 * If we are a 64-bit decoder then increment to the
124 * upper 32 bits of the bar and force it to locate
125 * in the lower 4GB of memory.
126 */
wdenkc6097192002-11-03 00:24:07 +0000127 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500128#endif
wdenkc6097192002-11-03 00:24:07 +0000129 }
130
wdenkc6097192002-11-03 00:24:07 +0000131 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000132#endif
133 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
134 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
wdenkc6097192002-11-03 00:24:07 +0000135
Simon Glassda4b1592015-07-31 09:31:33 -0600136 debug("\n");
wdenkc6097192002-11-03 00:24:07 +0000137
138 bar_nr++;
139 }
140
Simon Glass53292ad2015-07-31 09:31:34 -0600141#ifndef CONFIG_PCI_ENUM_ONLY
Bin Meng6c896632015-07-08 13:06:40 +0800142 /* Configure the expansion ROM address */
143 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
Bin Meng74454352015-10-07 02:13:18 -0700144 header_type &= 0x7f;
Bin Meng6c896632015-07-08 13:06:40 +0800145 if (header_type != PCI_HEADER_TYPE_CARDBUS) {
146 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
147 PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
148 pci_hose_write_config_dword(hose, dev, rom_addr, 0xfffffffe);
149 pci_hose_read_config_dword(hose, dev, rom_addr, &bar_response);
150 if (bar_response) {
151 bar_size = -(bar_response & ~1);
Simon Glassda4b1592015-07-31 09:31:33 -0600152 debug("PCI Autoconfig: ROM, size=%#x, ",
153 (unsigned int)bar_size);
Bin Meng6c896632015-07-08 13:06:40 +0800154 if (pciauto_region_allocate(mem, bar_size,
Tuomas Tynkkynend71975a2018-05-14 19:38:13 +0300155 &bar_value, false) == 0) {
Bin Meng6c896632015-07-08 13:06:40 +0800156 pci_hose_write_config_dword(hose, dev, rom_addr,
157 bar_value);
158 }
159 cmdstat |= PCI_COMMAND_MEMORY;
Simon Glassda4b1592015-07-31 09:31:33 -0600160 debug("\n");
Bin Meng6c896632015-07-08 13:06:40 +0800161 }
162 }
Simon Glass53292ad2015-07-31 09:31:34 -0600163#endif
Bin Meng6c896632015-07-08 13:06:40 +0800164
Bin Mengcdf9f082015-10-01 00:35:59 -0700165 /* PCI_COMMAND_IO must be set for VGA device */
166 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
167 if (class == PCI_CLASS_DISPLAY_VGA)
168 cmdstat |= PCI_COMMAND_IO;
169
Andrew Sharpaf778c62012-08-01 12:27:16 +0000170 pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
Gary Jennejohn81b73de2007-08-31 15:21:46 +0200171 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000173 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
174}
175
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500176void pciauto_prescan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000177 pci_dev_t dev, int sub_bus)
178{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800179 struct pci_region *pci_mem;
180 struct pci_region *pci_prefetch;
181 struct pci_region *pci_io;
David Feng6eefd522015-02-02 16:53:13 +0800182 u16 cmdstat, prefechable_64;
wdenkc6097192002-11-03 00:24:07 +0000183
Bin Mengd11d9ef2015-07-19 00:20:06 +0800184 pci_mem = hose->pci_mem;
185 pci_prefetch = hose->pci_prefetch;
186 pci_io = hose->pci_io;
Bin Mengd11d9ef2015-07-19 00:20:06 +0800187
Andrew Sharpaf778c62012-08-01 12:27:16 +0000188 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
David Feng6eefd522015-02-02 16:53:13 +0800189 pci_hose_read_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
190 &prefechable_64);
191 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
wdenkc6097192002-11-03 00:24:07 +0000192
193 /* Configure bus number registers */
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500194 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
195 PCI_BUS(dev) - hose->first_busno);
196 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
197 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000198 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
199
wdenk3c74e322004-02-22 23:46:08 +0000200 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000201 /* Round memory allocator to 1MB boundary */
202 pciauto_region_align(pci_mem, 0x100000);
203
204 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
205 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
206 (pci_mem->bus_lower & 0xfff00000) >> 16);
207
208 cmdstat |= PCI_COMMAND_MEMORY;
209 }
210
Kumar Galaa1790122006-01-11 13:24:15 -0600211 if (pci_prefetch) {
212 /* Round memory allocator to 1MB boundary */
213 pciauto_region_align(pci_prefetch, 0x100000);
214
215 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
216 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
217 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800218 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
219#ifdef CONFIG_SYS_PCI_64BIT
220 pci_hose_write_config_dword(hose, dev,
221 PCI_PREF_BASE_UPPER32,
222 pci_prefetch->bus_lower >> 32);
223#else
224 pci_hose_write_config_dword(hose, dev,
225 PCI_PREF_BASE_UPPER32,
226 0x0);
227#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600228
229 cmdstat |= PCI_COMMAND_MEMORY;
230 } else {
231 /* We don't support prefetchable memory for now, so disable */
232 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500233 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
David Feng6eefd522015-02-02 16:53:13 +0800234 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
235 pci_hose_write_config_word(hose, dev, PCI_PREF_BASE_UPPER32, 0x0);
236 pci_hose_write_config_word(hose, dev, PCI_PREF_LIMIT_UPPER32, 0x0);
237 }
Kumar Galaa1790122006-01-11 13:24:15 -0600238 }
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_BASE,
245 (pci_io->bus_lower & 0x0000f000) >> 8);
246 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
247 (pci_io->bus_lower & 0xffff0000) >> 16);
248
249 cmdstat |= PCI_COMMAND_IO;
250 }
251
wdenkc6097192002-11-03 00:24:07 +0000252 /* Enable memory and I/O accesses, enable bus master */
Andrew Sharpaf778c62012-08-01 12:27:16 +0000253 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
254 cmdstat | PCI_COMMAND_MASTER);
wdenkc6097192002-11-03 00:24:07 +0000255}
256
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500257void pciauto_postscan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000258 pci_dev_t dev, int sub_bus)
259{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800260 struct pci_region *pci_mem;
261 struct pci_region *pci_prefetch;
262 struct pci_region *pci_io;
263
Bin Mengd11d9ef2015-07-19 00:20:06 +0800264 pci_mem = hose->pci_mem;
265 pci_prefetch = hose->pci_prefetch;
266 pci_io = hose->pci_io;
wdenkc6097192002-11-03 00:24:07 +0000267
268 /* Configure bus number registers */
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500269 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
270 sub_bus - hose->first_busno);
wdenkc6097192002-11-03 00:24:07 +0000271
wdenk3c74e322004-02-22 23:46:08 +0000272 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000273 /* Round memory allocator to 1MB boundary */
274 pciauto_region_align(pci_mem, 0x100000);
275
276 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000277 (pci_mem->bus_lower - 1) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000278 }
279
Kumar Galaa1790122006-01-11 13:24:15 -0600280 if (pci_prefetch) {
David Feng6eefd522015-02-02 16:53:13 +0800281 u16 prefechable_64;
282
283 pci_hose_read_config_word(hose, dev,
284 PCI_PREF_MEMORY_LIMIT,
285 &prefechable_64);
286 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
287
Kumar Galaa1790122006-01-11 13:24:15 -0600288 /* Round memory allocator to 1MB boundary */
289 pciauto_region_align(pci_prefetch, 0x100000);
290
291 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000292 (pci_prefetch->bus_lower - 1) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800293 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
294#ifdef CONFIG_SYS_PCI_64BIT
295 pci_hose_write_config_dword(hose, dev,
296 PCI_PREF_LIMIT_UPPER32,
297 (pci_prefetch->bus_lower - 1) >> 32);
298#else
299 pci_hose_write_config_dword(hose, dev,
300 PCI_PREF_LIMIT_UPPER32,
301 0x0);
302#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600303 }
304
wdenk3c74e322004-02-22 23:46:08 +0000305 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000306 /* Round I/O allocator to 4KB boundary */
307 pciauto_region_align(pci_io, 0x1000);
308
309 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000310 ((pci_io->bus_lower - 1) & 0x0000f000) >> 8);
wdenkc6097192002-11-03 00:24:07 +0000311 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000312 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000313 }
314}
315
wdenkc6097192002-11-03 00:24:07 +0000316
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000317/*
318 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000319 * to get the correct result when scanning bridges
320 */
321int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000322{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800323 struct pci_region *pci_mem;
324 struct pci_region *pci_prefetch;
325 struct pci_region *pci_io;
wdenkc7de8292002-11-19 11:04:11 +0000326 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000327 unsigned short class;
wdenk5653fc32004-02-08 22:55:38 +0000328 int n;
wdenkc6097192002-11-03 00:24:07 +0000329
Bin Mengd11d9ef2015-07-19 00:20:06 +0800330 pci_mem = hose->pci_mem;
331 pci_prefetch = hose->pci_prefetch;
332 pci_io = hose->pci_io;
Bin Mengd11d9ef2015-07-19 00:20:06 +0800333
wdenkc6097192002-11-03 00:24:07 +0000334 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
335
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000336 switch (class) {
wdenkc6097192002-11-03 00:24:07 +0000337 case PCI_CLASS_BRIDGE_PCI:
Simon Glassda4b1592015-07-31 09:31:33 -0600338 debug("PCI Autoconfig: Found P2P bridge, device %d\n",
339 PCI_DEV(dev));
Simon Glassff3e0772015-03-05 12:25:25 -0700340
Bin Mengd11d9ef2015-07-19 00:20:06 +0800341 pciauto_setup_device(hose, dev, 2, pci_mem,
342 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000343
wdenk3c74e322004-02-22 23:46:08 +0000344 /* Passing in current_busno allows for sibling P2P bridges */
Simon Glassff3e0772015-03-05 12:25:25 -0700345 hose->current_busno++;
wdenk5653fc32004-02-08 22:55:38 +0000346 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000347 /*
wdenk3c74e322004-02-22 23:46:08 +0000348 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000349 * to be able to properly set the pri/sec/sub bridge registers.
350 */
351 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000352
wdenk3c74e322004-02-22 23:46:08 +0000353 /* figure out the deepest we've gone for this leg */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900354 sub_bus = max((unsigned int)n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000355 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000356
wdenkdb2f721f2003-03-06 00:58:30 +0000357 sub_bus = hose->current_busno;
wdenkc6097192002-11-03 00:24:07 +0000358 break;
359
wdenk1cb8e982003-03-06 21:55:29 +0000360 case PCI_CLASS_BRIDGE_CARDBUS:
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000361 /*
362 * just do a minimal setup of the bridge,
363 * let the OS take care of the rest
364 */
Bin Mengd11d9ef2015-07-19 00:20:06 +0800365 pciauto_setup_device(hose, dev, 0, pci_mem,
366 pci_prefetch, pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000367
Simon Glassda4b1592015-07-31 09:31:33 -0600368 debug("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
369 PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000370
371 hose->current_busno++;
372 break;
373
TsiChung Liewf33fca22008-03-30 01:19:06 -0500374#if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
wdenke0ac62d2003-08-17 18:55:18 +0000375 case PCI_CLASS_BRIDGE_OTHER:
Simon Glassda4b1592015-07-31 09:31:33 -0600376 debug("PCI Autoconfig: Skipping bridge device %d\n",
377 PCI_DEV(dev));
wdenke0ac62d2003-08-17 18:55:18 +0000378 break;
379#endif
Mario Six904c47f2019-01-21 09:17:38 +0100380#if defined(CONFIG_ARCH_MPC834X) && !defined(CONFIG_TARGET_VME8349) && \
381 !defined(CONFIG_TARGET_CADDY2)
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200382 case PCI_CLASS_BRIDGE_OTHER:
383 /*
384 * The host/PCI bridge 1 seems broken in 8349 - it presents
385 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
386 * device claiming resources io/mem/irq.. we only allow for
387 * the PIMMR window to be allocated (BAR0 - 1MB size)
388 */
Simon Glassda4b1592015-07-31 09:31:33 -0600389 debug("PCI Autoconfig: Broken bridge found, only minimal config\n");
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000390 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
391 hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200392 break;
393#endif
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000394
395 case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
Simon Glassda4b1592015-07-31 09:31:33 -0600396 debug("PCI AutoConfig: Found PowerPC device\n");
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000397
wdenkc6097192002-11-03 00:24:07 +0000398 default:
Bin Mengd11d9ef2015-07-19 00:20:06 +0800399 pciauto_setup_device(hose, dev, 6, pci_mem,
400 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000401 break;
402 }
wdenkc7de8292002-11-19 11:04:11 +0000403
404 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000405}