Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | #include <arch.h> |
| 31 | #include <asm_macros.S> |
| 32 | #include <pl011.h> |
| 33 | |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 34 | /* |
| 35 | * Pull in generic functions to provide backwards compatibility for |
| 36 | * platform makefiles |
| 37 | */ |
| 38 | #include "../../console/console.S" |
| 39 | |
| 40 | |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 41 | .globl console_core_init |
| 42 | .globl console_core_putc |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 43 | .globl console_core_getc |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 44 | |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 45 | |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 46 | /* ----------------------------------------------- |
| 47 | * int console_core_init(unsigned long base_addr, |
| 48 | * unsigned int uart_clk, unsigned int baud_rate) |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 49 | * Function to initialize the console without a |
| 50 | * C Runtime to print debug information. This |
| 51 | * function will be accessed by console_init and |
| 52 | * crash reporting. |
| 53 | * In: x0 - console base address |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 54 | * w1 - Uart clock in Hz |
| 55 | * w2 - Baud rate |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 56 | * Out: return 1 on success else 0 on error |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 57 | * Clobber list : x1, x2 |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 58 | * ----------------------------------------------- |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 59 | */ |
| 60 | func console_core_init |
| 61 | /* Check the input base address */ |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 62 | cbz x0, core_init_fail |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 63 | /* Check baud rate and uart clock for sanity */ |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 64 | cbz w1, core_init_fail |
| 65 | cbz w2, core_init_fail |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 66 | /* Program the baudrate */ |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 67 | /* Divisor = (Uart clock * 4) / baudrate */ |
| 68 | lsl w1, w1, #2 |
| 69 | udiv w2, w1, w2 |
| 70 | /* IBRD = Divisor >> 6 */ |
| 71 | lsr w1, w2, #6 |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 72 | /* Write the IBRD */ |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 73 | str w1, [x0, #UARTIBRD] |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 74 | /* FBRD = Divisor & 0x3F */ |
| 75 | and w1, w2, #0x3f |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 76 | /* Write the FBRD */ |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 77 | str w1, [x0, #UARTFBRD] |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 78 | mov w1, #PL011_LINE_CONTROL |
| 79 | str w1, [x0, #UARTLCR_H] |
| 80 | /* Clear any pending errors */ |
| 81 | str wzr, [x0, #UARTECR] |
| 82 | /* Enable tx, rx, and uart overall */ |
| 83 | mov w1, #(PL011_UARTCR_RXE | PL011_UARTCR_TXE | PL011_UARTCR_UARTEN) |
| 84 | str w1, [x0, #UARTCR] |
| 85 | mov w0, #1 |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 86 | ret |
| 87 | core_init_fail: |
| 88 | mov w0, wzr |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 89 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 90 | endfunc console_core_init |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 91 | |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 92 | /* -------------------------------------------------------- |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 93 | * int console_core_putc(int c, unsigned long base_addr) |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 94 | * Function to output a character over the console. It |
| 95 | * returns the character printed on success or -1 on error. |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 96 | * In : w0 - character to be printed |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 97 | * x1 - console base address |
| 98 | * Out : return -1 on error else return character. |
| 99 | * Clobber list : x2 |
| 100 | * -------------------------------------------------------- |
| 101 | */ |
| 102 | func console_core_putc |
| 103 | /* Check the input parameter */ |
| 104 | cbz x1, putc_error |
| 105 | /* Prepend '\r' to '\n' */ |
Soby Mathew | 69817f7 | 2014-07-14 15:43:21 +0100 | [diff] [blame] | 106 | cmp w0, #0xA |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 107 | b.ne 2f |
| 108 | 1: |
| 109 | /* Check if the transmit FIFO is full */ |
| 110 | ldr w2, [x1, #UARTFR] |
| 111 | tbnz w2, #PL011_UARTFR_TXFF_BIT, 1b |
| 112 | mov w2, #0xD |
| 113 | str w2, [x1, #UARTDR] |
| 114 | 2: |
| 115 | /* Check if the transmit FIFO is full */ |
| 116 | ldr w2, [x1, #UARTFR] |
| 117 | tbnz w2, #PL011_UARTFR_TXFF_BIT, 2b |
| 118 | str w0, [x1, #UARTDR] |
| 119 | ret |
| 120 | putc_error: |
| 121 | mov w0, #-1 |
| 122 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 123 | endfunc console_core_putc |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 124 | |
| 125 | /* --------------------------------------------- |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 126 | * int console_core_getc(unsigned long base_addr) |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 127 | * Function to get a character from the console. |
| 128 | * It returns the character grabbed on success |
| 129 | * or -1 on error. |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 130 | * In : x0 - console base address |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 131 | * Clobber list : x0, x1 |
| 132 | * --------------------------------------------- |
| 133 | */ |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 134 | func console_core_getc |
| 135 | cbz x0, getc_error |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 136 | 1: |
| 137 | /* Check if the receive FIFO is empty */ |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 138 | ldr w1, [x0, #UARTFR] |
| 139 | tbnz w1, #PL011_UARTFR_RXFE_BIT, 1b |
| 140 | ldr w1, [x0, #UARTDR] |
| 141 | mov w0, w1 |
Soby Mathew | c389d77 | 2014-06-24 12:28:41 +0100 | [diff] [blame] | 142 | ret |
| 143 | getc_error: |
| 144 | mov w0, #-1 |
| 145 | ret |
Dan Handley | c863fa4 | 2015-04-01 16:51:20 +0100 | [diff] [blame] | 146 | endfunc console_core_getc |