Home
last modified time | relevance | path

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

/linux-2.6.39/drivers/tty/serial/
Dsh-sci.c134 status = sci_in(port, SCxSR); in sci_poll_get_char()
145 c = sci_in(port, SCxRDR); in sci_poll_get_char()
148 sci_in(port, SCxSR); in sci_poll_get_char()
160 status = sci_in(port, SCxSR); in sci_poll_put_char()
288 return sci_in(port, SCTFDR) & 0xff; in scif_txfill()
298 return sci_in(port, SCRFDR) & 0xff; in scif_rxfill()
306 return sci_in(port, SCTFDR) & 0xff; in scif_txfill()
309 return sci_in(port, SCFDR) >> 8; in scif_txfill()
328 return sci_in(port, SCRFDR) & 0xff; in scif_rxfill()
331 return sci_in(port, SCFDR) & SCIF2_RFDC_MASK; in scif_rxfill()
[all …]
Dsh-sci.h176 # define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
177 # define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
178 # define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
179 # define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
390 #define sci_in(port, reg) sci_##reg##_in(port) macro