Lines Matching defs:offset
13 #define PORT(offset) (CKSEG1ADDR(UART_BASE) + (offset))
18 #define PORT(offset) (CKSEG1ADDR(AR7_REGS_UART0) + (4 * offset))
23 #define PORT(offset) (CKSEG1ADDR(INGENIC_UART_BASE_ADDR) + (4 * offset))
34 static inline unsigned int serial_in(int offset)
36 return *((volatile IOTYPE *)PORT(offset)) & 0xFF;
39 static inline void serial_out(int offset, int value)
41 *((volatile IOTYPE *)PORT(offset)) = value & 0xFF;