Home
last modified time | relevance | path

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

/xnu-10002.81.5/pexpert/arm/
H A Dpe_serial.c556 BCM2837_PUT32(BCM2837_AUX_MU_IO_REG_V, (uint32_t) c); in pi3_uart_td0()
578 BCM2837_PUT32(BCM2837_AUX_ENABLES_V, 1); in pi3_uart_init()
579 BCM2837_PUT32(BCM2837_AUX_MU_CNTL_REG_V, 0); in pi3_uart_init()
580 BCM2837_PUT32(BCM2837_AUX_MU_LCR_REG_V, 3); in pi3_uart_init()
581 BCM2837_PUT32(BCM2837_AUX_MU_MCR_REG_V, 0); in pi3_uart_init()
582 BCM2837_PUT32(BCM2837_AUX_MU_IER_REG_V, 0); in pi3_uart_init()
583 BCM2837_PUT32(BCM2837_AUX_MU_IIR_REG_V, 0xC6); in pi3_uart_init()
584 BCM2837_PUT32(BCM2837_AUX_MU_BAUD_REG_V, 270); in pi3_uart_init()
593 BCM2837_PUT32(BCM2837_FSEL_REG(14), i); in pi3_uart_init()
595 BCM2837_PUT32(BCM2837_GPPUD_V, 0); in pi3_uart_init()
[all …]
/xnu-10002.81.5/pexpert/pexpert/arm64/
H A DBCM2837.h60 #define BCM2837_PUT32(addr, value) do { *((volatile uint32_t *) addr) = value; } while(0) macro