Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/dev/pci/pcireg.h 168157 2007-03-31 20:41:00Z jhb $
---
> * $FreeBSD: head/sys/dev/pci/pcireg.h 168162 2007-03-31 21:39:02Z jhb $
120a121,133
> #define PCI_BAR_IO(x) (((x) & PCIM_BAR_SPACE) == PCIM_BAR_IO_SPACE)
> #define PCI_BAR_MEM(x) (((x) & PCIM_BAR_SPACE) == PCIM_BAR_MEM_SPACE)
> #define PCIM_BAR_SPACE 0x00000001
> #define PCIM_BAR_MEM_SPACE 0
> #define PCIM_BAR_IO_SPACE 1
> #define PCIM_BAR_MEM_TYPE 0x00000006
> #define PCIM_BAR_MEM_32 0
> #define PCIM_BAR_MEM_1MB 2 /* Locate below 1MB in PCI <= 2.1 */
> #define PCIM_BAR_MEM_64 4
> #define PCIM_BAR_MEM_PREFETCH 0x00000008
> #define PCIM_BAR_MEM_BASE 0xfffffff0
> #define PCIM_BAR_IO_RESERVED 0x00000002
> #define PCIM_BAR_IO_BASE 0xfffffffc