/usr/src/linux-headers-5.15.0-190/arch/arm/include/debug
NameSizeModeActions
8250.S10680644editdlrm
asm9260.S6450644editdlrm
at91.S10410644editdlrm
bcm63xx.S6430644editdlrm
brcmstb.S59570644editdlrm
clps711x.S7670644editdlrm
dc21285.S8420644editdlrm
digicolor.S6480644editdlrm
exynos.S11660644editdlrm
icedcc.S14840644editdlrm
imx-uart.h54220644editdlrm
imx.S12060644editdlrm
meson.S7710644editdlrm
msm.S10370644editdlrm
omap2plus.S20920644editdlrm
palmchip.S1990644editdlrm
pl01x.S8960644editdlrm
renesas-scif.S10740644editdlrm
s3c24xx.S10700644editdlrm
s5pv210.S8910644editdlrm
sa1100.S16810644editdlrm
samsung.S19030644editdlrm
sti.S10220644editdlrm
stm32.S11620644editdlrm
tegra.S65000644editdlrm
uncompress.h2220644editdlrm
ux500.S10320644editdlrm
vexpress.S12160644editdlrm
vf.S9230644editdlrm
vt8500.S7740644editdlrm
zynq.S12770644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/arch/arm/include/debug/s5pv210.S (891B)
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. * http://www.samsung.com */ /* pull in the relevant register and map files. */ #define S3C_ADDR_BASE 0xF6000000 #define S3C_VA_UART S3C_ADDR_BASE + 0x01000000 #define S5PV210_PA_UART 0xe2900000 /* note, for the boot process to work we have to keep the UART * virtual address aligned to an 1MiB boundary for the L1 * mapping the head code makes. We keep the UART virtual address * aligned and add in the offset when we load the value here. */ .macro addruart, rp, rv, tmp ldr \rp, =S5PV210_PA_UART ldr \rv, =S3C_VA_UART #if CONFIG_DEBUG_S3C_UART != 0 add \rp, \rp, #(0x400 * CONFIG_DEBUG_S3C_UART) add \rv, \rv, #(0x400 * CONFIG_DEBUG_S3C_UART) #endif .endm #define fifo_full fifo_full_s5pv210 #define fifo_level fifo_level_s5pv210 #include