Searched refs:temp (Results 1 – 4 of 4) sorted by relevance
| /dev/bus/pci/bus_mgr/ |
| A D | bridge.cpp | 155 uint32_t temp; in assign_bus_numbers() local 157 pci_read_config_word(loc_, 0x18, &temp); in assign_bus_numbers() 158 temp &= 0xff000000; // leave latency timer alone in assign_bus_numbers() 159 temp |= subordinate << 16; in assign_bus_numbers() 160 temp |= secondary << 8; in assign_bus_numbers() 161 temp |= primary << 0; in assign_bus_numbers() 162 pci_write_config_word(loc_, 0x18, temp); in assign_bus_numbers() 376 uint32_t temp; in assign_resource() local 383 pci_write_config_word(loc(), 0x1c, temp); in assign_resource() 414 pci_write_config_word(loc(), 0x24, temp); in assign_resource() [all …]
|
| A D | bus.cpp | 171 device::bar_alloc_request *r, *temp; in allocate_resources() local 172 list_for_every_entry_safe(main_list, r, temp, device::bar_alloc_request, node) { in allocate_resources() 216 device::bar_alloc_request *r, *temp; in allocate_resources() local 217 list_for_every_entry_safe(&io_requests, r, temp, device::bar_alloc_request, node) { in allocate_resources() 234 list_for_every_entry_safe(&mmio_requests, r, temp, device::bar_alloc_request, node) { in allocate_resources()
|
| A D | device.cpp | 556 uint32_t temp; in assign_resource() local 559 temp = (address & 0xfffc); in assign_resource() 560 pci_write_config_word(loc(), PCI_CONFIG_BASE_ADDRESSES + request->bar_num * 4, temp); in assign_resource() 563 temp = (address & 0xfffffff0); in assign_resource() 564 pci_write_config_word(loc(), PCI_CONFIG_BASE_ADDRESSES + request->bar_num * 4, temp); in assign_resource() 567 temp = (address & 0xfffffff0); in assign_resource() 568 pci_write_config_word(loc(), PCI_CONFIG_BASE_ADDRESSES + request->bar_num * 4, temp); in assign_resource() 569 temp = address >> 32; in assign_resource() 570 … pci_write_config_word(loc(), PCI_CONFIG_BASE_ADDRESSES + request->bar_num * 4 + 4, temp); in assign_resource()
|
| /dev/bus/pci/backend/ |
| A D | bios32.cpp | 125 uint32_t adr, temp, len; in detect() local 137 "=d"(temp) /* EDX out=entry pt offset in code */ in detect() 154 LTRACEF("BIOS32 entry segment base %#x offset %#x\n", adr, temp); in detect() 156 b32_entry.offset = adr + temp + KERNEL_BASE; in detect()
|
Completed in 15 milliseconds