blob: 7a4fa185b93ef30792d58a24d7f26dbb2ec0156e [file] [log] [blame]
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +02001#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/serial_core.h>
Paul Mundtedad1f22009-11-25 16:23:35 +09003#include <linux/io.h>
Magnus Damm69edbba2008-12-25 18:17:34 +09004#include <linux/gpio.h>
Markus Brunner3ea6bc32007-08-20 08:59:33 +09005
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +02006#define SCI_MAJOR 204
7#define SCI_MINOR_START 8
8
9
10/*
11 * SCI register subset common for all port types.
12 * Not all registers will exist on all parts.
13 */
14enum {
15 SCSMR, /* Serial Mode Register */
16 SCBRR, /* Bit Rate Register */
17 SCSCR, /* Serial Control Register */
18 SCxSR, /* Serial Status Register */
19 SCFCR, /* FIFO Control Register */
20 SCFDR, /* FIFO Data Count Register */
21 SCxTDR, /* Transmit (FIFO) Data Register */
22 SCxRDR, /* Receive (FIFO) Data Register */
23 SCLSR, /* Line Status Register */
24 SCTFDR, /* Transmit FIFO Data Count Register */
25 SCRFDR, /* Receive FIFO Data Count Register */
26 SCSPTR, /* Serial Port Register */
27 HSSRR, /* Sampling Rate Register */
Geert Uytterhoevenc097abc2015-04-30 18:21:27 +020028 SCPCR, /* Serial Port Control Register */
29 SCPDR, /* Serial Port Data Register */
Geert Uytterhoevenb8bbd6b2015-11-12 13:36:06 +010030 SCDL, /* BRG Frequency Division Register */
31 SCCKS, /* BRG Clock Select Register */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020032
33 SCIx_NR_REGS,
34};
35
36
37/* SCSMR (Serial Mode Register) */
Geert Uytterhoeven95ee05c2016-01-04 14:45:18 +010038#define SCSMR_C_A BIT(7) /* Communication Mode */
39#define SCSMR_CSYNC BIT(7) /* - Clocked synchronous mode */
40#define SCSMR_ASYNC 0 /* - Asynchronous mode */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +020041#define SCSMR_CHR BIT(6) /* 7-bit Character Length */
42#define SCSMR_PE BIT(5) /* Parity Enable */
43#define SCSMR_ODD BIT(4) /* Odd Parity */
44#define SCSMR_STOP BIT(3) /* Stop Bit Length */
45#define SCSMR_CKS 0x0003 /* Clock Select */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020046
Geert Uytterhoeven95ee05c2016-01-04 14:45:18 +010047/* Serial Mode Register, SCIFA/SCIFB only bits */
48#define SCSMR_CKEDG BIT(12) /* Transmit/Receive Clock Edge Select */
49#define SCSMR_SRC_MASK 0x0700 /* Sampling Control */
50#define SCSMR_SRC_16 0x0000 /* Sampling rate 1/16 */
51#define SCSMR_SRC_5 0x0100 /* Sampling rate 1/5 */
52#define SCSMR_SRC_7 0x0200 /* Sampling rate 1/7 */
53#define SCSMR_SRC_11 0x0300 /* Sampling rate 1/11 */
54#define SCSMR_SRC_13 0x0400 /* Sampling rate 1/13 */
55#define SCSMR_SRC_17 0x0500 /* Sampling rate 1/17 */
56#define SCSMR_SRC_19 0x0600 /* Sampling rate 1/19 */
57#define SCSMR_SRC_27 0x0700 /* Sampling rate 1/27 */
58
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020059/* Serial Control Register, SCIFA/SCIFB only bits */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +020060#define SCSCR_TDRQE BIT(15) /* Tx Data Transfer Request Enable */
61#define SCSCR_RDRQE BIT(14) /* Rx Data Transfer Request Enable */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020062
63/* SCxSR (Serial Status Register) on SCI */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +020064#define SCI_TDRE BIT(7) /* Transmit Data Register Empty */
65#define SCI_RDRF BIT(6) /* Receive Data Register Full */
66#define SCI_ORER BIT(5) /* Overrun Error */
67#define SCI_FER BIT(4) /* Framing Error */
68#define SCI_PER BIT(3) /* Parity Error */
69#define SCI_TEND BIT(2) /* Transmit End */
Geert Uytterhoeven29225982015-04-30 18:21:30 +020070#define SCI_RESERVED 0x03 /* All reserved bits */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020071
72#define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
73
Geert Uytterhoevena9efeca2015-08-21 20:02:26 +020074#define SCI_RDxF_CLEAR (u32)(~(SCI_RESERVED | SCI_RDRF))
75#define SCI_ERROR_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER))
76#define SCI_TDxE_CLEAR (u32)(~(SCI_RESERVED | SCI_TEND | SCI_TDRE))
77#define SCI_BREAK_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER))
Geert Uytterhoeven29225982015-04-30 18:21:30 +020078
79/* SCxSR (Serial Status Register) on SCIF, SCIFA, SCIFB, HSCIF */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +020080#define SCIF_ER BIT(7) /* Receive Error */
81#define SCIF_TEND BIT(6) /* Transmission End */
82#define SCIF_TDFE BIT(5) /* Transmit FIFO Data Empty */
83#define SCIF_BRK BIT(4) /* Break Detect */
84#define SCIF_FER BIT(3) /* Framing Error */
85#define SCIF_PER BIT(2) /* Parity Error */
86#define SCIF_RDF BIT(1) /* Receive FIFO Data Full */
87#define SCIF_DR BIT(0) /* Receive Data Ready */
Geert Uytterhoeven29225982015-04-30 18:21:30 +020088/* SCIF only (optional) */
89#define SCIF_PERC 0xf000 /* Number of Parity Errors */
90#define SCIF_FERC 0x0f00 /* Number of Framing Errors */
91/*SCIFA/SCIFB and SCIF on SH7705/SH7720/SH7721 only */
92#define SCIFA_ORER BIT(9) /* Overrun Error */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +020093
Geert Uytterhoeven29225982015-04-30 18:21:30 +020094#define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_BRK | SCIF_ER)
95
Geert Uytterhoevena9efeca2015-08-21 20:02:26 +020096#define SCIF_RDxF_CLEAR (u32)(~(SCIF_DR | SCIF_RDF))
Geert Uytterhoeven5da0f462015-08-21 20:02:27 +020097#define SCIF_ERROR_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_ER))
Geert Uytterhoevena9efeca2015-08-21 20:02:26 +020098#define SCIF_TDxE_CLEAR (u32)(~(SCIF_TDFE))
99#define SCIF_BREAK_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_BRK))
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200100
101/* SCFCR (FIFO Control Register) */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +0200102#define SCFCR_MCE BIT(3) /* Modem Control Enable */
103#define SCFCR_TFRST BIT(2) /* Transmit FIFO Data Register Reset */
104#define SCFCR_RFRST BIT(1) /* Receive FIFO Data Register Reset */
105#define SCFCR_LOOP BIT(0) /* Loopback Test */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200106
Geert Uytterhoeven75c249f2015-04-30 18:21:31 +0200107/* SCLSR (Line Status Register) on (H)SCIF */
108#define SCLSR_ORER BIT(0) /* Overrun Error */
109
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200110/* SCSPTR (Serial Port Register), optional */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +0200111#define SCSPTR_RTSIO BIT(7) /* Serial Port RTS Pin Input/Output */
112#define SCSPTR_RTSDT BIT(6) /* Serial Port RTS Pin Data */
113#define SCSPTR_CTSIO BIT(5) /* Serial Port CTS Pin Input/Output */
114#define SCSPTR_CTSDT BIT(4) /* Serial Port CTS Pin Data */
115#define SCSPTR_SPB2IO BIT(1) /* Serial Port Break Input/Output */
116#define SCSPTR_SPB2DT BIT(0) /* Serial Port Break Data */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200117
118/* HSSRR HSCIF */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +0200119#define HSCIF_SRE BIT(15) /* Sampling Rate Register Enable */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200120
Geert Uytterhoevenc097abc2015-04-30 18:21:27 +0200121/* SCPCR (Serial Port Control Register), SCIFA/SCIFB only */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +0200122#define SCPCR_RTSC BIT(4) /* Serial Port RTS Pin / Output Pin */
123#define SCPCR_CTSC BIT(3) /* Serial Port CTS Pin / Input Pin */
Geert Uytterhoevenc097abc2015-04-30 18:21:27 +0200124
125/* SCPDR (Serial Port Data Register), SCIFA/SCIFB only */
Geert Uytterhoevend94a0a32015-04-30 18:21:29 +0200126#define SCPDR_RTSD BIT(4) /* Serial Port RTS Output Pin Data */
127#define SCPDR_CTSD BIT(3) /* Serial Port CTS Input Pin Data */
Geert Uytterhoevenc097abc2015-04-30 18:21:27 +0200128
Geert Uytterhoevenb8bbd6b2015-11-12 13:36:06 +0100129/*
130 * BRG Clock Select Register (Some SCIF and HSCIF)
131 * The Baud Rate Generator for external clock can provide a clock source for
132 * the sampling clock. It outputs either its frequency divided clock, or the
133 * (undivided) (H)SCK external clock.
134 */
135#define SCCKS_CKS BIT(15) /* Select (H)SCK (1) or divided SC_CLK (0) */
136#define SCCKS_XIN BIT(14) /* SC_CLK uses bus clock (1) or SCIF_CLK (0) */
Geert Uytterhoevenc27ffc12015-04-30 18:21:25 +0200137
Paul Mundt15c73aa2008-10-02 19:47:12 +0900138#define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900139#define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
140#define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
141#define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
142#define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
143#define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
Paul Mundtdebf9502011-06-08 18:19:37 +0900144
Laurent Pinchart3ae988d2013-12-06 10:59:17 +0100145#define SCxSR_ERRORS(port) (to_sci_port(port)->error_mask)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900146
Geert Uytterhoevena1b5b432015-08-21 20:02:25 +0200147#define SCxSR_RDxF_CLEAR(port) \
148 (((port)->type == PORT_SCI) ? SCI_RDxF_CLEAR : SCIF_RDxF_CLEAR)
149#define SCxSR_ERROR_CLEAR(port) \
Geert Uytterhoeven5da0f462015-08-21 20:02:27 +0200150 (to_sci_port(port)->error_clear)
Geert Uytterhoevena1b5b432015-08-21 20:02:25 +0200151#define SCxSR_TDxE_CLEAR(port) \
152 (((port)->type == PORT_SCI) ? SCI_TDxE_CLEAR : SCIF_TDxE_CLEAR)
153#define SCxSR_BREAK_CLEAR(port) \
154 (((port)->type == PORT_SCI) ? SCI_BREAK_CLEAR : SCIF_BREAK_CLEAR)