Searched refs:temp_64 (Results 1 - 7 of 7) sorted by relevance
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
H A D | mad.c | 3292 u64 temp_64; in pma_get_ib_portcounters() local 3317 temp_64 = be64_to_cpu(rsp.port_rcv_errors); in pma_get_ib_portcounters() 3318 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters() 3321 p->port_rcv_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3323 temp_64 = be64_to_cpu(rsp.port_rcv_remote_physical_errors); in pma_get_ib_portcounters() 3324 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters() 3327 p->port_rcv_remphys_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3329 temp_64 = be64_to_cpu(rsp.port_rcv_switch_relay_errors); in pma_get_ib_portcounters() 3330 p->port_rcv_switch_relay_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3332 temp_64 in pma_get_ib_portcounters() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/ |
H A D | mad.c | 3250 u64 temp_64; in pma_get_ib_portcounters() local 3275 temp_64 = be64_to_cpu(rsp.port_rcv_errors); in pma_get_ib_portcounters() 3276 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters() 3279 p->port_rcv_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3281 temp_64 = be64_to_cpu(rsp.port_rcv_remote_physical_errors); in pma_get_ib_portcounters() 3282 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters() 3285 p->port_rcv_remphys_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3287 temp_64 = be64_to_cpu(rsp.port_rcv_switch_relay_errors); in pma_get_ib_portcounters() 3288 p->port_rcv_switch_relay_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters() 3290 temp_64 in pma_get_ib_portcounters() [all...] |
/kernel/linux/linux-6.6/drivers/usb/cdns3/ |
H A D | cdnsp-gadget.c | 1341 u64 temp_64; in cdnsp_update_erst_dequeue() local 1344 temp_64 = cdnsp_read_64(&pdev->ir_set->erst_dequeue); in cdnsp_update_erst_dequeue() 1350 temp_64 &= ERST_PTR_MASK; in cdnsp_update_erst_dequeue() 1351 temp_64 |= ((u64)deq & (u64)~ERST_PTR_MASK); in cdnsp_update_erst_dequeue() 1356 temp_64 |= ERST_EHB; in cdnsp_update_erst_dequeue() 1358 temp_64 &= ~ERST_EHB; in cdnsp_update_erst_dequeue() 1360 cdnsp_write_64(temp_64, &pdev->ir_set->erst_dequeue); in cdnsp_update_erst_dequeue()
|
/kernel/linux/linux-5.10/drivers/usb/host/ |
H A D | xhci-ring.c | 2927 u64 temp_64; in xhci_update_erst_dequeue() local 2930 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); in xhci_update_erst_dequeue() 2941 if ((temp_64 & (u64) ~ERST_PTR_MASK) == in xhci_update_erst_dequeue() 2946 temp_64 &= ERST_PTR_MASK; in xhci_update_erst_dequeue() 2947 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK); in xhci_update_erst_dequeue() 2951 temp_64 |= ERST_EHB; in xhci_update_erst_dequeue() 2952 xhci_write_64(xhci, temp_64, &xhci->ir_set->erst_dequeue); in xhci_update_erst_dequeue() 2966 u64 temp_64; in xhci_irq() local 3011 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); in xhci_irq() 3012 xhci_write_64(xhci, temp_64 | ERST_EH in xhci_irq() [all...] |
H A D | xhci.c | 645 u64 temp_64; in xhci_run() local 663 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); in xhci_run() 664 temp_64 &= ~ERST_PTR_MASK; in xhci_run() 666 "ERST deq = 64'h%0lx", (long unsigned int) temp_64); in xhci_run() 4133 u64 temp_64; in xhci_setup_device() local 4271 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); in xhci_setup_device() 4273 "Op regs DCBAA ptr = %#016llx", temp_64); in xhci_setup_device()
|
/kernel/linux/linux-6.6/drivers/usb/host/ |
H A D | xhci-ring.c | 3052 u64 temp_64; in xhci_update_erst_dequeue() local 3055 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_update_erst_dequeue() 3066 if ((temp_64 & (u64) ~ERST_PTR_MASK) == in xhci_update_erst_dequeue() 3071 temp_64 &= ERST_DESI_MASK; in xhci_update_erst_dequeue() 3072 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK); in xhci_update_erst_dequeue() 3077 temp_64 |= ERST_EHB; in xhci_update_erst_dequeue() 3078 xhci_write_64(xhci, temp_64, &ir->ir_set->erst_dequeue); in xhci_update_erst_dequeue() 3092 u64 temp_64; in xhci_irq() local 3144 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_irq() 3145 xhci_write_64(xhci, temp_64 | ERST_EH in xhci_irq() [all...] |
H A D | xhci.c | 508 u64 temp_64; in xhci_run() local 522 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_run() 523 temp_64 &= ~ERST_PTR_MASK; in xhci_run() 525 "ERST deq = 64'h%0lx", (long unsigned int) temp_64); in xhci_run() 4024 u64 temp_64; in xhci_setup_device() local 4160 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); in xhci_setup_device() 4162 "Op regs DCBAA ptr = %#016llx", temp_64); in xhci_setup_device()
|
Completed in 36 milliseconds