Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/tty/serial/
Dsh-sci.h5 #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
6 #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
7 #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
8 #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
9 #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
10 #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
28 # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
29 # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
30 # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
31 # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
Dsh-sci.c361 case PORT_SCI: in sci_probe_regmap()
587 if (port->type != PORT_SCI) { in sci_transmit_chars()
620 if (port->type == PORT_SCI) { in sci_receive_chars()
906 if (port->type == PORT_SCI) { in sci_er_interrupt()
1899 case PORT_SCI: in sci_type()
2096 p->error_mask = (p->type == PORT_SCI) ? in sci_init_single()
2104 if (p->type == PORT_SCI) in sci_init_single()
/linux-3.4.99/arch/sh/kernel/cpu/sh3/
Dsetup-sh770x.c116 .type = PORT_SCI,
/linux-3.4.99/arch/sh/kernel/cpu/sh4/
Dsetup-sh7760.c188 .type = PORT_SCI,
Dsetup-sh7750.c45 .type = PORT_SCI,
/linux-3.4.99/include/linux/
Dserial_core.h88 #define PORT_SCI 52 macro