Home
last modified time | relevance | path

Searched refs:lower32 (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/hw/net/rocker/
H A Drocker.c65 uint64_t lower32; /* lower 32-bit val in 2-part 64-bit access */ member
789 r->lower32 = (uint64_t)val; in rocker_io_writel()
793 ((uint64_t)val) << 32 | r->lower32); in rocker_io_writel()
794 r->lower32 = 0; in rocker_io_writel()
828 r->lower32 = (uint64_t)val; in rocker_io_writel()
831 r->test_reg64 = ((uint64_t)val) << 32 | r->lower32; in rocker_io_writel()
832 r->lower32 = 0; in rocker_io_writel()
841 r->test_dma_addr = ((uint64_t)val) << 32 | r->lower32; in rocker_io_writel()
842 r->lower32 = 0; in rocker_io_writel()
851 rocker_port_phys_enable_write(r, ((uint64_t)val) << 32 | r->lower32); in rocker_io_writel()
[all …]
/openbmc/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_private.h139 #define lower32(a) lower_32_bits(a) macro