summaryrefslogtreecommitdiffstats
path: root/arch/riscv/include/asm/debug_ll.h
blob: b4caa0597a2d44bf54a5fed4669586627e7ab375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (C) 2017 Antony Pavlov <antonynpavlov@gmail.com>
 */

#ifndef __ASM_DEBUG_LL__
#define __ASM_DEBUG_LL__

/** @file
 *  This File contains declaration for early output support
 */

#include <linux/kconfig.h>

#ifdef CONFIG_DEBUG_LL_NS16550

#if defined CONFIG_DEBUG_ERIZO
#define DEBUG_LL_UART_ADDR	0x90000000
#define DEBUG_LL_UART_CLK       (24000000 / 16)
#elif defined CONFIG_DEBUG_STARFIVE
#define DEBUG_LL_UART_ADDR	0x12440000
#define DEBUG_LL_UART_CLK       (100000000 / 16)
#endif

#define DEBUG_LL_UART_SHIFT	2
#define DEBUG_LL_UART_IOSIZE32

#define DEBUG_LL_UART_BPS       CONFIG_BAUDRATE
#define DEBUG_LL_UART_DIVISOR   (DEBUG_LL_UART_CLK / DEBUG_LL_UART_BPS)

#include <asm/debug_ll_ns16550.h>

#elif defined CONFIG_DEBUG_SIFIVE

#include <io.h>

static inline void PUTC_LL(char ch)
{
	void __iomem *uart0 = IOMEM(0x10010000);

	while (readl(uart0) & 0x80000000)
		;

	writel(ch, uart0);
}

#endif

#ifndef debug_ll_init
#define debug_ll_init() (void)0
#endif

#endif /* __ASM_DEBUG_LL__ */