Home
last modified time | relevance | path

Searched refs:val_64 (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/drivers/usb/cdns3/
Dcdnsp-mem.c1215 u64 val_64; in cdnsp_mem_init() local
1266 val_64 = cdnsp_read_64(&pdev->op_regs->cmd_ring); in cdnsp_mem_init()
1267 val_64 = (val_64 & (u64)CMD_RING_RSVD_BITS) | in cdnsp_mem_init()
1270 cdnsp_write_64(val_64, &pdev->op_regs->cmd_ring); in cdnsp_mem_init()
1299 val_64 = cdnsp_read_64(&pdev->ir_set->erst_base); in cdnsp_mem_init()
1300 val_64 &= ERST_PTR_MASK; in cdnsp_mem_init()
1301 val_64 |= (pdev->erst.erst_dma_addr & (u64)~ERST_PTR_MASK); in cdnsp_mem_init()
1302 cdnsp_write_64(val_64, &pdev->ir_set->erst_base); in cdnsp_mem_init()
Dcdnsp-gadget.c1363 u64 val_64; in cdnsp_clear_cmd_ring() local
1376 val_64 = cdnsp_read_64(&pdev->op_regs->cmd_ring); in cdnsp_clear_cmd_ring()
1377 val_64 = (val_64 & (u64)CMD_RING_RSVD_BITS) | in cdnsp_clear_cmd_ring()
1380 cdnsp_write_64(val_64, &pdev->op_regs->cmd_ring); in cdnsp_clear_cmd_ring()
/linux-6.1.9/drivers/usb/host/
Dxhci-mem.c2383 u64 val_64; in xhci_mem_init() local
2477 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring); in xhci_mem_init()
2478 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) | in xhci_mem_init()
2482 "// Setting command ring address to 0x%016llx", val_64); in xhci_mem_init()
2483 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring); in xhci_mem_init()
2531 val_64 = xhci_read_64(xhci, &xhci->ir_set->erst_base); in xhci_mem_init()
2532 val_64 &= ERST_PTR_MASK; in xhci_mem_init()
2533 val_64 |= (xhci->erst.erst_dma_addr & (u64) ~ERST_PTR_MASK); in xhci_mem_init()
2534 xhci_write_64(xhci, val_64, &xhci->ir_set->erst_base); in xhci_mem_init()
Dxhci.c861 u64 val_64; in xhci_set_cmd_ring_deq() local
864 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring); in xhci_set_cmd_ring_deq()
865 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) | in xhci_set_cmd_ring_deq()
872 (long unsigned long) val_64); in xhci_set_cmd_ring_deq()
873 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring); in xhci_set_cmd_ring_deq()
/linux-6.1.9/tools/testing/selftests/sgx/
Dmain.c1236 uint64_t val_64; in TEST_F() local
1359 val_64 = encl_get_entry(&self->encl, "encl_dyn_entry"); in TEST_F()
1360 EXPECT_NE(val_64, 0); in TEST_F()
1364 init_tcs_page_op.entry = val_64; in TEST_F()