Home
last modified time | relevance | path

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

/linux-2.6.39/arch/frv/kernel/
Ddebug-stub.c28 #define __UART0(X) (*(volatile uint8_t *)(UART0_BASE + (UART_##X))) macro
32 } while (!(__UART0(LSR) & UART_LSR_##STATE))
34 #define FLOWCTL_QUERY0(LINE) ({ __UART0(MSR) & UART_MSR_##LINE; })
35 #define FLOWCTL_CLEAR0(LINE) do { __UART0(MCR) &= ~UART_MCR_##LINE; } while (0)
36 #define FLOWCTL_SET0(LINE) do { __UART0(MCR) |= UART_MCR_##LINE; } while (0)
167 __UART0(TX) = 0x0d; in debug_to_serial()
172 __UART0(TX) = ch; in debug_to_serial()
218 lcr = __UART0(LCR); in console_set_baud()
219 __UART0(LCR) |= UART_LCR_DLAB; in console_set_baud()
221 __UART0(DLL) = value & 0xff; in console_set_baud()
[all …]