mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 12:40:54 +07:00
0836b5cdd2
639da5ee3
(ARM: add an extra temp register to the low level debugging
addruart macro) didn't include picoxcell as it hadn't been merged at the
time. Fix up the compile breakage by adding the extra temp parameter.
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
36 lines
921 B
ArmAsm
36 lines
921 B
ArmAsm
/*
|
|
* Copyright (c) 2011 Picochip Ltd., Jamie Iles
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Derived from arch/arm/mach-davinci/include/mach/debug-macro.S to use 32-bit
|
|
* accesses to the 8250.
|
|
*/
|
|
#include <linux/serial_reg.h>
|
|
#include <mach/hardware.h>
|
|
#include <mach/map.h>
|
|
|
|
#define UART_SHIFT 2
|
|
|
|
.macro addruart, rp, rv, tmp
|
|
ldr \rv, =PHYS_TO_IO(PICOXCELL_UART1_BASE)
|
|
ldr \rp, =PICOXCELL_UART1_BASE
|
|
.endm
|
|
|
|
.macro senduart,rd,rx
|
|
str \rd, [\rx, #UART_TX << UART_SHIFT]
|
|
.endm
|
|
|
|
.macro busyuart,rd,rx
|
|
1002: ldr \rd, [\rx, #UART_LSR << UART_SHIFT]
|
|
and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
|
teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
|
bne 1002b
|
|
.endm
|
|
|
|
/* The UART's don't have any flow control IO's wired up. */
|
|
.macro waituart,rd,rx
|
|
.endm
|