blob: 2c745dd0d4b0c61295d054d97e3d8794f1dc9504 [file] [log] [blame]
Stefan Reinauer509f7722012-12-07 17:31:37 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
5 *
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer509f7722012-12-07 17:31:37 -080014 */
15
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020016#ifndef CONSOLE_UART_H
17#define CONSOLE_UART_H
Stefan Reinauer509f7722012-12-07 17:31:37 -080018
Kyösti Mälkkif3390862014-02-26 15:19:04 +020019#include <rules.h>
Kyösti Mälkki0567c912014-02-14 10:31:38 +020020#include <stdint.h>
21
Kyösti Mälkki3ee16682014-02-17 19:37:52 +020022/* Return the clock frequency UART uses as reference clock for
23 * baudrate generator. */
24unsigned int uart_platform_refclk(void);
25
26/* Return the baudrate determined from option_table, or when that is
27 * not used, CONFIG_TTYS0_BAUD.
28 */
29unsigned int default_baudrate(void);
30
31/* Returns the divisor value for a given baudrate.
32 * The formula to satisfy is:
33 * refclk / divisor = baudrate * oversample
34 */
35unsigned int uart_baudrate_divisor(unsigned int baudrate,
36 unsigned int refclk, unsigned int oversample);
37
Lee Leahy14876212016-05-04 13:13:20 -070038/* Returns the oversample divisor multiplied by any other divisors that act
39 * on the input clock
40 */
41unsigned int uart_input_clock_divider(void);
Kyösti Mälkki3ee16682014-02-17 19:37:52 +020042
Kyösti Mälkki70342a72014-03-14 22:28:29 +020043void uart_init(int idx);
44void uart_tx_byte(int idx, unsigned char data);
45void uart_tx_flush(int idx);
46unsigned char uart_rx_byte(int idx);
Stefan Reinauer509f7722012-12-07 17:31:37 -080047
Ronald G. Minnich2adb2972014-10-16 10:53:48 +000048uintptr_t uart_platform_base(int idx);
David Hendricksfdcef1a2013-02-15 19:29:12 -080049
Kyösti Mälkkic2610a42014-02-24 20:51:30 +020050#if !defined(__ROMCC__)
51static inline void *uart_platform_baseptr(int idx)
52{
53 return (void *)uart_platform_base(idx);
54}
Kyösti Mälkkic2610a42014-02-24 20:51:30 +020055
Kyösti Mälkki2b95da02014-02-15 10:19:23 +020056void oxford_remap(unsigned int new_base);
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020057
Lee Leahyf00e4462017-03-07 13:17:49 -080058#define __CONSOLE_SERIAL_ENABLE__ (CONFIG_CONSOLE_SERIAL && \
Aaron Durbinfd6fb262015-05-13 13:37:43 -050059 (ENV_BOOTBLOCK || ENV_ROMSTAGE || ENV_RAMSTAGE || ENV_VERSTAGE || \
Lee Leahyf00e4462017-03-07 13:17:49 -080060 ENV_POSTCAR || (ENV_SMM && CONFIG_DEBUG_SMI)))
Kyösti Mälkkif3390862014-02-26 15:19:04 +020061
62#if __CONSOLE_SERIAL_ENABLE__
Kyösti Mälkki70342a72014-03-14 22:28:29 +020063static inline void __uart_init(void) { uart_init(CONFIG_UART_FOR_CONSOLE); }
64static inline void __uart_tx_byte(u8 data) { uart_tx_byte(CONFIG_UART_FOR_CONSOLE, data); }
65static inline void __uart_tx_flush(void) { uart_tx_flush(CONFIG_UART_FOR_CONSOLE); }
Kyösti Mälkkif3390862014-02-26 15:19:04 +020066#else
67static inline void __uart_init(void) {}
68static inline void __uart_tx_byte(u8 data) {}
69static inline void __uart_tx_flush(void) {}
70#endif
71
Kyösti Mälkkif2f7f032014-04-04 15:05:28 +030072#if CONFIG_GDB_STUB && (ENV_ROMSTAGE || ENV_RAMSTAGE)
73#define CONFIG_UART_FOR_GDB CONFIG_UART_FOR_CONSOLE
74static inline void __gdb_hw_init(void) { uart_init(CONFIG_UART_FOR_GDB); }
75static inline void __gdb_tx_byte(u8 data) { uart_tx_byte(CONFIG_UART_FOR_GDB, data); }
76static inline void __gdb_tx_flush(void) { uart_tx_flush(CONFIG_UART_FOR_GDB); }
77static inline u8 __gdb_rx_byte(void) { return uart_rx_byte(CONFIG_UART_FOR_GDB); }
78#endif
79
Kyösti Mälkkif3390862014-02-26 15:19:04 +020080#endif /* __ROMCC__ */
81
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020082#endif /* CONSOLE_UART_H */