lkml.org 
[lkml]   [2005]   [Jul]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: pci_size() error condition
On Thu, Jul 14, 2005 at 11:04:00AM -0500, John Rose wrote:
> Okay, point taken :) So for cases of base == maxbase, why would we ever
> want to return a nonzero value? What is the intended purpose of the
> second part of that conditional?

Well, just two examples (both for PCI IO limited to 16 bits for simplicity,
but still from real life):
1. Consider some BAR that defines 16 bytes of IO space. It's
perfectly valid for the PCI firmware to program this BAR to
its max value, so after writing all 1s during the probe and proper
masking we have base == maxbase == 0xfff0. But, since all high
order bits are all 1s, (((base | size) & mask) != mask) is false,
and we return correct value of 16.
2. Another BAR of some broken PCI device (typically, IDE controller)
has *read-only* value of 0x1f0, for instance. After writing 0xffff
we still read back the same 0x1f0, so base == maxbase == 0x1f0.
But the second part of that "if" clause is now true, so we return 0,
which means that the BAR is invalid and must be ignored.

Ivan.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-07-15 00:40    [W:0.045 / U:0.612 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site