Home
last modified time | relevance | path

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

/xen-4.10.0-shim-comet/xen/arch/arm/arm32/
A Ddebug-pl011.inc23 * rb: register which contains the UART base address
27 .macro early_uart_init rb, rc, rd
31 str \rc, [\rb, #IBRD] /* -> UARTIBRD (Baud divisor integer) */
33 str \rc, [\rb, #LCR_H] /* -> UARTLCR_H (Line control) */
35 str \rc, [\rb, #CR] /* -> UARTCR (Control Register) */
40 * rb: register which contains the UART base address
43 .macro early_uart_ready rb, rc
45 ldr \rc, [\rb, #FR] /* <- UARTFR (Flag register) */
52 * rb: register which contains the UART base address
55 .macro early_uart_transmit rb, rt
[all …]
A Ddebug-scif.inc24 * rb: register which contains the UART base address
27 .macro early_uart_ready rb rc
29 ldrh \rc, [\rb, #SCIF_SCFSR] /* <- SCFSR (status register) */
36 * rb: register which contains the UART base address
39 .macro early_uart_transmit rb rt
40 strb \rt, [\rb, #SCIF_SCFTDR] /* -> SCFTDR (data register) */
41 ldrh \rt, [\rb, #SCIF_SCFSR] /* <- SCFSR (status register) */
43 strh \rt, [\rb, #SCIF_SCFSR] /* -> SCFSR (status register) */
A Ddebug-8250.inc21 * rb: register which contains the UART base address
24 .macro early_uart_ready rb rc
26 ldr \rc, [\rb, #(UART_LSR << EARLY_UART_REG_SHIFT)] /* Read LSR */
33 * rb: register which contains the UART base address
36 .macro early_uart_transmit rb rt
37 str \rt, [\rb, #UART_THR] /* Write Transmit buffer */
A Ddebug-exynos4210.inc23 * rb: register which contains the UART base address
26 .macro early_uart_ready rb rc
28 ldr \rc, [\rb, #UTRSTAT] /* <- UTRSTAT (Flag register) */
35 * rb: register which contains the UART base address
38 .macro early_uart_transmit rb rt
39 str \rt, [\rb, #UTXH] /* -> UTXH (Data Register) */
/xen-4.10.0-shim-comet/xen/include/xen/
A Drbtree.h119 static inline void rb_set_parent(struct rb_node *rb, struct rb_node *p) in rb_set_parent() argument
121 rb->rb_parent_color = (rb->rb_parent_color & 3) | (unsigned long)p; in rb_set_parent()
123 static inline void rb_set_color(struct rb_node *rb, int color) in rb_set_color() argument
125 rb->rb_parent_color = (rb->rb_parent_color & ~1) | color; in rb_set_color()

Completed in 8 milliseconds