Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 1 | /* GRLIB APBUART Serial controller driver |
| 2 | * |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 3 | * (C) Copyright 2007, 2015 |
| 4 | * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com. |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 10 | #include <asm/io.h> |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 11 | #include <ambapp.h> |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 12 | #include <grlib/apbuart.h> |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 13 | #include <serial.h> |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 14 | #include <watchdog.h> |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Daniel Hellstrom | 898cc81 | 2010-01-25 09:54:51 +0100 | [diff] [blame] | 18 | /* Select which UART that will become u-boot console */ |
| 19 | #ifndef CONFIG_SYS_GRLIB_APBUART_INDEX |
| 20 | #define CONFIG_SYS_GRLIB_APBUART_INDEX 0 |
| 21 | #endif |
| 22 | |
Daniel Hellstrom | ff0b9b7 | 2010-01-22 11:49:04 +0100 | [diff] [blame^] | 23 | static unsigned apbuart_calc_scaler(unsigned apbuart_freq, unsigned baud) |
| 24 | { |
| 25 | return (((apbuart_freq * 10) / (baud * 8)) - 5) / 10; |
| 26 | } |
| 27 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 28 | static int leon3_serial_init(void) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 29 | { |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 30 | ambapp_dev_apbuart *uart; |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 31 | ambapp_apbdev apbdev; |
| 32 | unsigned int tmp; |
| 33 | |
| 34 | /* find UART */ |
Daniel Hellstrom | 898cc81 | 2010-01-25 09:54:51 +0100 | [diff] [blame] | 35 | if (ambapp_apb_find(&ambapp_plb, VENDOR_GAISLER, GAISLER_APBUART, |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 36 | CONFIG_SYS_GRLIB_APBUART_INDEX, &apbdev) != 1) { |
Francois Retief | 58e5585 | 2015-11-23 09:49:57 +0200 | [diff] [blame] | 37 | gd->flags &= ~GD_FLG_SERIAL_READY; |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 38 | panic("%s: apbuart not found!\n", __func__); |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 39 | return -1; /* didn't find hardware */ |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 40 | } |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 41 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 42 | /* found apbuart, let's init .. */ |
| 43 | uart = (ambapp_dev_apbuart *) apbdev.address; |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 44 | |
Daniel Hellstrom | ff0b9b7 | 2010-01-22 11:49:04 +0100 | [diff] [blame^] | 45 | /* APBUART Frequency is equal to bus frequency */ |
| 46 | gd->arch.uart_freq = ambapp_bus_freq(&ambapp_plb, apbdev.ahb_bus_index); |
| 47 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 48 | /* Set scaler / baud rate */ |
Daniel Hellstrom | ff0b9b7 | 2010-01-22 11:49:04 +0100 | [diff] [blame^] | 49 | tmp = apbuart_calc_scaler(gd->arch.uart_freq, CONFIG_BAUDRATE); |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 50 | writel(tmp, &uart->scaler); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 51 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 52 | /* Let bit 11 be unchanged (debug bit for GRMON) */ |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 53 | tmp = readl(&uart->ctrl) & APBUART_CTRL_DBG; |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 54 | /* Receiver & transmitter enable */ |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 55 | tmp |= APBUART_CTRL_RE | APBUART_CTRL_TE; |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 56 | writel(tmp, &uart->ctrl); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 57 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 58 | gd->arch.uart = uart; |
| 59 | return 0; |
| 60 | } |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 61 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 62 | static inline ambapp_dev_apbuart *leon3_get_uart_regs(void) |
| 63 | { |
| 64 | ambapp_dev_apbuart *uart = gd->arch.uart; |
| 65 | return uart; |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 68 | static void leon3_serial_putc_raw(const char c) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 69 | { |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 70 | ambapp_dev_apbuart * const uart = leon3_get_uart_regs(); |
| 71 | |
| 72 | if (!uart) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 73 | return; |
| 74 | |
| 75 | /* Wait for last character to go. */ |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 76 | while (!(readl(&uart->status) & APBUART_STATUS_THE)) |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 77 | WATCHDOG_RESET(); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 78 | |
| 79 | /* Send data */ |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 80 | writel(c, &uart->data); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 81 | |
| 82 | #ifdef LEON_DEBUG |
| 83 | /* Wait for data to be sent */ |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 84 | while (!(readl(&uart->status) & APBUART_STATUS_TSE)) |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 85 | WATCHDOG_RESET(); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 86 | #endif |
| 87 | } |
| 88 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 89 | static void leon3_serial_putc(const char c) |
| 90 | { |
| 91 | if (c == '\n') |
| 92 | leon3_serial_putc_raw('\r'); |
| 93 | |
| 94 | leon3_serial_putc_raw(c); |
| 95 | } |
| 96 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 97 | static int leon3_serial_getc(void) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 98 | { |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 99 | ambapp_dev_apbuart * const uart = leon3_get_uart_regs(); |
| 100 | |
| 101 | if (!uart) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 102 | return 0; |
| 103 | |
| 104 | /* Wait for a character to arrive. */ |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 105 | while (!(readl(&uart->status) & APBUART_STATUS_DR)) |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 106 | WATCHDOG_RESET(); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 107 | |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 108 | /* Read character data */ |
| 109 | return readl(&uart->data); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 110 | } |
| 111 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 112 | static int leon3_serial_tstc(void) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 113 | { |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 114 | ambapp_dev_apbuart * const uart = leon3_get_uart_regs(); |
| 115 | |
| 116 | if (!uart) |
| 117 | return 0; |
| 118 | |
Daniel Hellstrom | f2879f5 | 2010-01-21 16:09:37 +0100 | [diff] [blame] | 119 | return readl(&uart->status) & APBUART_STATUS_DR; |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | /* set baud rate for uart */ |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 123 | static void leon3_serial_setbrg(void) |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 124 | { |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 125 | ambapp_dev_apbuart * const uart = leon3_get_uart_regs(); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 126 | unsigned int scaler; |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 127 | |
| 128 | if (!uart) |
| 129 | return; |
| 130 | |
| 131 | if (!gd->baudrate) |
| 132 | gd->baudrate = CONFIG_BAUDRATE; |
| 133 | |
Daniel Hellstrom | ff0b9b7 | 2010-01-22 11:49:04 +0100 | [diff] [blame^] | 134 | if (!gd->arch.uart_freq) |
| 135 | gd->arch.uart_freq = CONFIG_SYS_CLK_FREQ; |
| 136 | |
| 137 | scaler = apbuart_calc_scaler(gd->arch.uart_freq, gd->baudrate); |
Francois Retief | a50adb7 | 2015-10-28 10:35:12 +0200 | [diff] [blame] | 138 | |
| 139 | writel(scaler, &uart->scaler); |
Daniel Hellstrom | 1e9a164 | 2008-03-26 22:51:29 +0100 | [diff] [blame] | 140 | } |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 141 | |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 142 | static struct serial_device leon3_serial_drv = { |
| 143 | .name = "leon3_serial", |
| 144 | .start = leon3_serial_init, |
| 145 | .stop = NULL, |
| 146 | .setbrg = leon3_serial_setbrg, |
| 147 | .putc = leon3_serial_putc, |
Marek Vasut | ec3fd68 | 2012-10-06 14:07:02 +0000 | [diff] [blame] | 148 | .puts = default_serial_puts, |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 149 | .getc = leon3_serial_getc, |
| 150 | .tstc = leon3_serial_tstc, |
| 151 | }; |
| 152 | |
| 153 | void leon3_serial_initialize(void) |
| 154 | { |
| 155 | serial_register(&leon3_serial_drv); |
| 156 | } |
| 157 | |
| 158 | __weak struct serial_device *default_serial_console(void) |
| 159 | { |
| 160 | return &leon3_serial_drv; |
| 161 | } |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 162 | |
| 163 | #ifdef CONFIG_DEBUG_UART_APBUART |
| 164 | |
| 165 | #include <debug_uart.h> |
| 166 | |
| 167 | static inline void _debug_uart_init(void) |
| 168 | { |
| 169 | ambapp_dev_apbuart *uart = (ambapp_dev_apbuart *)CONFIG_DEBUG_UART_BASE; |
Daniel Hellstrom | ff0b9b7 | 2010-01-22 11:49:04 +0100 | [diff] [blame^] | 170 | uart->scaler = apbuart_calc_scaler(CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE); |
Francois Retief | e43ce3f | 2015-10-29 12:55:34 +0200 | [diff] [blame] | 171 | uart->ctrl = APBUART_CTRL_RE | APBUART_CTRL_TE; |
| 172 | } |
| 173 | |
| 174 | static inline void _debug_uart_putc(int ch) |
| 175 | { |
| 176 | ambapp_dev_apbuart *uart = (ambapp_dev_apbuart *)CONFIG_DEBUG_UART_BASE; |
| 177 | while (!(readl(&uart->status) & APBUART_STATUS_THE)) |
| 178 | WATCHDOG_RESET(); |
| 179 | writel(ch, &uart->data); |
| 180 | } |
| 181 | |
| 182 | DEBUG_UART_FUNCS |
| 183 | |
| 184 | #endif |