| /pciutils/ |
| H A D | ls-ecaps.c | 129 u16 w; in cap_aer() local 268 u16 w; in cap_acs() local 280 FLAG(w, PCI_ACS_CAP_VALID), FLAG(w, PCI_ACS_CAP_BLOCK), FLAG(w, PCI_ACS_CAP_REQ_RED), in cap_acs() 294 u16 w; in cap_ari() local 316 u16 w; in cap_ats() local 335 u16 w; in cap_pri() local 361 u16 w; in cap_pasid() local 384 u16 w; in cap_sriov() local 457 u16 w; in cap_multicast() local 851 u16 w; in cxl_range() local [all …]
|
| H A D | ls-caps.c | 609 u16 w; in cap_msi() local 693 u16 w; in cap_express_dev() local 747 FLAG(w, PCI_EXP_DEVSTA_CED), in cap_express_dev() 816 u16 w; in cap_express_link() local 884 u16 w; in cap_express_slot() local 933 u32 w; in cap_express_root() local 1107 u16 w; in cap_express_dev2() local 1338 u16 w; in cap_express_link2() local 1403 u16 w; in cap_express_link_rcd() local 1434 w = pdev->rcd_link_ctrl; in cap_express_link_rcd() [all …]
|
| H A D | pciutils.spec | 18 o urz�dzeniach pod��czonych do szyny PCI w Twoim komputerze.
|
| H A D | COPYING | 316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 320 The hypothetical commands `show w' and `show c' should show the appropriate 322 be called something other than `show w' and `show c'; they could even be
|
| H A D | pci.ids | 16200 103c 1521 HP EliteBook 8540w 16255 103c 1521 HP EliteBook 8540w 16866 0011 4-line serial port w/- DMA 39519 8080 ASC-29320A U320 w/HostRAID 39529 808f AIC-7901 U320 w/HostRAID 39531 8090 ASC-39320 U320 w/HostRAID 39532 8091 ASC-39320D U320 w/HostRAID 39533 8092 ASC-29320 U320 w/HostRAID 39534 8093 ASC-29320B U320 w/HostRAID 39542 809e AIC-7901A U320 w/HostRAID [all …]
|
| /pciutils/lib/ |
| H A D | physmem-posix.c | 43 physmem_access(struct pci_access *a, int w) in physmem_access() argument 46 …a->debug("checking access permission of physical memory device %s for %s mode...", devmem, w ? "re… in physmem_access() 47 return access(devmem, R_OK | (w ? W_OK : 0)); in physmem_access() 51 physmem_open(struct pci_access *a, int w) in physmem_open() argument 56 …a->debug("trying to open physical memory device %s in %s mode...", devmem, w ? "read/write" : "rea… in physmem_open() 57 …physmem->fd = open(devmem, (w ? O_RDWR : O_RDONLY) | O_DSYNC); /* O_DSYNC bypass CPU cache for mma… in physmem_open() 81 physmem_map(struct physmem *physmem, u64 addr, size_t length, int w) in physmem_map() argument 88 return mmap(NULL, length, PROT_READ | (w ? PROT_WRITE : 0), MAP_SHARED, physmem->fd, addr); in physmem_map()
|
| H A D | sysdep.h | 114 static inline word swab16(word w) in swab16() argument 116 return (w << 8) | ((w >> 8) & 0xff); in swab16() 119 static inline u32 swab32(u32 w) in swab32() argument 121 return ((w & 0xff000000) >> 24) | in swab32() 122 ((w & 0x00ff0000) >> 8) | in swab32() 123 ((w & 0x0000ff00) << 8) | in swab32() 124 ((w & 0x000000ff) << 24); in swab32()
|
| H A D | physmem-windows.c | 667 init_physmem_ntdll(struct physmem *physmem, struct pci_access *a, const char *filename, int w) in init_physmem_ntdll() argument 747 a->debug("trying to open NT Section %s in %s mode...", filename, w ? "read/write" : "read-only"); in init_physmem_ntdll() 749 …status = physmem->NtOpenSection(&physmem->section_handle, SECTION_MAP_READ | (w ? SECTION_MAP_WRIT… in init_physmem_ntdll() 795 physmem_access(struct pci_access *a, int w) in physmem_access() argument 797 struct physmem *physmem = physmem_open(a, w); in physmem_access() 805 physmem_open(struct pci_access *a, int w) in physmem_open() argument 823 init_physmem_ntdll(physmem, a, devmem, w)) in physmem_open() 857 physmem_map(struct physmem *physmem, u64 addr, size_t length, int w) in physmem_map() argument 877 …GetCurrentProcess(), &ptr, 0, 0, §ion_offset, &view_size, ViewUnmap, 0, w ? PAGE_READWRITE : P… in physmem_map()
|
| H A D | physmem.h | 14 int physmem_access(struct pci_access *a, int w); 15 struct physmem *physmem_open(struct pci_access *a, int w); 29 void *physmem_map(struct physmem *physmem, u64 addr, size_t length, int w);
|
| H A D | physmem-djgpp.c | 229 physmem_access(struct pci_access *a UNUSED, int w UNUSED) in physmem_access() 240 physmem_open(struct pci_access *a, int w UNUSED) in physmem_open() 386 physmem_map(struct physmem *physmem, u64 addr, size_t length, int w) in physmem_map() argument 620 if (!w) in physmem_map()
|
| H A D | ecam.c | 93 int w; member 810 mmap_reg(struct pci_access *a, int w, int domain, u8 bus, u8 dev, u8 func, int pos, volatile void *… argument 822 if (cache && cache->domain == domain && cache->bus == bus && !!cache->w == !!w) 834 map = physmem_map(physmem, addr & ~(pagesize-1), length + (addr & (pagesize-1)), w); 848 cache->w = w;
|