Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/serial_core.h> |
Paul Mundt | edad1f2 | 2009-11-25 16:23:35 +0900 | [diff] [blame] | 2 | #include <linux/io.h> |
Magnus Damm | 69edbba | 2008-12-25 18:17:34 +0900 | [diff] [blame] | 3 | #include <linux/gpio.h> |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 4 | |
Magnus Damm | 0fbde95 | 2007-07-26 10:14:16 +0900 | [diff] [blame] | 5 | #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \ |
| 6 | defined(CONFIG_CPU_SUBTYPE_SH7707) || \ |
| 7 | defined(CONFIG_CPU_SUBTYPE_SH7708) || \ |
| 8 | defined(CONFIG_CPU_SUBTYPE_SH7709) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | # define SCPCR 0xA4000116 /* 16 bit SCI and SCIF */ |
| 10 | # define SCPDR 0xA4000136 /* 8 bit SCI and SCIF */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #elif defined(CONFIG_CPU_SUBTYPE_SH7705) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | # define SCPCR 0xA4000116 |
| 13 | # define SCPDR 0xA4000136 |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 14 | #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 15 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 6d9598e | 2010-11-17 10:59:31 +0000 | [diff] [blame] | 16 | defined(CONFIG_ARCH_SH73A0) || \ |
Magnus Damm | 8d099d4 | 2010-03-16 11:21:07 +0000 | [diff] [blame] | 17 | defined(CONFIG_ARCH_SH7367) || \ |
| 18 | defined(CONFIG_ARCH_SH7377) || \ |
| 19 | defined(CONFIG_ARCH_SH7372) |
Paul Mundt | fd88cac | 2009-01-09 16:32:08 +0900 | [diff] [blame] | 20 | # define PORT_PTCR 0xA405011EUL |
| 21 | # define PORT_PVCR 0xA4050122UL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #elif defined(CONFIG_SH_RTS7751R2D) |
Matt Fleming | 7abc404 | 2008-10-29 07:16:02 +0000 | [diff] [blame] | 23 | # define SCSPTR1 0xFFE0001C /* 8 bit SCIF */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */ |
Paul Mundt | 0562748 | 2007-05-15 16:25:47 +0900 | [diff] [blame] | 25 | #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \ |
| 26 | defined(CONFIG_CPU_SUBTYPE_SH7750R) || \ |
| 27 | defined(CONFIG_CPU_SUBTYPE_SH7750S) || \ |
| 28 | defined(CONFIG_CPU_SUBTYPE_SH7091) || \ |
| 29 | defined(CONFIG_CPU_SUBTYPE_SH7751) || \ |
| 30 | defined(CONFIG_CPU_SUBTYPE_SH7751R) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | # define SCSPTR1 0xffe0001c /* 8 bit SCI */ |
| 32 | # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #elif defined(CONFIG_CPU_SUBTYPE_SH7760) |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 34 | # define SCSPTR0 0xfe600024 /* 16 bit SCIF */ |
| 35 | # define SCSPTR1 0xfe610024 /* 16 bit SCIF */ |
| 36 | # define SCSPTR2 0xfe620024 /* 16 bit SCIF */ |
Paul Mundt | 2b1bd1a | 2007-06-20 18:27:10 +0900 | [diff] [blame] | 37 | #elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712) |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 38 | # define SCSPTR0 0xA4400000 /* 16 bit SCIF */ |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 39 | # define PACR 0xa4050100 |
| 40 | # define PBCR 0xa4050102 |
Paul Mundt | e108b2c | 2006-09-27 16:32:13 +0900 | [diff] [blame] | 41 | #elif defined(CONFIG_CPU_SUBTYPE_SH7343) |
| 42 | # define SCSPTR0 0xffe00010 /* 16 bit SCIF */ |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 43 | #elif defined(CONFIG_CPU_SUBTYPE_SH7722) |
Magnus Damm | 346b746 | 2008-04-23 21:25:29 +0900 | [diff] [blame] | 44 | # define PWDR 0xA4050166 |
| 45 | # define PSCR 0xA405011E |
Magnus Damm | 9109a30 | 2008-02-08 17:31:24 +0900 | [diff] [blame] | 46 | #elif defined(CONFIG_CPU_SUBTYPE_SH7366) |
| 47 | # define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */ |
| 48 | # define SCSPTR0 SCPDR0 |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 49 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) |
| 50 | # define SCSPTR0 0xa4050160 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #elif defined(CONFIG_CPU_SUBTYPE_SH4_202) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | # define SCSPTR2 0xffe80020 /* 16 bit SCIF */ |
Yoshihiro Shimoda | c01f0f1 | 2009-08-21 16:30:28 +0900 | [diff] [blame] | 53 | #elif defined(CONFIG_CPU_SUBTYPE_SH7757) |
| 54 | # define SCSPTR0 0xfe4b0020 |
Yoshihiro Shimoda | 7d740a0 | 2008-01-07 14:40:07 +0900 | [diff] [blame] | 55 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
| 56 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 57 | #elif defined(CONFIG_CPU_SUBTYPE_SH7770) |
| 58 | # define SCSPTR0 0xff923020 /* 16 bit SCIF */ |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 59 | #elif defined(CONFIG_CPU_SUBTYPE_SH7780) |
| 60 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
Kuninori Morimoto | 55ba99e | 2009-03-03 15:40:25 +0900 | [diff] [blame] | 61 | #elif defined(CONFIG_CPU_SUBTYPE_SH7785) || \ |
| 62 | defined(CONFIG_CPU_SUBTYPE_SH7786) |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 63 | # define SCSPTR0 0xffea0024 /* 16 bit SCIF */ |
Peter Griffin | 2825999 | 2008-11-28 22:48:20 +0900 | [diff] [blame] | 64 | #elif defined(CONFIG_CPU_SUBTYPE_SH7201) || \ |
| 65 | defined(CONFIG_CPU_SUBTYPE_SH7203) || \ |
Paul Mundt | a8f67f4 | 2007-11-26 19:54:02 +0900 | [diff] [blame] | 66 | defined(CONFIG_CPU_SUBTYPE_SH7206) || \ |
| 67 | defined(CONFIG_CPU_SUBTYPE_SH7263) |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 68 | # define SCSPTR0 0xfffe8020 /* 16 bit SCIF */ |
Yoshinori Sato | 9d4436a | 2006-11-05 15:40:13 +0900 | [diff] [blame] | 69 | #elif defined(CONFIG_CPU_SUBTYPE_SH7619) |
| 70 | # define SCSPTR0 0xf8400020 /* 16 bit SCIF */ |
Paul Mundt | 2b1bd1a | 2007-06-20 18:27:10 +0900 | [diff] [blame] | 71 | #elif defined(CONFIG_CPU_SUBTYPE_SHX3) |
| 72 | # define SCSPTR0 0xffc30020 /* 16 bit SCIF */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #else |
| 74 | # error CPU subtype not defined |
| 75 | #endif |
| 76 | |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 77 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 78 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 79 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 6d9598e | 2010-11-17 10:59:31 +0000 | [diff] [blame] | 80 | defined(CONFIG_ARCH_SH73A0) || \ |
Magnus Damm | 8d099d4 | 2010-03-16 11:21:07 +0000 | [diff] [blame] | 81 | defined(CONFIG_ARCH_SH7367) || \ |
| 82 | defined(CONFIG_ARCH_SH7377) || \ |
| 83 | defined(CONFIG_ARCH_SH7372) |
Nobuhiro Iwamatsu | c63847a | 2008-06-06 17:04:08 +0900 | [diff] [blame] | 84 | # define SCIF_RFDC_MASK 0x007f |
| 85 | # define SCIF_TXROOM_MAX 64 |
| 86 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
Nobuhiro Iwamatsu | c63847a | 2008-06-06 17:04:08 +0900 | [diff] [blame] | 87 | # define SCIF_RFDC_MASK 0x007f |
| 88 | # define SCIF_TXROOM_MAX 64 |
| 89 | /* SH7763 SCIF2 support */ |
| 90 | # define SCIF2_RFDC_MASK 0x001f |
| 91 | # define SCIF2_TXROOM_MAX 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #else |
Nobuhiro Iwamatsu | c63847a | 2008-06-06 17:04:08 +0900 | [diff] [blame] | 93 | # define SCIF_RFDC_MASK 0x001f |
| 94 | # define SCIF_TXROOM_MAX 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #endif |
| 96 | |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 97 | #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 98 | #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF) |
| 99 | #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE) |
| 100 | #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER) |
| 101 | #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER) |
| 102 | #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK) |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame^] | 103 | |
| 104 | #define SCxSR_ERRORS(port) (to_sci_port(port)->cfg->error_mask) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 105 | |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 106 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 107 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 108 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 6d9598e | 2010-11-17 10:59:31 +0000 | [diff] [blame] | 109 | defined(CONFIG_ARCH_SH73A0) || \ |
Magnus Damm | 8d099d4 | 2010-03-16 11:21:07 +0000 | [diff] [blame] | 110 | defined(CONFIG_ARCH_SH7367) || \ |
| 111 | defined(CONFIG_ARCH_SH7377) || \ |
| 112 | defined(CONFIG_ARCH_SH7372) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 113 | # define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc) |
| 114 | # define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73) |
| 115 | # define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf) |
| 116 | # define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc) |
| 119 | # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073) |
| 120 | # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df) |
| 121 | # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3) |
| 122 | #endif |
| 123 | |
| 124 | /* SCFCR */ |
| 125 | #define SCFCR_RFRST 0x0002 |
| 126 | #define SCFCR_TFRST 0x0004 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #define SCFCR_MCE 0x0008 |
| 128 | |
| 129 | #define SCI_MAJOR 204 |
| 130 | #define SCI_MINOR_START 8 |
| 131 | |
Paul Mundt | a01cdc1 | 2011-06-08 17:06:25 +0900 | [diff] [blame] | 132 | #define SCI_IN(size, offset) \ |
| 133 | ioread##size(port->membase + (offset)) |
| 134 | |
| 135 | #define SCI_OUT(size, offset, value) \ |
| 136 | iowrite##size(value, port->membase + (offset)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | #define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\ |
| 139 | static inline unsigned int sci_##name##_in(struct uart_port *port) \ |
| 140 | { \ |
Guennadi Liakhovetski | d1d4b10 | 2010-05-23 16:39:09 +0000 | [diff] [blame] | 141 | if (port->type == PORT_SCIF || port->type == PORT_SCIFB) { \ |
Paul Mundt | a01cdc1 | 2011-06-08 17:06:25 +0900 | [diff] [blame] | 142 | return SCI_IN(scif_size, scif_offset); \ |
Yoshihiro Shimoda | 1a22f08 | 2008-11-11 12:19:05 +0900 | [diff] [blame] | 143 | } else { /* PORT_SCI or PORT_SCIFA */ \ |
Paul Mundt | a01cdc1 | 2011-06-08 17:06:25 +0900 | [diff] [blame] | 144 | return SCI_IN(sci_size, sci_offset); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } \ |
| 146 | } \ |
| 147 | static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \ |
| 148 | { \ |
Guennadi Liakhovetski | d1d4b10 | 2010-05-23 16:39:09 +0000 | [diff] [blame] | 149 | if (port->type == PORT_SCIF || port->type == PORT_SCIFB) { \ |
Paul Mundt | a01cdc1 | 2011-06-08 17:06:25 +0900 | [diff] [blame] | 150 | SCI_OUT(scif_size, scif_offset, value); \ |
Yoshihiro Shimoda | 1a22f08 | 2008-11-11 12:19:05 +0900 | [diff] [blame] | 151 | } else { /* PORT_SCI or PORT_SCIFA */ \ |
| 152 | SCI_OUT(sci_size, sci_offset, value); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } \ |
| 154 | } |
| 155 | |
Yoshinori Sato | 168f362 | 2009-04-28 04:40:15 +0000 | [diff] [blame] | 156 | #define CPU_SCIF_FNS(name, scif_offset, scif_size) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | static inline unsigned int sci_##name##_in(struct uart_port *port) \ |
| 158 | { \ |
Paul Mundt | a01cdc1 | 2011-06-08 17:06:25 +0900 | [diff] [blame] | 159 | return SCI_IN(scif_size, scif_offset); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } \ |
| 161 | static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \ |
| 162 | { \ |
| 163 | SCI_OUT(scif_size, scif_offset, value); \ |
| 164 | } |
| 165 | |
Magnus Damm | 8d099d4 | 2010-03-16 11:21:07 +0000 | [diff] [blame] | 166 | #if defined(CONFIG_CPU_SH3) || \ |
Magnus Damm | 6d9598e | 2010-11-17 10:59:31 +0000 | [diff] [blame] | 167 | defined(CONFIG_ARCH_SH73A0) || \ |
Magnus Damm | 8d099d4 | 2010-03-16 11:21:07 +0000 | [diff] [blame] | 168 | defined(CONFIG_ARCH_SH7367) || \ |
| 169 | defined(CONFIG_ARCH_SH7377) || \ |
| 170 | defined(CONFIG_ARCH_SH7372) |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 171 | #if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712) |
| 172 | #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \ |
Paul Mundt | ab7cfb5 | 2011-06-01 14:47:42 +0900 | [diff] [blame] | 173 | sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 174 | CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size) |
| 175 | #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
| 176 | CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 177 | #elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 178 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 179 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 5b02c51 | 2011-04-28 03:10:35 +0000 | [diff] [blame] | 180 | defined(CONFIG_ARCH_SH7367) |
Guennadi Liakhovetski | d1d4b10 | 2010-05-23 16:39:09 +0000 | [diff] [blame] | 181 | #define SCIF_FNS(name, scif_offset, scif_size) \ |
| 182 | CPU_SCIF_FNS(name, scif_offset, scif_size) |
Magnus Damm | 5b02c51 | 2011-04-28 03:10:35 +0000 | [diff] [blame] | 183 | #elif defined(CONFIG_ARCH_SH7377) || \ |
| 184 | defined(CONFIG_ARCH_SH7372) || \ |
| 185 | defined(CONFIG_ARCH_SH73A0) |
Guennadi Liakhovetski | d1d4b10 | 2010-05-23 16:39:09 +0000 | [diff] [blame] | 186 | #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scifb_offset, sh4_scifb_size) \ |
| 187 | CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scifb_offset, sh4_scifb_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | #define SCIF_FNS(name, scif_offset, scif_size) \ |
| 189 | CPU_SCIF_FNS(name, scif_offset, scif_size) |
| 190 | #else |
| 191 | #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \ |
Paul Mundt | ab7cfb5 | 2011-06-01 14:47:42 +0900 | [diff] [blame] | 192 | sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh3_scif_offset, sh3_scif_size) |
| 194 | #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
| 195 | CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size) |
| 196 | #endif |
Kuninori Morimoto | 47948d2 | 2009-04-15 11:42:47 +0900 | [diff] [blame] | 197 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) ||\ |
| 198 | defined(CONFIG_CPU_SUBTYPE_SH7724) |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 199 | #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size) \ |
| 200 | CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size) |
| 201 | #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \ |
| 202 | CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #else |
| 204 | #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \ |
Paul Mundt | ab7cfb5 | 2011-06-01 14:47:42 +0900 | [diff] [blame] | 205 | sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size) |
| 207 | #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \ |
| 208 | CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) |
| 209 | #endif |
| 210 | |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 211 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 212 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 213 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
Magnus Damm | 5b02c51 | 2011-04-28 03:10:35 +0000 | [diff] [blame] | 214 | defined(CONFIG_ARCH_SH7367) |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | SCIF_FNS(SCSMR, 0x00, 16) |
| 217 | SCIF_FNS(SCBRR, 0x04, 8) |
| 218 | SCIF_FNS(SCSCR, 0x08, 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | SCIF_FNS(SCxSR, 0x14, 16) |
| 220 | SCIF_FNS(SCFCR, 0x18, 16) |
| 221 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 222 | SCIF_FNS(SCxTDR, 0x20, 8) |
| 223 | SCIF_FNS(SCxRDR, 0x24, 8) |
Magnus Damm | 8a77b8d | 2010-02-05 11:15:33 +0000 | [diff] [blame] | 224 | SCIF_FNS(SCLSR, 0x00, 0) |
Magnus Damm | 5b02c51 | 2011-04-28 03:10:35 +0000 | [diff] [blame] | 225 | #elif defined(CONFIG_ARCH_SH7377) || \ |
| 226 | defined(CONFIG_ARCH_SH7372) || \ |
| 227 | defined(CONFIG_ARCH_SH73A0) |
Guennadi Liakhovetski | d1d4b10 | 2010-05-23 16:39:09 +0000 | [diff] [blame] | 228 | SCIF_FNS(SCSMR, 0x00, 16) |
| 229 | SCIF_FNS(SCBRR, 0x04, 8) |
| 230 | SCIF_FNS(SCSCR, 0x08, 16) |
| 231 | SCIF_FNS(SCTDSR, 0x0c, 16) |
| 232 | SCIF_FNS(SCFER, 0x10, 16) |
| 233 | SCIF_FNS(SCxSR, 0x14, 16) |
| 234 | SCIF_FNS(SCFCR, 0x18, 16) |
| 235 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 236 | SCIF_FNS(SCTFDR, 0x38, 16) |
| 237 | SCIF_FNS(SCRFDR, 0x3c, 16) |
| 238 | SCIx_FNS(SCxTDR, 0x20, 8, 0x40, 8) |
| 239 | SCIx_FNS(SCxRDR, 0x24, 8, 0x60, 8) |
| 240 | SCIF_FNS(SCLSR, 0x00, 0) |
Kuninori Morimoto | 47948d2 | 2009-04-15 11:42:47 +0900 | [diff] [blame] | 241 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) ||\ |
| 242 | defined(CONFIG_CPU_SUBTYPE_SH7724) |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 243 | SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16) |
| 244 | SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8) |
| 245 | SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16) |
| 246 | SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8) |
| 247 | SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16) |
| 248 | SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8) |
Magnus Damm | f686359 | 2009-01-20 12:18:22 +0900 | [diff] [blame] | 249 | SCIx_FNS(SCSPTR, 0, 0, 0, 0) |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 250 | SCIF_FNS(SCFCR, 0x18, 16) |
| 251 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 252 | SCIF_FNS(SCLSR, 0x24, 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | #else |
Paul Mundt | ab7cfb5 | 2011-06-01 14:47:42 +0900 | [diff] [blame] | 254 | /* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 */ |
| 255 | /* name off sz off sz off sz off sz */ |
| 256 | SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16) |
| 257 | SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8) |
| 258 | SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16) |
| 259 | SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8) |
| 260 | SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16) |
| 261 | SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16) |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 263 | #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \ |
| 264 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
Kuninori Morimoto | 55ba99e | 2009-03-03 15:40:25 +0900 | [diff] [blame] | 265 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ |
| 266 | defined(CONFIG_CPU_SUBTYPE_SH7786) |
Paul Mundt | c269796 | 2008-07-30 00:56:39 +0900 | [diff] [blame] | 267 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 268 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) |
| 269 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) |
| 270 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) |
| 271 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) |
Paul Mundt | c269796 | 2008-07-30 00:56:39 +0900 | [diff] [blame] | 272 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
Nobuhiro Iwamatsu | c63847a | 2008-06-06 17:04:08 +0900 | [diff] [blame] | 273 | SCIF_FNS(SCFDR, 0, 0, 0x1C, 16) |
Paul Mundt | c269796 | 2008-07-30 00:56:39 +0900 | [diff] [blame] | 274 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) |
| 275 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) |
| 276 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) |
| 277 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 278 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) |
Magnus Damm | 9b4e466 | 2008-04-23 21:31:14 +0900 | [diff] [blame] | 280 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) |
| 281 | SCIF_FNS(SCSPTR, 0, 0, 0, 0) |
| 282 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | SCIF_FNS(SCSPTR, 0, 0, 0x20, 16) |
Magnus Damm | 9b4e466 | 2008-04-23 21:31:14 +0900 | [diff] [blame] | 284 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | SCIF_FNS(SCLSR, 0, 0, 0x24, 16) |
| 286 | #endif |
Paul Mundt | b7a76e4 | 2006-02-01 03:06:06 -0800 | [diff] [blame] | 287 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | #define sci_in(port, reg) sci_##reg##_in(port) |
| 289 | #define sci_out(port, reg, value) sci_##reg##_out(port, value) |
| 290 | |
Magnus Damm | 0fbde95 | 2007-07-26 10:14:16 +0900 | [diff] [blame] | 291 | #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \ |
| 292 | defined(CONFIG_CPU_SUBTYPE_SH7707) || \ |
| 293 | defined(CONFIG_CPU_SUBTYPE_SH7708) || \ |
| 294 | defined(CONFIG_CPU_SUBTYPE_SH7709) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | static inline int sci_rxd_in(struct uart_port *port) |
| 296 | { |
| 297 | if (port->mapbase == 0xfffffe80) |
Paul Mundt | 32b5307 | 2009-12-24 14:52:43 +0900 | [diff] [blame] | 298 | return __raw_readb(SCPDR)&0x01 ? 1 : 0; /* SCI */ |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 299 | return 1; |
| 300 | } |
Paul Mundt | 0562748 | 2007-05-15 16:25:47 +0900 | [diff] [blame] | 301 | #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \ |
| 302 | defined(CONFIG_CPU_SUBTYPE_SH7751) || \ |
| 303 | defined(CONFIG_CPU_SUBTYPE_SH7751R) || \ |
| 304 | defined(CONFIG_CPU_SUBTYPE_SH7750R) || \ |
| 305 | defined(CONFIG_CPU_SUBTYPE_SH7750S) || \ |
Nobuhiro Iwamatsu | 961e9ff | 2008-10-29 13:33:45 +0900 | [diff] [blame] | 306 | defined(CONFIG_CPU_SUBTYPE_SH7091) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | static inline int sci_rxd_in(struct uart_port *port) |
| 308 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | if (port->mapbase == 0xffe00000) |
Paul Mundt | 32b5307 | 2009-12-24 14:52:43 +0900 | [diff] [blame] | 310 | return __raw_readb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | return 1; |
| 312 | } |
Magnus Damm | 9e9622d | 2010-02-08 11:47:44 +0900 | [diff] [blame] | 313 | #else /* default case for non-SCI processors */ |
Yoshihiro Shimoda | 7d740a0 | 2008-01-07 14:40:07 +0900 | [diff] [blame] | 314 | static inline int sci_rxd_in(struct uart_port *port) |
| 315 | { |
Paul Mundt | 1760b7d7 | 2007-08-08 16:57:05 +0900 | [diff] [blame] | 316 | return 1; |
Paul Mundt | 2b1bd1a | 2007-06-20 18:27:10 +0900 | [diff] [blame] | 317 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | #endif |