cvs commit: src/sys/dev/pci pci.c pci_pci.c pcivar.h

Warner Losh imp at FreeBSD.org
Mon Oct 30 19:19:11 UTC 2006


imp         2006-10-30 19:18:46 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/pci          pci.c pci_pci.c pcivar.h 
  Log:
  More fully support 64-bit bars.  Prior to this commit, we supported
  only those bars that had addresses assigned by the BIOS and where the
  bridges were properly programmed.  Now even unprogrammed ones work.
  This was needed for sun4v.  We still only implement up to 2GB memory
  ranges, even for 64-bit bars.  PCI standards at least through 2.2 say
  that this is the max (or 1GB is, I only know it is < 32bits).
  
  o Always define pci_addr_t as uint64_t.  A pci address is always 64-bits,
    but some hosts can't address all of them.
  o Preserve the upper half of the 64-bit word during resource probing.
  o Test to make sure that 64-bit values can fit in a u_long (true on some
    platforms, but not others).  Don't use those that can't.
  o minor pedantry about data sizes.
  o Better bridge resource reporting in bootverbose case.
  o Minor formatting changes to cope with different data types on different
    platforms.
  
  Submitted by: jmg, with many changes by me to fully support 64-bit
  addresses.
  
  Revision  Changes    Path
  1.317     +29 -12    src/sys/dev/pci/pci.c
  1.42      +39 -33    src/sys/dev/pci/pci_pci.c
  1.72      +1 -13     src/sys/dev/pci/pcivar.h


More information about the cvs-all mailing list