* [U-Boot-Users] Patch to drivers/pci.c
@ 2003-05-22 6:30 Donald White
2003-05-27 8:42 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Donald White @ 2003-05-22 6:30 UTC (permalink / raw)
To: u-boot
Following is a patch to drivers/pci.c. It fixes the calculation of the base address
in pci_hose_config_device().
diff -urN u-boot-0.3.0/drivers/pci.c u-boot-0.3.0-zpc1900/drivers/pci.c
--- u-boot-0.3.0/drivers/pci.c Thu Feb 27 17:19:49 2003
+++ u-boot-0.3.0-zpc1900/drivers/pci.c Tue May 20 20:51:35 2003
@@ -329,9 +329,12 @@
if (bar_response & PCI_BASE_ADDRESS_SPACE)
{
bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
- bar_value = io;
+ /* round up region base address to a multiple of size */
io = ((io - 1) | (bar_size - 1)) + 1;
+ bar_value = io;
+ /* compute new region base address */
+ io = io + bar_size;
}
else
{
@@ -340,9 +343,12 @@
found_mem64 = 1;
bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
- bar_value = mem;
+ /* round up region base address to multiple of size */
mem = ((mem - 1) | (bar_size - 1)) + 1;
+ bar_value = mem;
+ /* compute new region base address */
+ mem = mem + bar_size;
}
/* Write it out and update our limit */
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-05-27 8:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-22 6:30 [U-Boot-Users] Patch to drivers/pci.c Donald White
2003-05-27 8:42 ` Wolfgang Denk
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.