Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 1 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/serial_core.h> |
Paul Mundt | edad1f2 | 2009-11-25 16:23:35 +0900 | [diff] [blame] | 3 | #include <linux/io.h> |
Magnus Damm | 69edbba | 2008-12-25 18:17:34 +0900 | [diff] [blame] | 4 | #include <linux/gpio.h> |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 5 | |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 6 | #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 | */ |
| 14 | enum { |
| 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 Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 28 | SCPCR, /* Serial Port Control Register */ |
| 29 | SCPDR, /* Serial Port Data Register */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 30 | |
| 31 | SCIx_NR_REGS, |
| 32 | }; |
| 33 | |
| 34 | |
| 35 | /* SCSMR (Serial Mode Register) */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 36 | #define SCSMR_CHR BIT(6) /* 7-bit Character Length */ |
| 37 | #define SCSMR_PE BIT(5) /* Parity Enable */ |
| 38 | #define SCSMR_ODD BIT(4) /* Odd Parity */ |
| 39 | #define SCSMR_STOP BIT(3) /* Stop Bit Length */ |
| 40 | #define SCSMR_CKS 0x0003 /* Clock Select */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 41 | |
| 42 | /* Serial Control Register, SCIFA/SCIFB only bits */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 43 | #define SCSCR_TDRQE BIT(15) /* Tx Data Transfer Request Enable */ |
| 44 | #define SCSCR_RDRQE BIT(14) /* Rx Data Transfer Request Enable */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 45 | |
| 46 | /* SCxSR (Serial Status Register) on SCI */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 47 | #define SCI_TDRE BIT(7) /* Transmit Data Register Empty */ |
| 48 | #define SCI_RDRF BIT(6) /* Receive Data Register Full */ |
| 49 | #define SCI_ORER BIT(5) /* Overrun Error */ |
| 50 | #define SCI_FER BIT(4) /* Framing Error */ |
| 51 | #define SCI_PER BIT(3) /* Parity Error */ |
| 52 | #define SCI_TEND BIT(2) /* Transmit End */ |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 53 | #define SCI_RESERVED 0x03 /* All reserved bits */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 54 | |
| 55 | #define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER) |
| 56 | |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 57 | #define SCI_RDxF_CLEAR ~(SCI_RESERVED | SCI_RDRF) |
| 58 | #define SCI_ERROR_CLEAR ~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER) |
| 59 | #define SCI_TDxE_CLEAR ~(SCI_RESERVED | SCI_TEND | SCI_TDRE) |
| 60 | #define SCI_BREAK_CLEAR ~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER) |
| 61 | |
| 62 | /* SCxSR (Serial Status Register) on SCIF, SCIFA, SCIFB, HSCIF */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 63 | #define SCIF_ER BIT(7) /* Receive Error */ |
| 64 | #define SCIF_TEND BIT(6) /* Transmission End */ |
| 65 | #define SCIF_TDFE BIT(5) /* Transmit FIFO Data Empty */ |
| 66 | #define SCIF_BRK BIT(4) /* Break Detect */ |
| 67 | #define SCIF_FER BIT(3) /* Framing Error */ |
| 68 | #define SCIF_PER BIT(2) /* Parity Error */ |
| 69 | #define SCIF_RDF BIT(1) /* Receive FIFO Data Full */ |
| 70 | #define SCIF_DR BIT(0) /* Receive Data Ready */ |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 71 | /* SCIF only (optional) */ |
| 72 | #define SCIF_PERC 0xf000 /* Number of Parity Errors */ |
| 73 | #define SCIF_FERC 0x0f00 /* Number of Framing Errors */ |
| 74 | /*SCIFA/SCIFB and SCIF on SH7705/SH7720/SH7721 only */ |
| 75 | #define SCIFA_ORER BIT(9) /* Overrun Error */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 76 | |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 77 | #define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_BRK | SCIF_ER) |
| 78 | |
| 79 | #define SCIF_RDxF_CLEAR ~(SCIF_DR | SCIF_RDF) |
| 80 | #define SCIF_ERROR_CLEAR ~(SCIFA_ORER | SCIF_PER | SCIF_FER | SCIF_ER) |
| 81 | #define SCIF_TDxE_CLEAR ~(SCIF_TDFE) |
| 82 | #define SCIF_BREAK_CLEAR ~(SCIF_PER | SCIF_FER | SCIF_BRK) |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 83 | |
| 84 | /* SCFCR (FIFO Control Register) */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 85 | #define SCFCR_MCE BIT(3) /* Modem Control Enable */ |
| 86 | #define SCFCR_TFRST BIT(2) /* Transmit FIFO Data Register Reset */ |
| 87 | #define SCFCR_RFRST BIT(1) /* Receive FIFO Data Register Reset */ |
| 88 | #define SCFCR_LOOP BIT(0) /* Loopback Test */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 89 | |
| 90 | /* SCSPTR (Serial Port Register), optional */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 91 | #define SCSPTR_RTSIO BIT(7) /* Serial Port RTS Pin Input/Output */ |
| 92 | #define SCSPTR_RTSDT BIT(6) /* Serial Port RTS Pin Data */ |
| 93 | #define SCSPTR_CTSIO BIT(5) /* Serial Port CTS Pin Input/Output */ |
| 94 | #define SCSPTR_CTSDT BIT(4) /* Serial Port CTS Pin Data */ |
| 95 | #define SCSPTR_SPB2IO BIT(1) /* Serial Port Break Input/Output */ |
| 96 | #define SCSPTR_SPB2DT BIT(0) /* Serial Port Break Data */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 97 | |
| 98 | /* HSSRR HSCIF */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 99 | #define HSCIF_SRE BIT(15) /* Sampling Rate Register Enable */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 100 | |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 101 | /* SCPCR (Serial Port Control Register), SCIFA/SCIFB only */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 102 | #define SCPCR_RTSC BIT(4) /* Serial Port RTS Pin / Output Pin */ |
| 103 | #define SCPCR_CTSC BIT(3) /* Serial Port CTS Pin / Input Pin */ |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 104 | |
| 105 | /* SCPDR (Serial Port Data Register), SCIFA/SCIFB only */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 106 | #define SCPDR_RTSD BIT(4) /* Serial Port RTS Output Pin Data */ |
| 107 | #define SCPDR_CTSD BIT(3) /* Serial Port CTS Input Pin Data */ |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 108 | |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 109 | |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 110 | #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 111 | #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF) |
| 112 | #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE) |
| 113 | #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER) |
| 114 | #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER) |
| 115 | #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK) |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 116 | |
Laurent Pinchart | 3ae988d | 2013-12-06 10:59:17 +0100 | [diff] [blame] | 117 | #define SCxSR_ERRORS(port) (to_sci_port(port)->error_mask) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 118 | |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 119 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 120 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 121 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 6d9598e | 2010-11-17 10:59:31 +0000 | [diff] [blame] | 122 | defined(CONFIG_ARCH_SH73A0) || \ |
Kuninori Morimoto | 6c01ba4 | 2011-11-10 18:45:52 -0800 | [diff] [blame] | 123 | defined(CONFIG_ARCH_R8A7740) |
| 124 | |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 125 | # define SCxSR_RDxF_CLEAR(port) \ |
| 126 | (serial_port_in(port, SCxSR) & SCIF_RDxF_CLEAR) |
| 127 | # define SCxSR_ERROR_CLEAR(port) \ |
| 128 | (serial_port_in(port, SCxSR) & SCIF_ERROR_CLEAR) |
| 129 | # define SCxSR_TDxE_CLEAR(port) \ |
| 130 | (serial_port_in(port, SCxSR) & SCIF_TDxE_CLEAR) |
| 131 | # define SCxSR_BREAK_CLEAR(port) \ |
| 132 | (serial_port_in(port, SCxSR) & SCIF_BREAK_CLEAR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #else |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame^] | 134 | # define SCxSR_RDxF_CLEAR(port) \ |
| 135 | ((((port)->type == PORT_SCI) ? SCI_RDxF_CLEAR : SCIF_RDxF_CLEAR) & 0xff) |
| 136 | # define SCxSR_ERROR_CLEAR(port) \ |
| 137 | ((((port)->type == PORT_SCI) ? SCI_ERROR_CLEAR : SCIF_ERROR_CLEAR) & 0xff) |
| 138 | # define SCxSR_TDxE_CLEAR(port) \ |
| 139 | ((((port)->type == PORT_SCI) ? SCI_TDxE_CLEAR : SCIF_TDxE_CLEAR) & 0xff) |
| 140 | # define SCxSR_BREAK_CLEAR(port) \ |
| 141 | ((((port)->type == PORT_SCI) ? SCI_BREAK_CLEAR : SCIF_BREAK_CLEAR) & 0xff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #endif |
| 143 | |