blob: 0412bf3515f8e905d98ee79096e36f56149e3170 [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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020017/* the user can define CONFIG_SYS_PCI_CACHE_LINE_SIZE to avoid problems */
18#ifndef CONFIG_SYS_PCI_CACHE_LINE_SIZE
19#define CONFIG_SYS_PCI_CACHE_LINE_SIZE 8
Gary Jennejohn81b73de2007-08-31 15:21:46 +020020#endif
21
wdenkc6097192002-11-03 00:24:07 +000022/*
23 *
24 */
25
Andrew Sharpcb2bf932012-08-29 14:16:29 +000026void pciauto_region_init(struct pci_region *res)
wdenkc6097192002-11-03 00:24:07 +000027{
Sergei Shtylyovb7598a42007-04-23 15:30:39 +020028 /*
29 * Avoid allocating PCI resources from address 0 -- this is illegal
30 * according to PCI 2.1 and moreover, this is known to cause Linux IDE
31 * drivers to fail. Use a reasonable starting value of 0x1000 instead.
32 */
33 res->bus_lower = res->bus_start ? res->bus_start : 0x1000;
wdenkc6097192002-11-03 00:24:07 +000034}
35
Kumar Gala30e76d52008-10-21 08:36:08 -050036void pciauto_region_align(struct pci_region *res, pci_size_t size)
wdenkc6097192002-11-03 00:24:07 +000037{
38 res->bus_lower = ((res->bus_lower - 1) | (size - 1)) + 1;
39}
40
Andrew Sharpcb2bf932012-08-29 14:16:29 +000041int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
42 pci_addr_t *bar)
wdenkc6097192002-11-03 00:24:07 +000043{
Kumar Gala30e76d52008-10-21 08:36:08 -050044 pci_addr_t addr;
wdenkc6097192002-11-03 00:24:07 +000045
wdenk3c74e322004-02-22 23:46:08 +000046 if (!res) {
Simon Glassda4b1592015-07-31 09:31:33 -060047 debug("No resource");
wdenkc6097192002-11-03 00:24:07 +000048 goto error;
49 }
50
51 addr = ((res->bus_lower - 1) | (size - 1)) + 1;
52
wdenk3c74e322004-02-22 23:46:08 +000053 if (addr - res->bus_start + size > res->size) {
Simon Glassda4b1592015-07-31 09:31:33 -060054 debug("No room in resource");
wdenkc6097192002-11-03 00:24:07 +000055 goto error;
56 }
57
58 res->bus_lower = addr + size;
59
Simon Glassda4b1592015-07-31 09:31:33 -060060 debug("address=0x%llx bus_lower=0x%llx", (unsigned long long)addr,
61 (unsigned long long)res->bus_lower);
wdenkc6097192002-11-03 00:24:07 +000062
63 *bar = addr;
64 return 0;
65
66 error:
Kumar Gala30e76d52008-10-21 08:36:08 -050067 *bar = (pci_addr_t)-1;
wdenkc6097192002-11-03 00:24:07 +000068 return -1;
69}
70
71/*
72 *
73 */
74
75void pciauto_setup_device(struct pci_controller *hose,
76 pci_dev_t dev, int bars_num,
77 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -060078 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +000079 struct pci_region *io)
80{
Kumar Galacf5787f2012-09-19 04:47:36 +000081 u32 bar_response;
Kumar Gala30e76d52008-10-21 08:36:08 -050082 pci_size_t bar_size;
Andrew Sharpaf778c62012-08-01 12:27:16 +000083 u16 cmdstat = 0;
wdenkc6097192002-11-03 00:24:07 +000084 int bar, bar_nr = 0;
Simon Glass53292ad2015-07-31 09:31:34 -060085#ifndef CONFIG_PCI_ENUM_ONLY
Bin Meng6c896632015-07-08 13:06:40 +080086 u8 header_type;
87 int rom_addr;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000088 pci_addr_t bar_value;
89 struct pci_region *bar_res;
wdenkc6097192002-11-03 00:24:07 +000090 int found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +000091#endif
Bin Mengcdf9f082015-10-01 00:35:59 -070092 u16 class;
wdenkc6097192002-11-03 00:24:07 +000093
Andrew Sharpaf778c62012-08-01 12:27:16 +000094 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
wdenkc6097192002-11-03 00:24:07 +000095 cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) | PCI_COMMAND_MASTER;
96
Andrew Sharpcb2bf932012-08-29 14:16:29 +000097 for (bar = PCI_BASE_ADDRESS_0;
98 bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
wdenkc6097192002-11-03 00:24:07 +000099 /* Tickle the BAR and get the response */
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000100#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000101 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000102#endif
wdenkc6097192002-11-03 00:24:07 +0000103 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
104
105 /* If BAR is not implemented go to the next BAR */
106 if (!bar_response)
107 continue;
108
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000109#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000110 found_mem64 = 0;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000111#endif
wdenkc6097192002-11-03 00:24:07 +0000112
113 /* Check the BAR type and set our address mask */
wdenk3c74e322004-02-22 23:46:08 +0000114 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
Jin Zhengxiong-R64188bd22c2b2006-06-27 18:12:02 +0800115 bar_size = ((~(bar_response & PCI_BASE_ADDRESS_IO_MASK))
116 & 0xffff) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000117#ifndef CONFIG_PCI_ENUM_ONLY
wdenkc6097192002-11-03 00:24:07 +0000118 bar_res = io;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000119#endif
wdenkc6097192002-11-03 00:24:07 +0000120
Simon Glassda4b1592015-07-31 09:31:33 -0600121 debug("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ",
122 bar_nr, (unsigned long long)bar_size);
wdenk3c74e322004-02-22 23:46:08 +0000123 } else {
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000124 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
Kumar Gala30e76d52008-10-21 08:36:08 -0500125 PCI_BASE_ADDRESS_MEM_TYPE_64) {
126 u32 bar_response_upper;
127 u64 bar64;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000128
129#ifndef CONFIG_PCI_ENUM_ONLY
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000130 pci_hose_write_config_dword(hose, dev, bar + 4,
131 0xffffffff);
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000132#endif
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000133 pci_hose_read_config_dword(hose, dev, bar + 4,
134 &bar_response_upper);
wdenkc6097192002-11-03 00:24:07 +0000135
Kumar Gala30e76d52008-10-21 08:36:08 -0500136 bar64 = ((u64)bar_response_upper << 32) | bar_response;
137
138 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000139#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Gala30e76d52008-10-21 08:36:08 -0500140 found_mem64 = 1;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000141#endif
Kumar Gala30e76d52008-10-21 08:36:08 -0500142 } else {
143 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
144 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000145#ifndef CONFIG_PCI_ENUM_ONLY
Kumar Galaa1790122006-01-11 13:24:15 -0600146 if (prefetch && (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
147 bar_res = prefetch;
148 else
149 bar_res = mem;
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000150#endif
wdenkc6097192002-11-03 00:24:07 +0000151
Simon Glass4bad2e72015-07-27 15:47:18 -0600152 debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ",
153 bar_nr, bar_res == prefetch ? "Prf" : "Mem",
154 (unsigned long long)bar_size);
wdenkc6097192002-11-03 00:24:07 +0000155 }
156
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000157#ifndef CONFIG_PCI_ENUM_ONLY
wdenk3c74e322004-02-22 23:46:08 +0000158 if (pciauto_region_allocate(bar_res, bar_size, &bar_value) == 0) {
wdenkc6097192002-11-03 00:24:07 +0000159 /* Write it out and update our limit */
Kumar Gala30e76d52008-10-21 08:36:08 -0500160 pci_hose_write_config_dword(hose, dev, bar, (u32)bar_value);
wdenkc6097192002-11-03 00:24:07 +0000161
wdenk3c74e322004-02-22 23:46:08 +0000162 if (found_mem64) {
wdenkc6097192002-11-03 00:24:07 +0000163 bar += 4;
Kumar Gala30e76d52008-10-21 08:36:08 -0500164#ifdef CONFIG_SYS_PCI_64BIT
165 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
166#else
167 /*
168 * If we are a 64-bit decoder then increment to the
169 * upper 32 bits of the bar and force it to locate
170 * in the lower 4GB of memory.
171 */
wdenkc6097192002-11-03 00:24:07 +0000172 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
Kumar Gala30e76d52008-10-21 08:36:08 -0500173#endif
wdenkc6097192002-11-03 00:24:07 +0000174 }
175
wdenkc6097192002-11-03 00:24:07 +0000176 }
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000177#endif
178 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
179 PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
wdenkc6097192002-11-03 00:24:07 +0000180
Simon Glassda4b1592015-07-31 09:31:33 -0600181 debug("\n");
wdenkc6097192002-11-03 00:24:07 +0000182
183 bar_nr++;
184 }
185
Simon Glass53292ad2015-07-31 09:31:34 -0600186#ifndef CONFIG_PCI_ENUM_ONLY
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);
Bin Meng74454352015-10-07 02:13:18 -0700189 header_type &= 0x7f;
Bin Meng6c896632015-07-08 13:06:40 +0800190 if (header_type != PCI_HEADER_TYPE_CARDBUS) {
191 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
192 PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
193 pci_hose_write_config_dword(hose, dev, rom_addr, 0xfffffffe);
194 pci_hose_read_config_dword(hose, dev, rom_addr, &bar_response);
195 if (bar_response) {
196 bar_size = -(bar_response & ~1);
Simon Glassda4b1592015-07-31 09:31:33 -0600197 debug("PCI Autoconfig: ROM, size=%#x, ",
198 (unsigned int)bar_size);
Bin Meng6c896632015-07-08 13:06:40 +0800199 if (pciauto_region_allocate(mem, bar_size,
200 &bar_value) == 0) {
201 pci_hose_write_config_dword(hose, dev, rom_addr,
202 bar_value);
203 }
204 cmdstat |= PCI_COMMAND_MEMORY;
Simon Glassda4b1592015-07-31 09:31:33 -0600205 debug("\n");
Bin Meng6c896632015-07-08 13:06:40 +0800206 }
207 }
Simon Glass53292ad2015-07-31 09:31:34 -0600208#endif
Bin Meng6c896632015-07-08 13:06:40 +0800209
Bin Mengcdf9f082015-10-01 00:35:59 -0700210 /* PCI_COMMAND_IO must be set for VGA device */
211 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
212 if (class == PCI_CLASS_DISPLAY_VGA)
213 cmdstat |= PCI_COMMAND_IO;
214
Andrew Sharpaf778c62012-08-01 12:27:16 +0000215 pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
Gary Jennejohn81b73de2007-08-31 15:21:46 +0200216 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200217 CONFIG_SYS_PCI_CACHE_LINE_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000218 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
219}
220
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500221void pciauto_prescan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000222 pci_dev_t dev, int sub_bus)
223{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800224 struct pci_region *pci_mem;
225 struct pci_region *pci_prefetch;
226 struct pci_region *pci_io;
David Feng6eefd522015-02-02 16:53:13 +0800227 u16 cmdstat, prefechable_64;
wdenkc6097192002-11-03 00:24:07 +0000228
Bin Mengd11d9ef2015-07-19 00:20:06 +0800229#ifdef CONFIG_DM_PCI
230 /* The root controller has the region information */
231 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
232
233 pci_mem = ctlr_hose->pci_mem;
234 pci_prefetch = ctlr_hose->pci_prefetch;
235 pci_io = ctlr_hose->pci_io;
236#else
237 pci_mem = hose->pci_mem;
238 pci_prefetch = hose->pci_prefetch;
239 pci_io = hose->pci_io;
240#endif
241
Andrew Sharpaf778c62012-08-01 12:27:16 +0000242 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
David Feng6eefd522015-02-02 16:53:13 +0800243 pci_hose_read_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
244 &prefechable_64);
245 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
wdenkc6097192002-11-03 00:24:07 +0000246
247 /* Configure bus number registers */
Bin Meng95f3aa22015-07-19 00:20:03 +0800248#ifdef CONFIG_DM_PCI
249 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS, PCI_BUS(dev));
250 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS, sub_bus);
251#else
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500252 pci_hose_write_config_byte(hose, dev, PCI_PRIMARY_BUS,
253 PCI_BUS(dev) - hose->first_busno);
254 pci_hose_write_config_byte(hose, dev, PCI_SECONDARY_BUS,
255 sub_bus - hose->first_busno);
Bin Meng95f3aa22015-07-19 00:20:03 +0800256#endif
wdenkc6097192002-11-03 00:24:07 +0000257 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, 0xff);
258
wdenk3c74e322004-02-22 23:46:08 +0000259 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000260 /* Round memory allocator to 1MB boundary */
261 pciauto_region_align(pci_mem, 0x100000);
262
263 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
264 pci_hose_write_config_word(hose, dev, PCI_MEMORY_BASE,
265 (pci_mem->bus_lower & 0xfff00000) >> 16);
266
267 cmdstat |= PCI_COMMAND_MEMORY;
268 }
269
Kumar Galaa1790122006-01-11 13:24:15 -0600270 if (pci_prefetch) {
271 /* Round memory allocator to 1MB boundary */
272 pciauto_region_align(pci_prefetch, 0x100000);
273
274 /* Set up memory and I/O filter limits, assume 32-bit I/O space */
275 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE,
276 (pci_prefetch->bus_lower & 0xfff00000) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800277 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
278#ifdef CONFIG_SYS_PCI_64BIT
279 pci_hose_write_config_dword(hose, dev,
280 PCI_PREF_BASE_UPPER32,
281 pci_prefetch->bus_lower >> 32);
282#else
283 pci_hose_write_config_dword(hose, dev,
284 PCI_PREF_BASE_UPPER32,
285 0x0);
286#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600287
288 cmdstat |= PCI_COMMAND_MEMORY;
289 } else {
290 /* We don't support prefetchable memory for now, so disable */
291 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_BASE, 0x1000);
Matthew McClintocka4e11552006-06-28 10:44:23 -0500292 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT, 0x0);
David Feng6eefd522015-02-02 16:53:13 +0800293 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
294 pci_hose_write_config_word(hose, dev, PCI_PREF_BASE_UPPER32, 0x0);
295 pci_hose_write_config_word(hose, dev, PCI_PREF_LIMIT_UPPER32, 0x0);
296 }
Kumar Galaa1790122006-01-11 13:24:15 -0600297 }
298
wdenk3c74e322004-02-22 23:46:08 +0000299 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000300 /* Round I/O allocator to 4KB boundary */
301 pciauto_region_align(pci_io, 0x1000);
302
303 pci_hose_write_config_byte(hose, dev, PCI_IO_BASE,
304 (pci_io->bus_lower & 0x0000f000) >> 8);
305 pci_hose_write_config_word(hose, dev, PCI_IO_BASE_UPPER16,
306 (pci_io->bus_lower & 0xffff0000) >> 16);
307
308 cmdstat |= PCI_COMMAND_IO;
309 }
310
wdenkc6097192002-11-03 00:24:07 +0000311 /* Enable memory and I/O accesses, enable bus master */
Andrew Sharpaf778c62012-08-01 12:27:16 +0000312 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
313 cmdstat | PCI_COMMAND_MASTER);
wdenkc6097192002-11-03 00:24:07 +0000314}
315
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500316void pciauto_postscan_setup_bridge(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000317 pci_dev_t dev, int sub_bus)
318{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800319 struct pci_region *pci_mem;
320 struct pci_region *pci_prefetch;
321 struct pci_region *pci_io;
322
323#ifdef CONFIG_DM_PCI
324 /* The root controller has the region information */
325 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
326
327 pci_mem = ctlr_hose->pci_mem;
328 pci_prefetch = ctlr_hose->pci_prefetch;
329 pci_io = ctlr_hose->pci_io;
330#else
331 pci_mem = hose->pci_mem;
332 pci_prefetch = hose->pci_prefetch;
333 pci_io = hose->pci_io;
334#endif
wdenkc6097192002-11-03 00:24:07 +0000335
336 /* Configure bus number registers */
Bin Meng95f3aa22015-07-19 00:20:03 +0800337#ifdef CONFIG_DM_PCI
338 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS, sub_bus);
339#else
Ed Swarthoute8b85f32007-07-11 14:52:08 -0500340 pci_hose_write_config_byte(hose, dev, PCI_SUBORDINATE_BUS,
341 sub_bus - hose->first_busno);
Bin Meng95f3aa22015-07-19 00:20:03 +0800342#endif
wdenkc6097192002-11-03 00:24:07 +0000343
wdenk3c74e322004-02-22 23:46:08 +0000344 if (pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000345 /* Round memory allocator to 1MB boundary */
346 pciauto_region_align(pci_mem, 0x100000);
347
348 pci_hose_write_config_word(hose, dev, PCI_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000349 (pci_mem->bus_lower - 1) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000350 }
351
Kumar Galaa1790122006-01-11 13:24:15 -0600352 if (pci_prefetch) {
David Feng6eefd522015-02-02 16:53:13 +0800353 u16 prefechable_64;
354
355 pci_hose_read_config_word(hose, dev,
356 PCI_PREF_MEMORY_LIMIT,
357 &prefechable_64);
358 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
359
Kumar Galaa1790122006-01-11 13:24:15 -0600360 /* Round memory allocator to 1MB boundary */
361 pciauto_region_align(pci_prefetch, 0x100000);
362
363 pci_hose_write_config_word(hose, dev, PCI_PREF_MEMORY_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000364 (pci_prefetch->bus_lower - 1) >> 16);
David Feng6eefd522015-02-02 16:53:13 +0800365 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
366#ifdef CONFIG_SYS_PCI_64BIT
367 pci_hose_write_config_dword(hose, dev,
368 PCI_PREF_LIMIT_UPPER32,
369 (pci_prefetch->bus_lower - 1) >> 32);
370#else
371 pci_hose_write_config_dword(hose, dev,
372 PCI_PREF_LIMIT_UPPER32,
373 0x0);
374#endif
Kumar Galaa1790122006-01-11 13:24:15 -0600375 }
376
wdenk3c74e322004-02-22 23:46:08 +0000377 if (pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000378 /* Round I/O allocator to 4KB boundary */
379 pciauto_region_align(pci_io, 0x1000);
380
381 pci_hose_write_config_byte(hose, dev, PCI_IO_LIMIT,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000382 ((pci_io->bus_lower - 1) & 0x0000f000) >> 8);
wdenkc6097192002-11-03 00:24:07 +0000383 pci_hose_write_config_word(hose, dev, PCI_IO_LIMIT_UPPER16,
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000384 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
wdenkc6097192002-11-03 00:24:07 +0000385 }
386}
387
388/*
389 *
390 */
391
392void pciauto_config_init(struct pci_controller *hose)
393{
394 int i;
395
Thierry Reding010c4802013-09-20 15:50:50 +0200396 hose->pci_io = hose->pci_mem = hose->pci_prefetch = NULL;
wdenkc6097192002-11-03 00:24:07 +0000397
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000398 for (i = 0; i < hose->region_count; i++) {
wdenk3c74e322004-02-22 23:46:08 +0000399 switch(hose->regions[i].flags) {
wdenkc6097192002-11-03 00:24:07 +0000400 case PCI_REGION_IO:
401 if (!hose->pci_io ||
402 hose->pci_io->size < hose->regions[i].size)
403 hose->pci_io = hose->regions + i;
404 break;
405 case PCI_REGION_MEM:
406 if (!hose->pci_mem ||
407 hose->pci_mem->size < hose->regions[i].size)
408 hose->pci_mem = hose->regions + i;
409 break;
Kumar Galaa1790122006-01-11 13:24:15 -0600410 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
411 if (!hose->pci_prefetch ||
412 hose->pci_prefetch->size < hose->regions[i].size)
413 hose->pci_prefetch = hose->regions + i;
414 break;
wdenkc6097192002-11-03 00:24:07 +0000415 }
416 }
417
418
wdenk3c74e322004-02-22 23:46:08 +0000419 if (hose->pci_mem) {
wdenkc6097192002-11-03 00:24:07 +0000420 pciauto_region_init(hose->pci_mem);
421
Simon Glassda4b1592015-07-31 09:31:33 -0600422 debug("PCI Autoconfig: Bus Memory region: [0x%llx-0x%llx],\n"
Kumar Gala30e76d52008-10-21 08:36:08 -0500423 "\t\tPhysical Memory [%llx-%llxx]\n",
424 (u64)hose->pci_mem->bus_start,
425 (u64)(hose->pci_mem->bus_start + hose->pci_mem->size - 1),
426 (u64)hose->pci_mem->phys_start,
427 (u64)(hose->pci_mem->phys_start + hose->pci_mem->size - 1));
wdenkc6097192002-11-03 00:24:07 +0000428 }
429
Kumar Galaa1790122006-01-11 13:24:15 -0600430 if (hose->pci_prefetch) {
431 pciauto_region_init(hose->pci_prefetch);
432
Simon Glassda4b1592015-07-31 09:31:33 -0600433 debug("PCI Autoconfig: Bus Prefetchable Mem: [0x%llx-0x%llx],\n"
Kumar Gala30e76d52008-10-21 08:36:08 -0500434 "\t\tPhysical Memory [%llx-%llx]\n",
435 (u64)hose->pci_prefetch->bus_start,
436 (u64)(hose->pci_prefetch->bus_start +
437 hose->pci_prefetch->size - 1),
438 (u64)hose->pci_prefetch->phys_start,
439 (u64)(hose->pci_prefetch->phys_start +
440 hose->pci_prefetch->size - 1));
Kumar Galaa1790122006-01-11 13:24:15 -0600441 }
442
wdenk3c74e322004-02-22 23:46:08 +0000443 if (hose->pci_io) {
wdenkc6097192002-11-03 00:24:07 +0000444 pciauto_region_init(hose->pci_io);
445
Simon Glassda4b1592015-07-31 09:31:33 -0600446 debug("PCI Autoconfig: Bus I/O region: [0x%llx-0x%llx],\n"
Kumar Gala30e76d52008-10-21 08:36:08 -0500447 "\t\tPhysical Memory: [%llx-%llx]\n",
448 (u64)hose->pci_io->bus_start,
449 (u64)(hose->pci_io->bus_start + hose->pci_io->size - 1),
450 (u64)hose->pci_io->phys_start,
451 (u64)(hose->pci_io->phys_start + hose->pci_io->size - 1));
Ed Swarthoutba5feb12007-07-11 14:51:48 -0500452
wdenkc6097192002-11-03 00:24:07 +0000453 }
454}
455
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000456/*
457 * HJF: Changed this to return int. I think this is required
wdenkc7de8292002-11-19 11:04:11 +0000458 * to get the correct result when scanning bridges
459 */
460int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev)
wdenkc6097192002-11-03 00:24:07 +0000461{
Bin Mengd11d9ef2015-07-19 00:20:06 +0800462 struct pci_region *pci_mem;
463 struct pci_region *pci_prefetch;
464 struct pci_region *pci_io;
wdenkc7de8292002-11-19 11:04:11 +0000465 unsigned int sub_bus = PCI_BUS(dev);
wdenkc6097192002-11-03 00:24:07 +0000466 unsigned short class;
wdenk5653fc32004-02-08 22:55:38 +0000467 int n;
wdenkc6097192002-11-03 00:24:07 +0000468
Bin Mengd11d9ef2015-07-19 00:20:06 +0800469#ifdef CONFIG_DM_PCI
470 /* The root controller has the region information */
471 struct pci_controller *ctlr_hose = pci_bus_to_hose(0);
472
473 pci_mem = ctlr_hose->pci_mem;
474 pci_prefetch = ctlr_hose->pci_prefetch;
475 pci_io = ctlr_hose->pci_io;
476#else
477 pci_mem = hose->pci_mem;
478 pci_prefetch = hose->pci_prefetch;
479 pci_io = hose->pci_io;
480#endif
481
wdenkc6097192002-11-03 00:24:07 +0000482 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
483
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000484 switch (class) {
wdenkc6097192002-11-03 00:24:07 +0000485 case PCI_CLASS_BRIDGE_PCI:
Simon Glassda4b1592015-07-31 09:31:33 -0600486 debug("PCI Autoconfig: Found P2P bridge, device %d\n",
487 PCI_DEV(dev));
Simon Glassff3e0772015-03-05 12:25:25 -0700488
Bin Mengd11d9ef2015-07-19 00:20:06 +0800489 pciauto_setup_device(hose, dev, 2, pci_mem,
490 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000491
Simon Glassff3e0772015-03-05 12:25:25 -0700492#ifdef CONFIG_DM_PCI
493 n = dm_pci_hose_probe_bus(hose, dev);
494 if (n < 0)
495 return n;
496 sub_bus = (unsigned int)n;
497#else
wdenk3c74e322004-02-22 23:46:08 +0000498 /* Passing in current_busno allows for sibling P2P bridges */
Simon Glassff3e0772015-03-05 12:25:25 -0700499 hose->current_busno++;
wdenk5653fc32004-02-08 22:55:38 +0000500 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
wdenkcd37d9e2004-02-10 00:03:41 +0000501 /*
wdenk3c74e322004-02-22 23:46:08 +0000502 * need to figure out if this is a subordinate bridge on the bus
wdenk5653fc32004-02-08 22:55:38 +0000503 * to be able to properly set the pri/sec/sub bridge registers.
504 */
505 n = pci_hose_scan_bus(hose, hose->current_busno);
wdenk8bde7f72003-06-27 21:31:46 +0000506
wdenk3c74e322004-02-22 23:46:08 +0000507 /* figure out the deepest we've gone for this leg */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900508 sub_bus = max((unsigned int)n, sub_bus);
wdenkdb2f721f2003-03-06 00:58:30 +0000509 pciauto_postscan_setup_bridge(hose, dev, sub_bus);
wdenk5653fc32004-02-08 22:55:38 +0000510
wdenkdb2f721f2003-03-06 00:58:30 +0000511 sub_bus = hose->current_busno;
Simon Glassff3e0772015-03-05 12:25:25 -0700512#endif
wdenkc6097192002-11-03 00:24:07 +0000513 break;
514
wdenk1cb8e982003-03-06 21:55:29 +0000515 case PCI_CLASS_BRIDGE_CARDBUS:
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000516 /*
517 * just do a minimal setup of the bridge,
518 * let the OS take care of the rest
519 */
Bin Mengd11d9ef2015-07-19 00:20:06 +0800520 pciauto_setup_device(hose, dev, 0, pci_mem,
521 pci_prefetch, pci_io);
wdenk1cb8e982003-03-06 21:55:29 +0000522
Simon Glassda4b1592015-07-31 09:31:33 -0600523 debug("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
524 PCI_DEV(dev));
wdenk1cb8e982003-03-06 21:55:29 +0000525
Simon Glassff3e0772015-03-05 12:25:25 -0700526#ifndef CONFIG_DM_PCI
wdenk1cb8e982003-03-06 21:55:29 +0000527 hose->current_busno++;
Simon Glassff3e0772015-03-05 12:25:25 -0700528#endif
wdenk1cb8e982003-03-06 21:55:29 +0000529 break;
530
TsiChung Liewf33fca22008-03-30 01:19:06 -0500531#if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
wdenke0ac62d2003-08-17 18:55:18 +0000532 case PCI_CLASS_BRIDGE_OTHER:
Simon Glassda4b1592015-07-31 09:31:33 -0600533 debug("PCI Autoconfig: Skipping bridge device %d\n",
534 PCI_DEV(dev));
wdenke0ac62d2003-08-17 18:55:18 +0000535 break;
536#endif
Reinhard Arltc2e49f72009-07-25 06:19:12 +0200537#if defined(CONFIG_MPC834x) && !defined(CONFIG_VME8349)
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200538 case PCI_CLASS_BRIDGE_OTHER:
539 /*
540 * The host/PCI bridge 1 seems broken in 8349 - it presents
541 * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
542 * device claiming resources io/mem/irq.. we only allow for
543 * the PIMMR window to be allocated (BAR0 - 1MB size)
544 */
Simon Glassda4b1592015-07-31 09:31:33 -0600545 debug("PCI Autoconfig: Broken bridge found, only minimal config\n");
Andrew Sharpcb2bf932012-08-29 14:16:29 +0000546 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
547 hose->pci_prefetch, hose->pci_io);
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200548 break;
549#endif
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000550
551 case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
Simon Glassda4b1592015-07-31 09:31:33 -0600552 debug("PCI AutoConfig: Found PowerPC device\n");
Andrew Sharp69fd2d32012-08-29 14:16:32 +0000553
wdenkc6097192002-11-03 00:24:07 +0000554 default:
Bin Mengd11d9ef2015-07-19 00:20:06 +0800555 pciauto_setup_device(hose, dev, 6, pci_mem,
556 pci_prefetch, pci_io);
wdenkc6097192002-11-03 00:24:07 +0000557 break;
558 }
wdenkc7de8292002-11-19 11:04:11 +0000559
560 return sub_bus;
wdenkc6097192002-11-03 00:24:07 +0000561}