-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: socfpga: Fix socfpga compilation with early_printk() enabled
This fixes early_printk() compilation for socfpga. (senduart/busyuart/waituart were missing). It does that by making Picochip code generic. Signed-off-by: Pavel Machek <pavel@denx.de> Acked-by: Dinh Nguyen <dinguyen@altera.com> Acked-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
- Loading branch information
Pavel Machek
authored and
Arnd Bergmann
committed
Oct 25, 2012
1 parent
5e3059b
commit ef3f944
Showing
3 changed files
with
33 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* 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> | ||
|
||
.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters