wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 2 | * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 3 | * |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 4 | * (C) Copyright 2002 |
| 5 | * Wolfgang Denk, DENX Software Engineering, <wd@denx.de> |
| 6 | * |
| 7 | * (C) Copyright 2002 |
| 8 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 9 | * Marius Groeger <mgroeger@sysgo.de> |
| 10 | * |
| 11 | * (C) Copyright 2002 |
| 12 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 13 | * Alex Zuepke <azu@sysgo.de> |
| 14 | * |
| 15 | * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or modify |
| 18 | * it under the terms of the GNU General Public License as published by |
| 19 | * the Free Software Foundation; either version 2 of the License, or |
| 20 | * (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 | * GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 30 | * |
| 31 | */ |
| 32 | |
| 33 | #include <common.h> |
wdenk | 5f535fe | 2003-09-18 09:21:33 +0000 | [diff] [blame] | 34 | #include <watchdog.h> |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 35 | #include <serial.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 36 | #include <asm/arch/pxa-regs.h> |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 37 | #include <asm/arch/regs-uart.h> |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 38 | #include <asm/io.h> |
Marek Vasut | 407e6a2 | 2012-09-12 12:26:30 +0200 | [diff] [blame] | 39 | #include <linux/compiler.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 40 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
| 42 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 43 | /* |
| 44 | * The numbering scheme differs here for PXA25x, PXA27x and PXA3xx so we can |
| 45 | * easily handle enabling of clock. |
| 46 | */ |
| 47 | #ifdef CONFIG_CPU_MONAHANS |
| 48 | #define UART_CLK_BASE CKENA_21_BTUART |
| 49 | #define UART_CLK_REG CKENA |
| 50 | #define BTUART_INDEX 0 |
| 51 | #define FFUART_INDEX 1 |
| 52 | #define STUART_INDEX 2 |
Marek Vasut | abc20ab | 2011-11-26 07:20:07 +0100 | [diff] [blame] | 53 | #elif CONFIG_CPU_PXA25X |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 54 | #define UART_CLK_BASE (1 << 4) /* HWUART */ |
| 55 | #define UART_CLK_REG CKEN |
| 56 | #define HWUART_INDEX 0 |
| 57 | #define STUART_INDEX 1 |
| 58 | #define FFUART_INDEX 2 |
| 59 | #define BTUART_INDEX 3 |
| 60 | #else /* PXA27x */ |
| 61 | #define UART_CLK_BASE CKEN5_STUART |
| 62 | #define UART_CLK_REG CKEN |
| 63 | #define STUART_INDEX 0 |
| 64 | #define FFUART_INDEX 1 |
| 65 | #define BTUART_INDEX 2 |
| 66 | #endif |
| 67 | |
| 68 | /* |
| 69 | * Only PXA250 has HWUART, to avoid poluting the code with more macros, |
| 70 | * artificially introduce this. |
| 71 | */ |
Marek Vasut | abc20ab | 2011-11-26 07:20:07 +0100 | [diff] [blame] | 72 | #ifndef CONFIG_CPU_PXA25X |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 73 | #define HWUART_INDEX 0xff |
| 74 | #endif |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 75 | |
| 76 | #ifndef CONFIG_SERIAL_MULTI |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 77 | #if defined(CONFIG_FFUART) |
Marcel Ziswiler | 2a4741d | 2007-10-19 00:25:33 +0200 | [diff] [blame] | 78 | #define UART_INDEX FFUART_INDEX |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 79 | #elif defined(CONFIG_BTUART) |
Marcel Ziswiler | 2a4741d | 2007-10-19 00:25:33 +0200 | [diff] [blame] | 80 | #define UART_INDEX BTUART_INDEX |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 81 | #elif defined(CONFIG_STUART) |
Marcel Ziswiler | 2a4741d | 2007-10-19 00:25:33 +0200 | [diff] [blame] | 82 | #define UART_INDEX STUART_INDEX |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 83 | #elif defined(CONFIG_HWUART) |
| 84 | #define UART_INDEX HWUART_INDEX |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 85 | #else |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 86 | #error "Please select CONFIG_(FF|BT|ST|HW)UART in board config file." |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 87 | #endif |
| 88 | #endif |
| 89 | |
Marek Vasut | 4808f10 | 2012-09-12 12:59:42 +0200 | [diff] [blame^] | 90 | static uint32_t pxa_uart_get_baud_divider(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 91 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 92 | if (gd->baudrate == 1200) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 93 | return 768; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 94 | else if (gd->baudrate == 9600) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 95 | return 96; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 96 | else if (gd->baudrate == 19200) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 97 | return 48; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 98 | else if (gd->baudrate == 38400) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 99 | return 24; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 100 | else if (gd->baudrate == 57600) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 101 | return 16; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 102 | else if (gd->baudrate == 115200) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 103 | return 8; |
| 104 | else /* Unsupported baudrate */ |
| 105 | return 0; |
| 106 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 107 | |
Marek Vasut | 4808f10 | 2012-09-12 12:59:42 +0200 | [diff] [blame^] | 108 | static struct pxa_uart_regs *pxa_uart_index_to_regs(uint32_t uart_index) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 109 | { |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 110 | switch (uart_index) { |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 111 | case FFUART_INDEX: return (struct pxa_uart_regs *)FFUART_BASE; |
| 112 | case BTUART_INDEX: return (struct pxa_uart_regs *)BTUART_BASE; |
| 113 | case STUART_INDEX: return (struct pxa_uart_regs *)STUART_BASE; |
| 114 | case HWUART_INDEX: return (struct pxa_uart_regs *)HWUART_BASE; |
| 115 | default: |
| 116 | return NULL; |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 117 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Marek Vasut | 4808f10 | 2012-09-12 12:59:42 +0200 | [diff] [blame^] | 120 | static void pxa_uart_toggle_clock(uint32_t uart_index, int enable) |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 121 | { |
| 122 | uint32_t clk_reg, clk_offset, reg; |
| 123 | |
| 124 | clk_reg = UART_CLK_REG; |
| 125 | clk_offset = UART_CLK_BASE << uart_index; |
| 126 | |
| 127 | reg = readl(clk_reg); |
| 128 | |
| 129 | if (enable) |
| 130 | reg |= clk_offset; |
| 131 | else |
| 132 | reg &= ~clk_offset; |
| 133 | |
| 134 | writel(reg, clk_reg); |
| 135 | } |
| 136 | |
| 137 | /* |
| 138 | * Enable clock and set baud rate, parity etc. |
| 139 | */ |
| 140 | void pxa_setbrg_dev(uint32_t uart_index) |
| 141 | { |
| 142 | uint32_t divider = 0; |
| 143 | struct pxa_uart_regs *uart_regs; |
| 144 | |
| 145 | divider = pxa_uart_get_baud_divider(); |
| 146 | if (!divider) |
| 147 | hang(); |
| 148 | |
| 149 | uart_regs = pxa_uart_index_to_regs(uart_index); |
| 150 | if (!uart_regs) |
| 151 | hang(); |
| 152 | |
| 153 | pxa_uart_toggle_clock(uart_index, 1); |
| 154 | |
| 155 | /* Disable interrupts and FIFOs */ |
| 156 | writel(0, &uart_regs->ier); |
| 157 | writel(0, &uart_regs->fcr); |
| 158 | |
| 159 | /* Set baud rate */ |
| 160 | writel(LCR_WLS0 | LCR_WLS1 | LCR_DLAB, &uart_regs->lcr); |
| 161 | writel(divider & 0xff, &uart_regs->dll); |
| 162 | writel(divider >> 8, &uart_regs->dlh); |
| 163 | writel(LCR_WLS0 | LCR_WLS1, &uart_regs->lcr); |
| 164 | |
| 165 | /* Enable UART */ |
| 166 | writel(IER_UUE, &uart_regs->ier); |
| 167 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * Initialise the serial port with the given baudrate. The settings |
| 171 | * are always 8 data bits, no parity, 1 stop bit, no start bits. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 172 | */ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 173 | int pxa_init_dev(unsigned int uart_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 174 | { |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 175 | pxa_setbrg_dev (uart_index); |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 176 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 177 | } |
| 178 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 179 | /* |
| 180 | * Output a single byte to the serial port. |
| 181 | */ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 182 | void pxa_putc_dev(unsigned int uart_index, const char c) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 183 | { |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 184 | struct pxa_uart_regs *uart_regs; |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 185 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 186 | uart_regs = pxa_uart_index_to_regs(uart_index); |
| 187 | if (!uart_regs) |
| 188 | hang(); |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 189 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 190 | while (!(readl(&uart_regs->lsr) & LSR_TEMT)) |
| 191 | WATCHDOG_RESET(); |
| 192 | writel(c, &uart_regs->thr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 193 | |
| 194 | /* If \n, also do \r */ |
| 195 | if (c == '\n') |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 196 | pxa_putc_dev (uart_index,'\r'); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Read a single byte from the serial port. Returns 1 on success, 0 |
| 201 | * otherwise. When the function is succesfull, the character read is |
| 202 | * written into its argument c. |
| 203 | */ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 204 | int pxa_tstc_dev(unsigned int uart_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 205 | { |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 206 | struct pxa_uart_regs *uart_regs; |
| 207 | |
| 208 | uart_regs = pxa_uart_index_to_regs(uart_index); |
| 209 | if (!uart_regs) |
| 210 | return -1; |
| 211 | |
| 212 | return readl(&uart_regs->lsr) & LSR_DR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* |
| 216 | * Read a single byte from the serial port. Returns 1 on success, 0 |
| 217 | * otherwise. When the function is succesfull, the character read is |
| 218 | * written into its argument c. |
| 219 | */ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 220 | int pxa_getc_dev(unsigned int uart_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 221 | { |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 222 | struct pxa_uart_regs *uart_regs; |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 223 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 224 | uart_regs = pxa_uart_index_to_regs(uart_index); |
| 225 | if (!uart_regs) |
| 226 | return -1; |
| 227 | |
| 228 | while (!(readl(&uart_regs->lsr) & LSR_DR)) |
| 229 | WATCHDOG_RESET(); |
| 230 | return readl(&uart_regs->rbr) & 0xff; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 233 | void pxa_puts_dev(unsigned int uart_index, const char *s) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 234 | { |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 235 | while (*s) |
| 236 | pxa_putc_dev(uart_index, *s++); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 237 | } |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 238 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 239 | #define pxa_uart(uart, UART) \ |
| 240 | int uart##_init(void) \ |
| 241 | { \ |
| 242 | return pxa_init_dev(UART##_INDEX); \ |
| 243 | } \ |
| 244 | \ |
| 245 | void uart##_setbrg(void) \ |
| 246 | { \ |
| 247 | return pxa_setbrg_dev(UART##_INDEX); \ |
| 248 | } \ |
| 249 | \ |
| 250 | void uart##_putc(const char c) \ |
| 251 | { \ |
| 252 | return pxa_putc_dev(UART##_INDEX, c); \ |
| 253 | } \ |
| 254 | \ |
| 255 | void uart##_puts(const char *s) \ |
| 256 | { \ |
| 257 | return pxa_puts_dev(UART##_INDEX, s); \ |
| 258 | } \ |
| 259 | \ |
| 260 | int uart##_getc(void) \ |
| 261 | { \ |
| 262 | return pxa_getc_dev(UART##_INDEX); \ |
| 263 | } \ |
| 264 | \ |
| 265 | int uart##_tstc(void) \ |
| 266 | { \ |
| 267 | return pxa_tstc_dev(UART##_INDEX); \ |
| 268 | } \ |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 269 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 270 | #define pxa_uart_desc(uart) \ |
| 271 | struct serial_device serial_##uart##_device = \ |
| 272 | { \ |
Marek Vasut | 90bad89 | 2012-09-09 18:48:28 +0200 | [diff] [blame] | 273 | .name = "serial_"#uart, \ |
| 274 | .start = uart##_init, \ |
| 275 | .stop = NULL, \ |
| 276 | .setbrg = uart##_setbrg, \ |
| 277 | .getc = uart##_getc, \ |
| 278 | .tstc = uart##_tstc, \ |
| 279 | .putc = uart##_putc, \ |
| 280 | .puts = uart##_puts, \ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 281 | }; |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 282 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 283 | #define pxa_uart_multi(uart, UART) \ |
| 284 | pxa_uart(uart, UART) \ |
| 285 | pxa_uart_desc(uart) |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 286 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 287 | #if defined(CONFIG_HWUART) |
| 288 | pxa_uart_multi(hwuart, HWUART) |
| 289 | #endif |
| 290 | #if defined(CONFIG_STUART) |
| 291 | pxa_uart_multi(stuart, STUART) |
| 292 | #endif |
| 293 | #if defined(CONFIG_FFUART) |
| 294 | pxa_uart_multi(ffuart, FFUART) |
| 295 | #endif |
| 296 | #if defined(CONFIG_BTUART) |
| 297 | pxa_uart_multi(btuart, BTUART) |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 298 | #endif |
| 299 | |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 300 | #ifndef CONFIG_SERIAL_MULTI |
| 301 | pxa_uart(serial, UART) |
Marek Vasut | 407e6a2 | 2012-09-12 12:26:30 +0200 | [diff] [blame] | 302 | #else |
| 303 | __weak struct serial_device *default_serial_console(void) |
| 304 | { |
| 305 | #if CONFIG_CONS_INDEX == 1 |
| 306 | return &serial_hwuart_device; |
| 307 | #elif CONFIG_CONS_INDEX == 2 |
| 308 | return &serial_stuart_device; |
| 309 | #elif CONFIG_CONS_INDEX == 3 |
| 310 | return &serial_ffuart_device; |
| 311 | #elif CONFIG_CONS_INDEX == 4 |
| 312 | return &serial_btuart_device; |
| 313 | #else |
| 314 | #error "Bad CONFIG_CONS_INDEX." |
| 315 | #endif |
| 316 | } |
stefano babic | 80172c6 | 2007-08-30 22:57:04 +0200 | [diff] [blame] | 317 | #endif |