|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] ns16550: reset bar_64 on each iteration
commit 7efcc5844437837c9fe26ab4935dd8f034b230a4
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Tue Nov 17 13:22:44 2015 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue Nov 17 13:22:44 2015 +0100
ns16550: reset bar_64 on each iteration
Re-using the possibly non-zero value from a previous iteration can't
do any good.
Take the opportunity and
- limit a few other variables' scopes at once,
- adjust a few types.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
xen/drivers/char/ns16550.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/xen/drivers/char/ns16550.c b/xen/drivers/char/ns16550.c
index 34f66f7..ebe01ec 100644
--- a/xen/drivers/char/ns16550.c
+++ b/xen/drivers/char/ns16550.c
@@ -830,14 +830,11 @@ static int __init check_existence(struct ns16550 *uart)
#ifdef HAS_PCI
static int __init
-pci_uart_config (struct ns16550 *uart, int skip_amt, int bar_idx)
+pci_uart_config(struct ns16550 *uart, bool_t skip_amt, unsigned int bar_idx)
{
- uint32_t bar, bar_64 = 0, len, len_64;
- u64 size, mask, orig_base;
+ u64 orig_base = uart->io_base;
unsigned int b, d, f, nextf, i;
- u16 vendor, device;
- orig_base = uart->io_base;
uart->io_base = 0;
/* NB. Start at bus 1 to avoid AMT: a plug-in card cannot be on bus 0. */
for ( b = skip_amt ? 1 : 0; b < 0x100; b++ )
@@ -846,6 +843,9 @@ pci_uart_config (struct ns16550 *uart, int skip_amt, int
bar_idx)
{
for ( f = 0; f < 8; f = nextf )
{
+ uint32_t bar, bar_64 = 0, len, len_64;
+ u64 size;
+
nextf = (f || (pci_conf_read16(0, b, d, f, PCI_HEADER_TYPE) &
0x80)) ? f + 1 : 8;
@@ -869,8 +869,8 @@ pci_uart_config (struct ns16550 *uart, int skip_amt, int
bar_idx)
/* MMIO based */
if ( !(bar & PCI_BASE_ADDRESS_SPACE_IO) )
{
- vendor = pci_conf_read16(0, b, d, f, PCI_VENDOR_ID);
- device = pci_conf_read16(0, b, d, f, PCI_DEVICE_ID);
+ u16 vendor = pci_conf_read16(0, b, d, f, PCI_VENDOR_ID);
+ u16 device = pci_conf_read16(0, b, d, f, PCI_DEVICE_ID);
pci_conf_write32(0, b, d, f,
PCI_BASE_ADDRESS_0 + bar_idx*4, ~0u);
@@ -889,8 +889,8 @@ pci_uart_config (struct ns16550 *uart, int skip_amt, int
bar_idx)
PCI_BASE_ADDRESS_0 + (bar_idx+1)*4);
pci_conf_write32(0, b, d, f,
PCI_BASE_ADDRESS_0 + (bar_idx+1)*4,
bar_64);
- mask = ((u64)~0 << 32) | PCI_BASE_ADDRESS_MEM_MASK;
- size = (((u64)len_64 << 32) | len) & mask;
+ size = ((u64)~0 << 32) | PCI_BASE_ADDRESS_MEM_MASK;
+ size &= ((u64)len_64 << 32) | len;
}
else
size = len & PCI_BASE_ADDRESS_MEM_MASK;
--
generated by git-patchbot for /home/xen/git/xen.git#master
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |