Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SuperH SCIF device driver. |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 3 | * Copyright (C) 2007,2008,2010 Nobuhiro Iwamatsu |
| 4 | * Copyright (C) 2002 - 2008 Paul Mundt |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 5 | * |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
Jean-Christophe PLAGNIOL-VILLARD | fc83c92 | 2009-01-11 16:35:16 +0100 | [diff] [blame] | 22 | #include <asm/io.h> |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 23 | #include <asm/processor.h> |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 24 | #include "serial_sh.h" |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 25 | #include <serial.h> |
| 26 | #include <linux/compiler.h> |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 27 | |
Nobuhiro Iwamatsu | ab09f43 | 2008-08-22 17:48:51 +0900 | [diff] [blame] | 28 | #if defined(CONFIG_CONS_SCIF0) |
| 29 | # define SCIF_BASE SCIF0_BASE |
| 30 | #elif defined(CONFIG_CONS_SCIF1) |
| 31 | # define SCIF_BASE SCIF1_BASE |
| 32 | #elif defined(CONFIG_CONS_SCIF2) |
| 33 | # define SCIF_BASE SCIF2_BASE |
| 34 | #elif defined(CONFIG_CONS_SCIF3) |
| 35 | # define SCIF_BASE SCIF3_BASE |
| 36 | #elif defined(CONFIG_CONS_SCIF4) |
| 37 | # define SCIF_BASE SCIF4_BASE |
| 38 | #elif defined(CONFIG_CONS_SCIF5) |
| 39 | # define SCIF_BASE SCIF5_BASE |
Phil Edworthy | 99744b7 | 2012-05-15 22:15:51 +0000 | [diff] [blame] | 40 | #elif defined(CONFIG_CONS_SCIF6) |
| 41 | # define SCIF_BASE SCIF6_BASE |
| 42 | #elif defined(CONFIG_CONS_SCIF7) |
| 43 | # define SCIF_BASE SCIF7_BASE |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 44 | #else |
Nobuhiro Iwamatsu | ab09f43 | 2008-08-22 17:48:51 +0900 | [diff] [blame] | 45 | # error "Default SCIF doesn't set....." |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 46 | #endif |
| 47 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 48 | #if defined(CONFIG_SCIF_A) |
| 49 | #define SCIF_BASE_PORT PORT_SCIFA |
Yoshihiro Shimoda | 7c10c57 | 2008-01-09 14:30:02 +0900 | [diff] [blame] | 50 | #else |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 51 | #define SCIF_BASE_PORT PORT_SCIF |
Yoshihiro Shimoda | 7c10c57 | 2008-01-09 14:30:02 +0900 | [diff] [blame] | 52 | #endif |
| 53 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 54 | static struct uart_port sh_sci = { |
| 55 | .membase = (unsigned char*)SCIF_BASE, |
| 56 | .mapbase = SCIF_BASE, |
| 57 | .type = SCIF_BASE_PORT, |
| 58 | }; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 59 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 60 | static void sh_serial_setbrg(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 61 | { |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 62 | DECLARE_GLOBAL_DATA_PTR; |
| 63 | sci_out(&sh_sci, SCBRR, SCBRR_VALUE(gd->baudrate, CONFIG_SYS_CLK_FREQ)); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 64 | } |
| 65 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 66 | static int sh_serial_init(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 67 | { |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 68 | sci_out(&sh_sci, SCSCR , SCSCR_INIT(&sh_sci)); |
| 69 | sci_out(&sh_sci, SCSCR , SCSCR_INIT(&sh_sci)); |
| 70 | sci_out(&sh_sci, SCSMR, 0); |
| 71 | sci_out(&sh_sci, SCSMR, 0); |
| 72 | sci_out(&sh_sci, SCFCR, SCFCR_RFRST|SCFCR_TFRST); |
| 73 | sci_in(&sh_sci, SCFCR); |
| 74 | sci_out(&sh_sci, SCFCR, 0); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 75 | |
| 76 | serial_setbrg(); |
| 77 | return 0; |
| 78 | } |
| 79 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 80 | #if defined(CONFIG_CPU_SH7760) || \ |
| 81 | defined(CONFIG_CPU_SH7780) || \ |
| 82 | defined(CONFIG_CPU_SH7785) || \ |
| 83 | defined(CONFIG_CPU_SH7786) |
| 84 | static int scif_rxfill(struct uart_port *port) |
| 85 | { |
| 86 | return sci_in(port, SCRFDR) & 0xff; |
| 87 | } |
| 88 | #elif defined(CONFIG_CPU_SH7763) |
| 89 | static int scif_rxfill(struct uart_port *port) |
| 90 | { |
| 91 | if ((port->mapbase == 0xffe00000) || |
| 92 | (port->mapbase == 0xffe08000)) { |
| 93 | /* SCIF0/1*/ |
| 94 | return sci_in(port, SCRFDR) & 0xff; |
| 95 | } else { |
| 96 | /* SCIF2 */ |
| 97 | return sci_in(port, SCFDR) & SCIF2_RFDC_MASK; |
| 98 | } |
| 99 | } |
| 100 | #elif defined(CONFIG_ARCH_SH7372) |
| 101 | static int scif_rxfill(struct uart_port *port) |
| 102 | { |
| 103 | if (port->type == PORT_SCIFA) |
| 104 | return sci_in(port, SCFDR) & SCIF_RFDC_MASK; |
| 105 | else |
| 106 | return sci_in(port, SCRFDR); |
| 107 | } |
| 108 | #else |
| 109 | static int scif_rxfill(struct uart_port *port) |
| 110 | { |
| 111 | return sci_in(port, SCFDR) & SCIF_RFDC_MASK; |
| 112 | } |
| 113 | #endif |
| 114 | |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 115 | static int serial_rx_fifo_level(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 116 | { |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 117 | return scif_rxfill(&sh_sci); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 118 | } |
| 119 | |
Tetsuyuki Kobayashi | 7c791b3 | 2012-11-19 21:37:38 +0000 | [diff] [blame] | 120 | static void handle_error(void) |
| 121 | { |
| 122 | sci_in(&sh_sci, SCxSR); |
| 123 | sci_out(&sh_sci, SCxSR, SCxSR_ERROR_CLEAR(&sh_sci)); |
| 124 | sci_in(&sh_sci, SCLSR); |
| 125 | sci_out(&sh_sci, SCLSR, 0x00); |
| 126 | } |
| 127 | |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 128 | void serial_raw_putc(const char c) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 129 | { |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 130 | while (1) { |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 131 | /* Tx fifo is empty */ |
| 132 | if (sci_in(&sh_sci, SCxSR) & SCxSR_TEND(&sh_sci)) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 133 | break; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 134 | } |
| 135 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 136 | sci_out(&sh_sci, SCxTDR, c); |
| 137 | sci_out(&sh_sci, SCxSR, sci_in(&sh_sci, SCxSR) & ~SCxSR_TEND(&sh_sci)); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 138 | } |
| 139 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 140 | static void sh_serial_putc(const char c) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 141 | { |
| 142 | if (c == '\n') |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 143 | serial_raw_putc('\r'); |
| 144 | serial_raw_putc(c); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 145 | } |
| 146 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 147 | static int sh_serial_tstc(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 148 | { |
Tetsuyuki Kobayashi | 7c791b3 | 2012-11-19 21:37:38 +0000 | [diff] [blame] | 149 | if (sci_in(&sh_sci, SCxSR) & SCIF_ERRORS) { |
| 150 | handle_error(); |
| 151 | return 0; |
| 152 | } |
| 153 | |
Nobuhiro Iwamatsu | ab09f43 | 2008-08-22 17:48:51 +0900 | [diff] [blame] | 154 | return serial_rx_fifo_level() ? 1 : 0; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 155 | } |
| 156 | |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 157 | |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 158 | int serial_getc_check(void) |
| 159 | { |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 160 | unsigned short status; |
| 161 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 162 | status = sci_in(&sh_sci, SCxSR); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 163 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 164 | if (status & SCIF_ERRORS) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 165 | handle_error(); |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 166 | if (sci_in(&sh_sci, SCLSR) & SCxSR_ORER(&sh_sci)) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 167 | handle_error(); |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 168 | return status & (SCIF_DR | SCxSR_RDxF(&sh_sci)); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 169 | } |
| 170 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 171 | static int sh_serial_getc(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 172 | { |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 173 | unsigned short status; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 174 | char ch; |
Nobuhiro Iwamatsu | ab09f43 | 2008-08-22 17:48:51 +0900 | [diff] [blame] | 175 | |
| 176 | while (!serial_getc_check()) |
| 177 | ; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 178 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 179 | ch = sci_in(&sh_sci, SCxRDR); |
| 180 | status = sci_in(&sh_sci, SCxSR); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 181 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 182 | sci_out(&sh_sci, SCxSR, SCxSR_RDxF_CLEAR(&sh_sci)); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 183 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 184 | if (status & SCIF_ERRORS) |
| 185 | handle_error(); |
| 186 | |
| 187 | if (sci_in(&sh_sci, SCLSR) & SCxSR_ORER(&sh_sci)) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 188 | handle_error(); |
Nobuhiro Iwamatsu | 08c5fab | 2008-06-06 16:16:08 +0900 | [diff] [blame] | 189 | return ch; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 190 | } |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 191 | |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 192 | static struct serial_device sh_serial_drv = { |
| 193 | .name = "sh_serial", |
| 194 | .start = sh_serial_init, |
| 195 | .stop = NULL, |
| 196 | .setbrg = sh_serial_setbrg, |
| 197 | .putc = sh_serial_putc, |
Marek Vasut | ec3fd68 | 2012-10-06 14:07:02 +0000 | [diff] [blame] | 198 | .puts = default_serial_puts, |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 199 | .getc = sh_serial_getc, |
| 200 | .tstc = sh_serial_tstc, |
| 201 | }; |
| 202 | |
| 203 | void sh_serial_initialize(void) |
| 204 | { |
| 205 | serial_register(&sh_serial_drv); |
| 206 | } |
| 207 | |
| 208 | __weak struct serial_device *default_serial_console(void) |
| 209 | { |
| 210 | return &sh_serial_drv; |
| 211 | } |