blob: a7af8cb5f1751c418715486627ae597c77d77668 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Stefan Roesea47a12b2010-04-15 16:07:28 +02002 * arch/powerpc/kernel/pci_auto.c
wdenkc6097192002-11-03 00:24:07 +00003 *
4 * PCI autoconfiguration library
5 *
6 * Author: Matt Porter <mporter@mvista.com>
7 *
8 * Copyright 2000 MontaVista Software Inc.
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000011 */
12
13#include <common.h>
Simon Glass4a2708a2015-01-14 21:37:04 -070014#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000015#include <pci.h>
16
wdenkc6097192002-11-03 00:24:07 +000017#ifdef DEBUG
18#define DEBUGF(x...) printf(x)
19#else
20#define DEBUGF(x...)
21#endif /* DEBUG */
22
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020023/* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */
24#ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE
25#define CONFIG_SYS_PCI_CACHE_LINE_SIZE 8
Gary Jennejohn81b73de2007-08-31 15:21:46 +020026#endif
27
wdenkc6097192002-11-03 00:24:07 +000028/*
29 *
30 */
31
Andrew Sharpcb2bf932012-08-29 14:16:29 +000032void pciauto_region_init(struct pci_region *res)
wdenkc6097192002-11-03 00:24:07 +000033{
Sergei Shtylyovb7598a42007-04-23 15:30:39 +020034 /*
35 * Avoid allocating PCI resources from address 0 -- this is illegal
36 * according to PCI 2.1 and moreover, this is known to cause Linux IDE
37 * drivers to fail. Use a reasonable starting value of 0x1000 instead.
38 */
39 res->bus_lower = res->bus_start ? res->bus_start : 0x1000;
wdenkc6097192002-11-03 00:24:07 +000040}
41
Kumar Gala30e76d52008-10-21 08:36:08 -050042void pciauto_region_align(struct pci_region *res, pci_size_t size)
wdenkc6097192002-11-03 00:24:07 +000043{
44 res->bus_lower = ((res->bus_lower - 1) | (size - 1)) + 1;
45}
46
Andrew Sharpcb2bf932012-08-29 14:16:29 +000047int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
48 pci_addr_t *bar)
wdenkc6097192002-11-03 00:24:07 +000049{
Kumar Gala30e76d52008-10-21 08:36:08 -050050 pci_addr_t addr;
wdenkc6097192002-11-03 00:24:07 +000051
wdenk3c74e322004-02-22 23:46:08 +000052 if (!res) {
wdenkc6097192002-11-03 00:24:07 +000053 DEBUGF("No resource");
54 goto error;
55 }
56
57 addr = ((res->bus_lower - 1) | (size - 1)) + 1;
58
wdenk3c74e322004-02-22 23:46:08 +000059 if (addr - res->bus_start + size > res->size) {
wdenkc6097192002-11-03 00:24:07 +000060 DEBUGF("No room in resource");
61 goto error;
62 }
63
64 res->bus_lower = addr + size;
65
Kumar Gala30e76d52008-10-21 08:36:08 -050066 DEBUGF("address=0x%llx bus_lower=0x%llx", (u64)addr, (u64)res->bus_lower);
wdenkc6097192002-11-03 00:24:07 +000067
68 *bar = addr;
69 return 0;
70
71 error:
Kumar Gala30e76d52008-10-21 08:36:08 -050072 *bar = (pci_addr_t)-1;
wdenkc6097192002-11-03 00:24:07 +000073 return -1;
74}
75
76/*
77 *
78 */
79
80void pciauto_setup_device(struct pci_controller *hose,
81 pci_dev_t dev, int bars_num,
82 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -060083 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000084 struct pci_region *io)
85{
Kumar Galacf5787f2012-09-19 04:47:36 +000086 u32 bar_response;
Kumar Gala30e76d52008-10-21 08:36:08 -050087 pci_size_t bar_size;
Andrew Sharpaf778c62012-08-01 12:27:16 +000088 u16 cmdstat = 0;
wdenkc6097192002-11-03 00:24:07 +000089 int bar, bar_nr = 0;
Bin Meng6c896632015-07-08 13:06:40 +080090 u8 header_type;
91 int rom_addr;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000092#ifndef CONFIG_PCI_ENUM_ONLY
93 pci_addr_t bar_value;
94 struct pci_region *bar_res;
wdenkc6097192002-11-03 00:24:07 +000095 int found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000096#endif
wdenkc6097192002-11-03 00:24:07 +000097
Andrew Sharpaf778c62012-08-01 12:27:16 +000098 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
wdenkc6097192002-11-03 00:24:07 +000099 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
100
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000101 for (bar = PCI_BASE_ADDRESS_0;
102 bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +0000103 /* Tickle the BAR and get the response */
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000104#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000105 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000106#endif
wdenkc6097192002-11-03 00:24:07 +0000107 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
108
109 /* If BAR is not implemented go to the next BAR */
110 if (!bar_response)
111 continue;
112
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000113#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000114 found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000115#endif
wdenkc6097192002-11-03 00:24:07 +0000116
117 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +0000118 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +0800119 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
120 & 0xffff) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000121#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000122 bar_res = io;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000123#endif
wdenkc6097192002-11-03 00:24:07 +0000124
Kumar Gala30e76d52008-10-21 08:36:08 -0500125 DEBUGF("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ", bar_nr, (u64)bar_size);
wdenk3c74e322004-02-22 23:46:08 +0000126 } else {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000127 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500128 PCI_BASE_ADDRESS_MEM_TYPE_64) {
129 u32 bar_response_upper;
130 u64 bar64;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000131
132#ifndef CONFIG_PCI_ENUM_ONLY
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000133 pci_hose_write_config_dword(hose, dev, bar + 4,
134 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000135#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000136 pci_hose_read_config_dword(hose, dev, bar + 4,
137 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000138
Kumar Gala30e76d52008-10-21 08:36:08 -0500139 bar64 = ((u64)bar_response_upper << 32) | bar_response;
140
141 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000142#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Gala30e76d52008-10-21 08:36:08 -0500143 found_mem64 = 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000144#endif
Kumar Gala30e76d52008-10-21 08:36:08 -0500145 } else {
146 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
147 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000148#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Galaa1790122006-01-11 13:24:15 -0600149 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
150 bar_res = prefetch;
151 else
152 bar_res = mem;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000153#endif
wdenkc6097192002-11-03 00:24:07 +0000154
Kumar Gala30e76d52008-10-21 08:36:08 -0500155 DEBUGF("PCI Autoconfig: BAR %d, Mem, size=0x%llx, ", bar_nr, (u64)bar_size);
wdenkc6097192002-11-03 00:24:07 +0000156 }
157
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000158#ifndef CONFIG_PCI_ENUM_ONLY
wdenk3c74e322004-02-22 23:46:08 +0000159 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000160 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500161 pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000162
wdenk3c74e322004-02-22 23:46:08 +0000163 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000164 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500165#ifdef CONFIG_SYS_PCI_64BIT
166 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
167#else
168 /*
169 * If we are a 64-bit decoder then increment to the
170 * upper 32 bits of the bar and force it to locate
171 * in the lower 4GB of memory.
172 */
wdenkc6097192002-11-03 00:24:07 +0000173 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500174#endif
wdenkc6097192002-11-03 00:24:07 +0000175 }
176
wdenkc6097192002-11-03 00:24:07 +0000177 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000178#endif
179 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
180 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
wdenkc6097192002-11-03 00:24:07 +0000181
182 DEBUGF("\n");
183
184 bar_nr++;
185 }
186
Bin Meng6c896632015-07-08 13:06:40 +0800187 /* Configure the expansion ROM address */
188 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
189 if (header_type != PCI_HEADER_TYPE_CARDBUS) {
190 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
191 PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
192 pci_hose_write_config_dword(hose, dev, rom_addr, 0xfffffffe);
193 pci_hose_read_config_dword(hose, dev, rom_addr, &bar_response);
194 if (bar_response) {
195 bar_size = -(bar_response & ~1);
196 DEBUGF("PCI Autoconfig: ROM, size=%#x, ", bar_size);
197 if (pciauto_region_allocate(mem, bar_size,
198 &bar_value) == 0) {
199 pci_hose_write_config_dword(hose, dev, rom_addr,
200 bar_value);
201 }
202 cmdstat |= PCI_COMMAND_MEMORY;
203 DEBUGF("\n");
204 }
205 }
206
Andrew Sharpaf778c62012-08-01 12:27:16 +0000207 pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
Gary Jennejohn81b73de2007-08-31 15:21:46 +0200208 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200209 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000210 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
211}
212
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500213void pciauto_prescan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000214 pci_dev_t dev, int sub_bus)
215{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800216 struct pci_region *pci_mem;
217 struct pci_region *pci_prefetch;
218 struct pci_region *pci_io;
David Feng6eefd522015-02-02 16:53:13 +0800219 u16 cmdstat, prefechable_64;
wdenkc6097192002-11-03 00:24:07 +0000220
Bin Mengd11d9ef2015-07-19 00:20:06 +0800221#ifdef CONFIG_DM_PCI
222 /* The root controller has the region information */
223 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
224
225 pci_mem = ctlr_hose->pci_mem;
226 pci_prefetch = ctlr_hose->pci_prefetch;
227 pci_io = ctlr_hose->pci_io;
228#else
229 pci_mem = hose->pci_mem;
230 pci_prefetch = hose->pci_prefetch;
231 pci_io = hose->pci_io;
232#endif
233
Andrew Sharpaf778c62012-08-01 12:27:16 +0000234 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
David Feng6eefd522015-02-02 16:53:13 +0800235 pci_hose_read_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
236 &prefechable_64);
237 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
wdenkc6097192002-11-03 00:24:07 +0000238
239 /* Configure bus number registers */
Bin Meng95f3aa22015-07-19 00:20:03 +0800240#ifdef CONFIG_DM_PCI
241 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS, PCI_BUS(dev));
242 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS, sub_bus);
243#else
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500244 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
245 PCI_BUS(dev) - hose->first_busno);
246 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
247 sub_bus - hose->first_busno);
Bin Meng95f3aa22015-07-19 00:20:03 +0800248#endif
wdenkc6097192002-11-03 00:24:07 +0000249 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
250
wdenk3c74e322004-02-22 23:46:08 +0000251 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000252 /* Round memory allocator to 1MB boundary */
253 pciauto_region_align(pci_mem, 0x100000);
254
255 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
256 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
257 (pci_mem->bus_lower & 0xfff00000) >> 16);
258
259 cmdstat |= PCI_COMMAND_MEMORY;
260 }
261
Kumar Galaa1790122006-01-11 13:24:15 -0600262 if (pci_prefetch) {
263 /* Round memory allocator to 1MB boundary */
264 pciauto_region_align(pci_prefetch, 0x100000);
265
266 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
267 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
268 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800269 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
270#ifdef CONFIG_SYS_PCI_64BIT
271 pci_hose_write_config_dword(hose, dev,
272 PCI_PREF_BASE_UPPER32,
273 pci_prefetch->bus_lower >> 32);
274#else
275 pci_hose_write_config_dword(hose, dev,
276 PCI_PREF_BASE_UPPER32,
277 0x0);
278#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600279
280 cmdstat |= PCI_COMMAND_MEMORY;
281 } else {
282 /* We don't support prefetchable memory for now, so disable */
283 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500284 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
David Feng6eefd522015-02-02 16:53:13 +0800285 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
286 pci_hose_write_config_word(hose, dev, PCI_PREF_BASE_UPPER32, 0x0);
287 pci_hose_write_config_word(hose, dev, PCI_PREF_LIMIT_UPPER32, 0x0);
288 }
Kumar Galaa1790122006-01-11 13:24:15 -0600289 }
290
wdenk3c74e322004-02-22 23:46:08 +0000291 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000292 /* Round I/O allocator to 4KB boundary */
293 pciauto_region_align(pci_io, 0x1000);
294
295 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
296 (pci_io->bus_lower & 0x0000f000) >> 8);
297 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
298 (pci_io->bus_lower & 0xffff0000) >> 16);
299
300 cmdstat |= PCI_COMMAND_IO;
301 }
302
wdenkc6097192002-11-03 00:24:07 +0000303 /* Enable memory and I/O accesses, enable bus master */
Andrew Sharpaf778c62012-08-01 12:27:16 +0000304 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
305 cmdstat | PCI_COMMAND_MASTER);
wdenkc6097192002-11-03 00:24:07 +0000306}
307
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500308void pciauto_postscan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000309 pci_dev_t dev, int sub_bus)
310{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800311 struct pci_region *pci_mem;
312 struct pci_region *pci_prefetch;
313 struct pci_region *pci_io;
314
315#ifdef CONFIG_DM_PCI
316 /* The root controller has the region information */
317 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
318
319 pci_mem = ctlr_hose->pci_mem;
320 pci_prefetch = ctlr_hose->pci_prefetch;
321 pci_io = ctlr_hose->pci_io;
322#else
323 pci_mem = hose->pci_mem;
324 pci_prefetch = hose->pci_prefetch;
325 pci_io = hose->pci_io;
326#endif
wdenkc6097192002-11-03 00:24:07 +0000327
328 /* Configure bus number registers */
Bin Meng95f3aa22015-07-19 00:20:03 +0800329#ifdef CONFIG_DM_PCI
330 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, sub_bus);
331#else
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500332 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
333 sub_bus - hose->first_busno);
Bin Meng95f3aa22015-07-19 00:20:03 +0800334#endif
wdenkc6097192002-11-03 00:24:07 +0000335
wdenk3c74e322004-02-22 23:46:08 +0000336 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000337 /* Round memory allocator to 1MB boundary */
338 pciauto_region_align(pci_mem, 0x100000);
339
340 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000341 (pci_mem->bus_lower - 1) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000342 }
343
Kumar Galaa1790122006-01-11 13:24:15 -0600344 if (pci_prefetch) {
David Feng6eefd522015-02-02 16:53:13 +0800345 u16 prefechable_64;
346
347 pci_hose_read_config_word(hose, dev,
348 PCI_PREF_MEMORY_LIMIT,
349 &prefechable_64);
350 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
351
Kumar Galaa1790122006-01-11 13:24:15 -0600352 /* Round memory allocator to 1MB boundary */
353 pciauto_region_align(pci_prefetch, 0x100000);
354
355 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000356 (pci_prefetch->bus_lower - 1) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800357 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
358#ifdef CONFIG_SYS_PCI_64BIT
359 pci_hose_write_config_dword(hose, dev,
360 PCI_PREF_LIMIT_UPPER32,
361 (pci_prefetch->bus_lower - 1) >> 32);
362#else
363 pci_hose_write_config_dword(hose, dev,
364 PCI_PREF_LIMIT_UPPER32,
365 0x0);
366#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600367 }
368
wdenk3c74e322004-02-22 23:46:08 +0000369 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000370 /* Round I/O allocator to 4KB boundary */
371 pciauto_region_align(pci_io, 0x1000);
372
373 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000374 ((pci_io->bus_lower - 1) & 0x0000f000) >> 8);
wdenkc6097192002-11-03 00:24:07 +0000375 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000376 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000377 }
378}
379
380/*
381 *
382 */
383
384void pciauto_config_init(struct pci_controller *hose)
385{
386 int i;
387
Thierry Reding010c4802013-09-20 15:50:50 +0200388 hose->pci_io = hose->pci_mem = hose->pci_prefetch = NULL;
wdenkc6097192002-11-03 00:24:07 +0000389
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000390 for (i = 0; i < hose->region_count; i++) {
wdenk3c74e322004-02-22 23:46:08 +0000391 switch(hose->regions[i].flags) {
wdenkc6097192002-11-03 00:24:07 +0000392 case PCI_REGION_IO:
393 if (!hose->pci_io ||
394 hose->pci_io->size < hose->regions[i].size)
395 hose->pci_io = hose->regions + i;
396 break;
397 case PCI_REGION_MEM:
398 if (!hose->pci_mem ||
399 hose->pci_mem->size < hose->regions[i].size)
400 hose->pci_mem = hose->regions + i;
401 break;
Kumar Galaa1790122006-01-11 13:24:15 -0600402 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
403 if (!hose->pci_prefetch ||
404 hose->pci_prefetch->size < hose->regions[i].size)
405 hose->pci_prefetch = hose->regions + i;
406 break;
wdenkc6097192002-11-03 00:24:07 +0000407 }
408 }
409
410
wdenk3c74e322004-02-22 23:46:08 +0000411 if (hose->pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000412 pciauto_region_init(hose->pci_mem);
413
Kumar Gala30e76d52008-10-21 08:36:08 -0500414 DEBUGF("PCI Autoconfig: Bus Memory region: [0x%llx-0x%llx],\n"
415 "\t\tPhysical Memory [%llx-%llxx]\n",
416 (u64)hose->pci_mem->bus_start,
417 (u64)(hose->pci_mem->bus_start + hose->pci_mem->size - 1),
418 (u64)hose->pci_mem->phys_start,
419 (u64)(hose->pci_mem->phys_start + hose->pci_mem->size - 1));
wdenkc6097192002-11-03 00:24:07 +0000420 }
421
Kumar Galaa1790122006-01-11 13:24:15 -0600422 if (hose->pci_prefetch) {
423 pciauto_region_init(hose->pci_prefetch);
424
Kumar Gala30e76d52008-10-21 08:36:08 -0500425 DEBUGF("PCI Autoconfig: Bus Prefetchable Mem: [0x%llx-0x%llx],\n"
426 "\t\tPhysical Memory [%llx-%llx]\n",
427 (u64)hose->pci_prefetch->bus_start,
428 (u64)(hose->pci_prefetch->bus_start +
429 hose->pci_prefetch->size - 1),
430 (u64)hose->pci_prefetch->phys_start,
431 (u64)(hose->pci_prefetch->phys_start +
432 hose->pci_prefetch->size - 1));
Kumar Galaa1790122006-01-11 13:24:15 -0600433 }
434
wdenk3c74e322004-02-22 23:46:08 +0000435 if (hose->pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000436 pciauto_region_init(hose->pci_io);
437
Kumar Gala30e76d52008-10-21 08:36:08 -0500438 DEBUGF("PCI Autoconfig: Bus I/O region: [0x%llx-0x%llx],\n"
439 "\t\tPhysical Memory: [%llx-%llx]\n",
440 (u64)hose->pci_io->bus_start,
441 (u64)(hose->pci_io->bus_start + hose->pci_io->size - 1),
442 (u64)hose->pci_io->phys_start,
443 (u64)(hose->pci_io->phys_start + hose->pci_io->size - 1));
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500444
wdenkc6097192002-11-03 00:24:07 +0000445 }
446}
447
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000448/*
449 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000450 * to get the correct result when scanning bridges
451 */
452int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000453{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800454 struct pci_region *pci_mem;
455 struct pci_region *pci_prefetch;
456 struct pci_region *pci_io;
wdenkc7de8292002-11-19 11:04:11 +0000457 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000458 unsigned short class;
wdenk5653fc32004-02-08 22:55:38 +0000459 int n;
wdenkc6097192002-11-03 00:24:07 +0000460
Bin Mengd11d9ef2015-07-19 00:20:06 +0800461#ifdef CONFIG_DM_PCI
462 /* The root controller has the region information */
463 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
464
465 pci_mem = ctlr_hose->pci_mem;
466 pci_prefetch = ctlr_hose->pci_prefetch;
467 pci_io = ctlr_hose->pci_io;
468#else
469 pci_mem = hose->pci_mem;
470 pci_prefetch = hose->pci_prefetch;
471 pci_io = hose->pci_io;
472#endif
473
wdenkc6097192002-11-03 00:24:07 +0000474 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
475
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000476 switch (class) {
wdenkc6097192002-11-03 00:24:07 +0000477 case PCI_CLASS_BRIDGE_PCI:
Simon Glassff3e0772015-03-05 12:25:25 -0700478 DEBUGF("PCI Autoconfig: Found P2P bridge, device %d\n",
479 PCI_DEV(dev));
480
Bin Mengd11d9ef2015-07-19 00:20:06 +0800481 pciauto_setup_device(hose, dev, 2, pci_mem,
482 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000483
Simon Glassff3e0772015-03-05 12:25:25 -0700484#ifdef CONFIG_DM_PCI
485 n = dm_pci_hose_probe_bus(hose, dev);
486 if (n < 0)
487 return n;
488 sub_bus = (unsigned int)n;
489#else
wdenk3c74e322004-02-22 23:46:08 +0000490 /* Passing in current_busno allows for sibling P2P bridges */
Simon Glassff3e0772015-03-05 12:25:25 -0700491 hose->current_busno++;
wdenk5653fc32004-02-08 22:55:38 +0000492 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000493 /*
wdenk3c74e322004-02-22 23:46:08 +0000494 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000495 * to be able to properly set the pri/sec/sub bridge registers.
496 */
497 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000498
wdenk3c74e322004-02-22 23:46:08 +0000499 /* figure out the deepest we've gone for this leg */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900500 sub_bus = max((unsigned int)n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000501 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000502
wdenkdb2f721f2003-03-06 00:58:30 +0000503 sub_bus = hose->current_busno;
Simon Glassff3e0772015-03-05 12:25:25 -0700504#endif
wdenkc6097192002-11-03 00:24:07 +0000505 break;
506
wdenk1cb8e982003-03-06 21:55:29 +0000507 case PCI_CLASS_BRIDGE_CARDBUS:
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000508 /*
509 * just do a minimal setup of the bridge,
510 * let the OS take care of the rest
511 */
Bin Mengd11d9ef2015-07-19 00:20:06 +0800512 pciauto_setup_device(hose, dev, 0, pci_mem,
513 pci_prefetch, pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000514
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000515 DEBUGF("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
516 PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000517
Simon Glassff3e0772015-03-05 12:25:25 -0700518#ifndef CONFIG_DM_PCI
wdenk1cb8e982003-03-06 21:55:29 +0000519 hose->current_busno++;
Simon Glassff3e0772015-03-05 12:25:25 -0700520#endif
wdenk1cb8e982003-03-06 21:55:29 +0000521 break;
522
TsiChung Liewf33fca22008-03-30 01:19:06 -0500523#if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
wdenke0ac62d2003-08-17 18:55:18 +0000524 case PCI_CLASS_BRIDGE_OTHER:
525 DEBUGF("PCI Autoconfig: Skipping bridge device %d\n",
526 PCI_DEV(dev));
527 break;
528#endif
Reinhard Arltc2e49f72009-07-25 06:19:12 +0200529#if defined(CONFIG_MPC834x) && !defined(CONFIG_VME8349)
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200530 case PCI_CLASS_BRIDGE_OTHER:
531 /*
532 * The host/PCI bridge 1 seems broken in 8349 - it presents
533 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
534 * device claiming resources io/mem/irq.. we only allow for
535 * the PIMMR window to be allocated (BAR0 - 1MB size)
536 */
537 DEBUGF("PCI Autoconfig: Broken bridge found, only minimal config\n");
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000538 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
539 hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200540 break;
541#endif
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000542
543 case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
544 DEBUGF("PCI AutoConfig: Found PowerPC device\n");
545
wdenkc6097192002-11-03 00:24:07 +0000546 default:
Bin Mengd11d9ef2015-07-19 00:20:06 +0800547 pciauto_setup_device(hose, dev, 6, pci_mem,
548 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000549 break;
550 }
wdenkc7de8292002-11-19 11:04:11 +0000551
552 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000553}