Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Oct 2006 19:18:46 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/dev/pci pci.c pci_pci.c pcivar.h
Message-ID:  <200610301918.k9UJIkOJ007705@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200610301918.k9UJIkOJ007705>