hc
2024-05-10 61598093bbdd283a7edc367d900f223070ead8d2
kernel/arch/arm/include/debug/bcm63xx.S
....@@ -1,11 +1,8 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * Broadcom BCM63xx low-level UART debug
34 *
45 * Copyright (C) 2014 Broadcom Corporation
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 version 2 as
8
- * published by the Free Software Foundation.
96 */
107
118 #include <linux/serial_bcm63xx.h>
....@@ -20,12 +17,15 @@
2017 strb \rd, [\rx, #UART_FIFO_REG]
2118 .endm
2219
23
- .macro waituart, rd, rx
20
+ .macro waituarttxrdy, rd, rx
2421 1001: ldr \rd, [\rx, #UART_IR_REG]
2522 tst \rd, #(1 << UART_IR_TXEMPTY)
2623 beq 1001b
2724 .endm
2825
26
+ .macro waituartcts, rd, rx
27
+ .endm
28
+
2929 .macro busyuart, rd, rx
3030 1002: ldr \rd, [\rx, #UART_IR_REG]
3131 tst \rd, #(1 << UART_IR_TXTRESH)