pci: Fix register for determining type of IO base address
[platform/kernel/u-boot.git] / drivers / pci / pci_auto.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * PCI autoconfiguration library
4  *
5  * Author: Matt Porter <mporter@mvista.com>
6  *
7  * Copyright 2000 MontaVista Software Inc.
8  */
9
10 #include <common.h>
11 #include <dm.h>
12 #include <errno.h>
13 #include <log.h>
14 #include <pci.h>
15 #include "pci_internal.h"
16
17 /* 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
20 #endif
21
22 static void dm_pciauto_setup_device(struct udevice *dev,
23                                     struct pci_region *mem,
24                                     struct pci_region *prefetch,
25                                     struct pci_region *io)
26 {
27         u32 bar_response;
28         pci_size_t bar_size;
29         u16 cmdstat = 0;
30         int bar, bar_nr = 0;
31         int bars_num;
32         u8 header_type;
33         int rom_addr;
34         pci_addr_t bar_value;
35         struct pci_region *bar_res = NULL;
36         int found_mem64 = 0;
37         u16 class;
38
39         dm_pci_read_config16(dev, PCI_COMMAND, &cmdstat);
40         cmdstat = (cmdstat & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) |
41                         PCI_COMMAND_MASTER;
42
43         dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type);
44         header_type &= 0x7f;
45
46         switch (header_type) {
47         case PCI_HEADER_TYPE_NORMAL:
48                 bars_num = 6;
49                 break;
50         case PCI_HEADER_TYPE_BRIDGE:
51                 bars_num = 2;
52                 break;
53         case PCI_HEADER_TYPE_CARDBUS:
54                 /* CardBus header does not have any BAR */
55                 bars_num = 0;
56                 break;
57         default:
58                 /* Skip configuring BARs for unknown header types */
59                 bars_num = 0;
60                 break;
61         }
62
63         for (bar = PCI_BASE_ADDRESS_0;
64              bar < PCI_BASE_ADDRESS_0 + (bars_num * 4); bar += 4) {
65                 int ret = 0;
66
67                 /* Tickle the BAR and get the response */
68                 dm_pci_write_config32(dev, bar, 0xffffffff);
69                 dm_pci_read_config32(dev, bar, &bar_response);
70
71                 /* If BAR is not implemented (or invalid) go to the next BAR */
72                 if (!bar_response || bar_response == 0xffffffff)
73                         continue;
74
75                 found_mem64 = 0;
76
77                 /* Check the BAR type and set our address mask */
78                 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
79                         bar_size = bar_response & PCI_BASE_ADDRESS_IO_MASK;
80                         bar_size &= ~(bar_size - 1);
81
82                         bar_res = io;
83
84                         debug("PCI Autoconfig: BAR %d, I/O, size=0x%llx, ",
85                               bar_nr, (unsigned long long)bar_size);
86                 } else {
87                         if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
88                              PCI_BASE_ADDRESS_MEM_TYPE_64) {
89                                 u32 bar_response_upper;
90                                 u64 bar64;
91
92                                 dm_pci_write_config32(dev, bar + 4, 0xffffffff);
93                                 dm_pci_read_config32(dev, bar + 4,
94                                                      &bar_response_upper);
95
96                                 bar64 = ((u64)bar_response_upper << 32) |
97                                                 bar_response;
98
99                                 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK)
100                                                 + 1;
101                                 found_mem64 = 1;
102                         } else {
103                                 bar_size = (u32)(~(bar_response &
104                                                 PCI_BASE_ADDRESS_MEM_MASK) + 1);
105                         }
106
107                         if (prefetch &&
108                             (bar_response & PCI_BASE_ADDRESS_MEM_PREFETCH))
109                                 bar_res = prefetch;
110                         else
111                                 bar_res = mem;
112
113                         debug("PCI Autoconfig: BAR %d, %s%s, size=0x%llx, ",
114                               bar_nr, bar_res == prefetch ? "Prf" : "Mem",
115                               found_mem64 ? "64" : "",
116                               (unsigned long long)bar_size);
117                 }
118
119                 ret = pciauto_region_allocate(bar_res, bar_size,
120                                               &bar_value, found_mem64);
121                 if (ret)
122                         printf("PCI: Failed autoconfig bar %x\n", bar);
123
124                 if (!ret) {
125                         /* Write it out and update our limit */
126                         dm_pci_write_config32(dev, bar, (u32)bar_value);
127
128                         if (found_mem64) {
129                                 bar += 4;
130 #ifdef CONFIG_SYS_PCI_64BIT
131                                 dm_pci_write_config32(dev, bar,
132                                                       (u32)(bar_value >> 32));
133 #else
134                                 /*
135                                  * If we are a 64-bit decoder then increment to
136                                  * the upper 32 bits of the bar and force it to
137                                  * locate in the lower 4GB of memory.
138                                  */
139                                 dm_pci_write_config32(dev, bar, 0x00000000);
140 #endif
141                         }
142                 }
143
144                 cmdstat |= (bar_response & PCI_BASE_ADDRESS_SPACE) ?
145                         PCI_COMMAND_IO : PCI_COMMAND_MEMORY;
146
147                 debug("\n");
148
149                 bar_nr++;
150         }
151
152         /* Configure the expansion ROM address */
153         if (header_type == PCI_HEADER_TYPE_NORMAL ||
154             header_type == PCI_HEADER_TYPE_BRIDGE) {
155                 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ?
156                         PCI_ROM_ADDRESS : PCI_ROM_ADDRESS1;
157                 dm_pci_write_config32(dev, rom_addr, 0xfffffffe);
158                 dm_pci_read_config32(dev, rom_addr, &bar_response);
159                 if (bar_response) {
160                         bar_size = -(bar_response & ~1);
161                         debug("PCI Autoconfig: ROM, size=%#x, ",
162                               (unsigned int)bar_size);
163                         if (pciauto_region_allocate(mem, bar_size, &bar_value,
164                                                     false) == 0) {
165                                 dm_pci_write_config32(dev, rom_addr, bar_value);
166                         }
167                         cmdstat |= PCI_COMMAND_MEMORY;
168                         debug("\n");
169                 }
170         }
171
172         /* PCI_COMMAND_IO must be set for VGA device */
173         dm_pci_read_config16(dev, PCI_CLASS_DEVICE, &class);
174         if (class == PCI_CLASS_DISPLAY_VGA)
175                 cmdstat |= PCI_COMMAND_IO;
176
177         dm_pci_write_config16(dev, PCI_COMMAND, cmdstat);
178         dm_pci_write_config8(dev, PCI_CACHE_LINE_SIZE,
179                              CONFIG_SYS_PCI_CACHE_LINE_SIZE);
180         dm_pci_write_config8(dev, PCI_LATENCY_TIMER, 0x80);
181 }
182
183 void dm_pciauto_prescan_setup_bridge(struct udevice *dev, int sub_bus)
184 {
185         struct pci_region *pci_mem;
186         struct pci_region *pci_prefetch;
187         struct pci_region *pci_io;
188         u16 cmdstat, prefechable_64;
189         u8 io_32;
190         struct udevice *ctlr = pci_get_controller(dev);
191         struct pci_controller *ctlr_hose = dev_get_uclass_priv(ctlr);
192
193         pci_mem = ctlr_hose->pci_mem;
194         pci_prefetch = ctlr_hose->pci_prefetch;
195         pci_io = ctlr_hose->pci_io;
196
197         dm_pci_read_config16(dev, PCI_COMMAND, &cmdstat);
198         dm_pci_read_config16(dev, PCI_PREF_MEMORY_BASE, &prefechable_64);
199         prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
200         dm_pci_read_config8(dev, PCI_IO_BASE, &io_32);
201         io_32 &= PCI_IO_RANGE_TYPE_MASK;
202
203         /* Configure bus number registers */
204         dm_pci_write_config8(dev, PCI_PRIMARY_BUS,
205                              PCI_BUS(dm_pci_get_bdf(dev)) - dev_seq(ctlr));
206         dm_pci_write_config8(dev, PCI_SECONDARY_BUS, sub_bus - dev_seq(ctlr));
207         dm_pci_write_config8(dev, PCI_SUBORDINATE_BUS, 0xff);
208
209         if (pci_mem) {
210                 /* Round memory allocator to 1MB boundary */
211                 pciauto_region_align(pci_mem, 0x100000);
212
213                 /*
214                  * Set up memory and I/O filter limits, assume 32-bit
215                  * I/O space
216                  */
217                 dm_pci_write_config16(dev, PCI_MEMORY_BASE,
218                                       ((pci_mem->bus_lower & 0xfff00000) >> 16) &
219                                       PCI_MEMORY_RANGE_MASK);
220
221                 cmdstat |= PCI_COMMAND_MEMORY;
222         }
223
224         if (pci_prefetch) {
225                 /* Round memory allocator to 1MB boundary */
226                 pciauto_region_align(pci_prefetch, 0x100000);
227
228                 /*
229                  * Set up memory and I/O filter limits, assume 32-bit
230                  * I/O space
231                  */
232                 dm_pci_write_config16(dev, PCI_PREF_MEMORY_BASE,
233                                 (((pci_prefetch->bus_lower & 0xfff00000) >> 16) &
234                                 PCI_PREF_RANGE_MASK) | prefechable_64);
235                 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
236 #ifdef CONFIG_SYS_PCI_64BIT
237                         dm_pci_write_config32(dev, PCI_PREF_BASE_UPPER32,
238                                               pci_prefetch->bus_lower >> 32);
239 #else
240                         dm_pci_write_config32(dev, PCI_PREF_BASE_UPPER32, 0x0);
241 #endif
242
243                 cmdstat |= PCI_COMMAND_MEMORY;
244         } else {
245                 /* We don't support prefetchable memory for now, so disable */
246                 dm_pci_write_config16(dev, PCI_PREF_MEMORY_BASE, 0x1000 |
247                                                                 prefechable_64);
248                 dm_pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, 0x0 |
249                                                                 prefechable_64);
250                 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64) {
251                         dm_pci_write_config16(dev, PCI_PREF_BASE_UPPER32, 0x0);
252                         dm_pci_write_config16(dev, PCI_PREF_LIMIT_UPPER32, 0x0);
253                 }
254         }
255
256         if (pci_io) {
257                 /* Round I/O allocator to 4KB boundary */
258                 pciauto_region_align(pci_io, 0x1000);
259
260                 dm_pci_write_config8(dev, PCI_IO_BASE,
261                                      (((pci_io->bus_lower & 0x0000f000) >> 8) &
262                                      PCI_IO_RANGE_MASK) | io_32);
263                 if (io_32 == PCI_IO_RANGE_TYPE_32)
264                         dm_pci_write_config16(dev, PCI_IO_BASE_UPPER16,
265                                       (pci_io->bus_lower & 0xffff0000) >> 16);
266
267                 cmdstat |= PCI_COMMAND_IO;
268         }
269
270         /* Enable memory and I/O accesses, enable bus master */
271         dm_pci_write_config16(dev, PCI_COMMAND, cmdstat | PCI_COMMAND_MASTER);
272 }
273
274 void dm_pciauto_postscan_setup_bridge(struct udevice *dev, int sub_bus)
275 {
276         struct pci_region *pci_mem;
277         struct pci_region *pci_prefetch;
278         struct pci_region *pci_io;
279         struct udevice *ctlr = pci_get_controller(dev);
280         struct pci_controller *ctlr_hose = dev_get_uclass_priv(ctlr);
281
282         pci_mem = ctlr_hose->pci_mem;
283         pci_prefetch = ctlr_hose->pci_prefetch;
284         pci_io = ctlr_hose->pci_io;
285
286         /* Configure bus number registers */
287         dm_pci_write_config8(dev, PCI_SUBORDINATE_BUS, sub_bus - dev_seq(ctlr));
288
289         if (pci_mem) {
290                 /* Round memory allocator to 1MB boundary */
291                 pciauto_region_align(pci_mem, 0x100000);
292
293                 dm_pci_write_config16(dev, PCI_MEMORY_LIMIT,
294                                       ((pci_mem->bus_lower - 1) >> 16) &
295                                       PCI_MEMORY_RANGE_MASK);
296         }
297
298         if (pci_prefetch) {
299                 u16 prefechable_64;
300
301                 dm_pci_read_config16(dev, PCI_PREF_MEMORY_LIMIT,
302                                      &prefechable_64);
303                 prefechable_64 &= PCI_PREF_RANGE_TYPE_MASK;
304
305                 /* Round memory allocator to 1MB boundary */
306                 pciauto_region_align(pci_prefetch, 0x100000);
307
308                 dm_pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT,
309                                       (((pci_prefetch->bus_lower - 1) >> 16) &
310                                        PCI_PREF_RANGE_MASK) | prefechable_64);
311                 if (prefechable_64 == PCI_PREF_RANGE_TYPE_64)
312 #ifdef CONFIG_SYS_PCI_64BIT
313                         dm_pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32,
314                                         (pci_prefetch->bus_lower - 1) >> 32);
315 #else
316                         dm_pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, 0x0);
317 #endif
318         }
319
320         if (pci_io) {
321                 u8 io_32;
322
323                 dm_pci_read_config8(dev, PCI_IO_LIMIT,
324                                      &io_32);
325                 io_32 &= PCI_IO_RANGE_TYPE_MASK;
326
327                 /* Round I/O allocator to 4KB boundary */
328                 pciauto_region_align(pci_io, 0x1000);
329
330                 dm_pci_write_config8(dev, PCI_IO_LIMIT,
331                                 ((((pci_io->bus_lower - 1) & 0x0000f000) >> 8) &
332                                 PCI_IO_RANGE_MASK) | io_32);
333                 if (io_32 == PCI_IO_RANGE_TYPE_32)
334                         dm_pci_write_config16(dev, PCI_IO_LIMIT_UPPER16,
335                                 ((pci_io->bus_lower - 1) & 0xffff0000) >> 16);
336         }
337 }
338
339 /*
340  * HJF: Changed this to return int. I think this is required
341  * to get the correct result when scanning bridges
342  */
343 int dm_pciauto_config_device(struct udevice *dev)
344 {
345         struct pci_region *pci_mem;
346         struct pci_region *pci_prefetch;
347         struct pci_region *pci_io;
348         unsigned int sub_bus = PCI_BUS(dm_pci_get_bdf(dev));
349         unsigned short class;
350         struct udevice *ctlr = pci_get_controller(dev);
351         struct pci_controller *ctlr_hose = dev_get_uclass_priv(ctlr);
352         int ret;
353
354         pci_mem = ctlr_hose->pci_mem;
355         pci_prefetch = ctlr_hose->pci_prefetch;
356         pci_io = ctlr_hose->pci_io;
357
358         dm_pci_read_config16(dev, PCI_CLASS_DEVICE, &class);
359
360         switch (class) {
361         case PCI_CLASS_BRIDGE_PCI:
362                 debug("PCI Autoconfig: Found P2P bridge, device %d\n",
363                       PCI_DEV(dm_pci_get_bdf(dev)));
364
365                 dm_pciauto_setup_device(dev, pci_mem, pci_prefetch, pci_io);
366
367                 ret = dm_pci_hose_probe_bus(dev);
368                 if (ret < 0)
369                         return log_msg_ret("probe", ret);
370                 sub_bus = ret;
371                 break;
372
373         case PCI_CLASS_BRIDGE_CARDBUS:
374                 /*
375                  * just do a minimal setup of the bridge,
376                  * let the OS take care of the rest
377                  */
378                 dm_pciauto_setup_device(dev, pci_mem, pci_prefetch, pci_io);
379
380                 debug("PCI Autoconfig: Found P2CardBus bridge, device %d\n",
381                       PCI_DEV(dm_pci_get_bdf(dev)));
382
383                 break;
384
385 #if defined(CONFIG_PCIAUTO_SKIP_HOST_BRIDGE)
386         case PCI_CLASS_BRIDGE_OTHER:
387                 debug("PCI Autoconfig: Skipping bridge device %d\n",
388                       PCI_DEV(dm_pci_get_bdf(dev)));
389                 break;
390 #endif
391 #if defined(CONFIG_ARCH_MPC834X)
392         case PCI_CLASS_BRIDGE_OTHER:
393                 /*
394                  * The host/PCI bridge 1 seems broken in 8349 - it presents
395                  * itself as 'PCI_CLASS_BRIDGE_OTHER' and appears as an _agent_
396                  * device claiming resources io/mem/irq.. we only allow for
397                  * the PIMMR window to be allocated (BAR0 - 1MB size)
398                  */
399                 debug("PCI Autoconfig: Broken bridge found, only minimal config\n");
400                 dm_pciauto_setup_device(dev, 0, hose->pci_mem,
401                                         hose->pci_prefetch, hose->pci_io);
402                 break;
403 #endif
404
405         case PCI_CLASS_PROCESSOR_POWERPC: /* an agent or end-point */
406                 debug("PCI AutoConfig: Found PowerPC device\n");
407                 /* fall through */
408
409         default:
410                 dm_pciauto_setup_device(dev, pci_mem, pci_prefetch, pci_io);
411                 break;
412         }
413
414         return sub_bus;
415 }