summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/debug_ll.h
blob: 98a7d0d83959a6be1a7fe4cc9e68d486896da5de (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* SPDX-License-Identifier: GPL-2.0 */

#ifndef __ASM_DEBUG_LL_H__
#define __ASM_DEBUG_LL_H__

#ifdef CONFIG_DEBUG_IMX_UART
#include <mach/imx/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_ROCKCHIP_UART
#include <mach/rockchip/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_OMAP_UART
#include <mach/omap/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_ZYNQMP_UART
#include <mach/zynqmp/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_STM32MP_UART
#include <mach/stm32mp/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_VEXPRESS_UART
#include <mach/vexpress/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_BCM283X_UART
#include <mach/bcm283x/debug_ll.h>
#endif

#ifdef CONFIG_DEBUG_QEMU_ARM64_VIRT
#define DEBUG_LL_UART_ADDR		0x9000000
#include <debug_ll/pl011.h>
#elif defined CONFIG_ARCH_MVEBU
#include <mach/mvebu/debug_ll.h>
#elif defined CONFIG_ARCH_DAVINCI
#include <mach/davinci/debug_ll.h>
#elif defined CONFIG_ARCH_ZYNQ
#include <mach/zynq/debug_ll.h>
#elif defined CONFIG_ARCH_VERSATILE
#include <mach/versatile/debug_ll.h>
#elif defined CONFIG_ARCH_LAYERSCAPE
#include <mach/layerscape/debug_ll.h>
#elif defined CONFIG_ARCH_TEGRA
#include <mach/tegra/debug_ll.h>
#elif defined CONFIG_ARCH_UEMD
#include <mach/uemd/debug_ll.h>
#elif defined CONFIG_ARCH_SOCFPGA
#include <mach/socfpga/debug_ll.h>
#elif defined CONFIG_ARCH_PXA
#include <mach/pxa/debug_ll.h>
#elif defined CONFIG_ARCH_NOMADIK
#include <mach/nomadik/debug_ll.h>
#elif defined CONFIG_ARCH_MXS
#include <mach/mxs/debug_ll.h>
#elif defined CONFIG_ARCH_EP93XX
#include <mach/ep93xx/debug_ll.h>
#elif defined CONFIG_ARCH_DIGIC
#include <mach/digic/debug_ll.h>
#elif defined CONFIG_ARCH_CLPS711X
#include <mach/clps711x/debug_ll.h>
#elif defined CONFIG_ARCH_AT91
#include <mach/at91/debug_ll.h>
#elif defined CONFIG_ARCH_K3
#include <mach/k3/debug_ll.h>
#endif

#endif