[ARM] Fix decompressor serial IO to give CRLF not LFCR

As per the corresponding change to the serial drivers, arrange
for ARM decompressors to give CRLF.  Move the common putstr code
into misc.c such that machines only need to supply "putc" and
"flush" functions.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Russell King 2006-03-28 10:24:33 +01:00 committed by Russell King
parent 3747b36eea
commit a081568d70
24 changed files with 186 additions and 288 deletions

View file

@ -20,24 +20,32 @@ unsigned int __machine_arch_type;
#include <linux/string.h> #include <linux/string.h>
#include <asm/arch/uncompress.h>
#ifdef STANDALONE_DEBUG #ifdef STANDALONE_DEBUG
#define putstr printf #define putstr printf
#endif #else
static void putstr(const char *ptr);
#include <linux/compiler.h>
#include <asm/arch/uncompress.h>
#ifdef CONFIG_DEBUG_ICEDCC #ifdef CONFIG_DEBUG_ICEDCC
#define putstr icedcc_putstr
#define putc icedcc_putc
extern void icedcc_putc(int ch); extern void icedcc_putc(int ch);
#define putc(ch) icedcc_putc(ch)
#define flush() do { } while (0)
#endif
static void static void putstr(const char *ptr)
icedcc_putstr(const char *ptr)
{ {
for (; *ptr != '\0'; ptr++) { char c;
icedcc_putc(*ptr);
while ((c = *ptr++) != '\0') {
if (c == '\n')
putc('\r');
putc(c);
} }
flush();
} }
#endif #endif

View file

@ -15,7 +15,7 @@
#define UART(x) (*(volatile unsigned long *)(serial_port + (x))) #define UART(x) (*(volatile unsigned long *)(serial_port + (x)))
static void putstr( const char *s ) static void putc(int c)
{ {
unsigned long serial_port; unsigned long serial_port;
do { do {
@ -28,17 +28,16 @@ static void putstr( const char *s )
return; return;
} while (0); } while (0);
for (; *s; s++) { /* wait for space in the UART's transmitter */
/* wait for space in the UART's transmitter */ while ((UART(UART_SR) & UART_SR_TxFF))
while ((UART(UART_SR) & UART_SR_TxFF)); barrier();
/* send the character out. */
UART(UART_DR) = *s; /* send the character out. */
/* if a LF, also do CR... */ UART(UART_DR) = c;
if (*s == 10) { }
while ((UART(UART_SR) & UART_SR_TxFF));
UART(UART_DR) = 13; static inline void flush(void)
} {
}
} }
#define arch_decomp_setup() #define arch_decomp_setup()

View file

@ -31,21 +31,22 @@
* *
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static void putc(int c)
{
void __iomem *sys = (void __iomem *) AT91_BASE_SYS; /* physical address */
while (!(__raw_readl(sys + AT91_DBGU_SR) & AT91_DBGU_TXRDY))
barrier();
__raw_writel(c, sys + AT91_DBGU_THR);
}
static inline void flush(void)
{ {
void __iomem *sys = (void __iomem *) AT91_BASE_SYS; /* physical address */ void __iomem *sys = (void __iomem *) AT91_BASE_SYS; /* physical address */
while (*s) {
while (!(__raw_readl(sys + AT91_DBGU_SR) & AT91_DBGU_TXRDY)) { barrier(); }
__raw_writel(*s, sys + AT91_DBGU_THR);
if (*s == '\n') {
while (!(__raw_readl(sys + AT91_DBGU_SR) & AT91_DBGU_TXRDY)) { barrier(); }
__raw_writel('\r', sys + AT91_DBGU_THR);
}
s++;
}
/* wait for transmission to complete */ /* wait for transmission to complete */
while (!(__raw_readl(sys + AT91_DBGU_SR) & AT91_DBGU_TXEMPTY)) { barrier(); } while (!(__raw_readl(sys + AT91_DBGU_SR) & AT91_DBGU_TXEMPTY))
barrier();
} }
#define arch_decomp_setup() #define arch_decomp_setup()

View file

@ -3,27 +3,19 @@
* *
* Copyright (C) 1999, 2000 Nexus Electronics Ltd. * Copyright (C) 1999, 2000 Nexus Electronics Ltd.
*/ */
#define BASE 0x03010000 #define BASE 0x03010000
#define SERBASE (BASE + (0x2f8 << 2)) #define SERBASE (BASE + (0x2f8 << 2))
static __inline__ void putc(char c) static inline void putc(char c)
{ {
while (!(*((volatile unsigned int *)(SERBASE + 0x14)) & 0x20)); while (!(*((volatile unsigned int *)(SERBASE + 0x14)) & 0x20))
barrier();
*((volatile unsigned int *)(SERBASE)) = c; *((volatile unsigned int *)(SERBASE)) = c;
} }
/* static inline void flush(void)
* This does not append a newline
*/
static void putstr(const char *s)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
static __inline__ void arch_decomp_setup(void) static __inline__ void arch_decomp_setup(void)

View file

@ -25,7 +25,6 @@
#undef CLPS7111_BASE #undef CLPS7111_BASE
#define CLPS7111_BASE CLPS7111_PHYS_BASE #define CLPS7111_BASE CLPS7111_PHYS_BASE
#define barrier() __asm__ __volatile__("": : :"memory")
#define __raw_readl(p) (*(unsigned long *)(p)) #define __raw_readl(p) (*(unsigned long *)(p))
#define __raw_writel(v,p) (*(unsigned long *)(p) = (v)) #define __raw_writel(v,p) (*(unsigned long *)(p) = (v))
@ -40,21 +39,15 @@
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static inline void putc(int c)
{ {
char c; while (clps_readl(SYSFLGx) & SYSFLG_UTXFF)
barrier();
clps_writel(c, UARTDRx);
}
while ((c = *s++) != '\0') { static inline void flush(void)
while (clps_readl(SYSFLGx) & SYSFLG_UTXFF) {
barrier();
clps_writel(c, UARTDRx);
if (c == '\n') {
while (clps_readl(SYSFLGx) & SYSFLG_UTXFF)
barrier();
clps_writel('\r', UARTDRx);
}
}
while (clps_readl(SYSFLGx) & SYSFLG_UBUSY) while (clps_readl(SYSFLGx) & SYSFLG_UBUSY)
barrier(); barrier();
} }

View file

@ -8,33 +8,34 @@
* published by the Free Software Foundation. * published by the Free Software Foundation.
*/ */
#include <linux/serial_reg.h>
#define SERIAL_BASE ((unsigned char *)0xfe000be0)
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static inline void putc(int c)
{ {
unsigned long tmp1, tmp2; unsigned char v, *base = SERIAL_BASE;
__asm__ __volatile__(
"ldrb %0, [%2], #1\n" do {
" teq %0, #0\n" v = base[UART_LSR << 2];
" beq 3f\n" barrier();
"1: strb %0, [%3]\n" } while (!(v & UART_LSR_THRE));
"2: ldrb %1, [%3, #0x14]\n"
" and %1, %1, #0x60\n" base[UART_TX << 2] = c;
" teq %1, #0x60\n" }
" bne 2b\n"
" teq %0, #'\n'\n" static inline void flush(void)
" moveq %0, #'\r'\n" {
" beq 1b\n" unsigned char v, *base = SERIAL_BASE;
" ldrb %0, [%2], #1\n"
" teq %0, #0\n" do {
" bne 1b\n" v = base[UART_LSR << 2];
"3: ldrb %1, [%3, #0x14]\n" barrier();
" and %1, %1, #0x60\n" } while ((v & (UART_LSR_TEMT|UART_LSR_THRE)) !=
" teq %1, #0x60\n" (UART_LSR_TEMT|UART_LSR_THRE));
" bne 3b"
: "=&r" (tmp1), "=&r" (tmp2)
: "r" (s), "r" (0xf0000be0) : "cc");
} }
/* /*

View file

@ -15,10 +15,11 @@
#define DC21285_BASE ((volatile unsigned int *)0x42000160) #define DC21285_BASE ((volatile unsigned int *)0x42000160)
#define SER0_BASE ((volatile unsigned char *)0x7c0003f8) #define SER0_BASE ((volatile unsigned char *)0x7c0003f8)
static __inline__ void putc(char c) static inline void putc(char c)
{ {
if (machine_is_netwinder()) { if (machine_is_netwinder()) {
while ((SER0_BASE[5] & 0x60) != 0x60); while ((SER0_BASE[5] & 0x60) != 0x60)
barrier();
SER0_BASE[0] = c; SER0_BASE[0] = c;
} else { } else {
while (DC21285_BASE[6] & 8); while (DC21285_BASE[6] & 8);
@ -26,17 +27,8 @@ static __inline__ void putc(char c)
} }
} }
/* static inline void flush(void)
* This does not append a newline
*/
static void putstr(const char *s)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
/* /*

View file

@ -36,7 +36,7 @@ static void __raw_writel(unsigned int value, unsigned int ptr)
#define PHYS_UART1_FLAG 0x808c0018 #define PHYS_UART1_FLAG 0x808c0018
#define UART1_FLAG_TXFF 0x20 #define UART1_FLAG_TXFF 0x20
static __inline__ void putc(char c) static inline void putc(int c)
{ {
int i; int i;
@ -49,14 +49,8 @@ static __inline__ void putc(char c)
__raw_writeb(c, PHYS_UART1_DATA); __raw_writeb(c, PHYS_UART1_DATA);
} }
static void putstr(const char *s) static inline void flush(void)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }

View file

@ -12,22 +12,20 @@
#define LSR 0x14 #define LSR 0x14
#define TEMPTY 0x40 #define TEMPTY 0x40
static void putstr(const char *s) static inline void putc(int c)
{ {
char c;
volatile unsigned char *p = (volatile unsigned char *)(IO_PHYS+0x20000); volatile unsigned char *p = (volatile unsigned char *)(IO_PHYS+0x20000);
while ( (c = *s++) != '\0') { /* wait until transmit buffer is empty */
/* wait until transmit buffer is empty */ while((p[LSR] & TEMPTY) == 0x0)
while((p[LSR] & TEMPTY) == 0x0); barrier();
/* write next character */
*p = c;
if(c == '\n') { /* write next character */
while((p[LSR] & TEMPTY) == 0x0); *p = c;
*p = '\r'; }
}
} static inline void flush(void)
{
} }
/* /*

View file

@ -39,8 +39,7 @@
* *
* This does not append a newline * This does not append a newline
*/ */
static void static void putc(int c)
putstr(const char *s)
{ {
unsigned long serial_port; unsigned long serial_port;
@ -54,20 +53,14 @@ putstr(const char *s)
return; return;
} while(0); } while(0);
while (*s) { while (!(UART(USR2) & USR2_TXFE))
while ( !(UART(USR2) & USR2_TXFE) ) barrier();
barrier();
UART(TXR) = *s; UART(TXR) = c;
}
if (*s == '\n') { static inline void flush(void)
while ( !(UART(USR2) & USR2_TXFE) ) {
barrier();
UART(TXR) = '\r';
}
s++;
}
} }
/* /*

View file

@ -28,21 +28,18 @@
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static void putc(int c)
{ {
while (*s) { while (AMBA_UART_FR & (1 << 5))
while (AMBA_UART_FR & (1 << 5)); barrier();
AMBA_UART_DR = *s; AMBA_UART_DR = c;
}
if (*s == '\n') { static inline void flush(void)
while (AMBA_UART_FR & (1 << 5)); {
while (AMBA_UART_FR & (1 << 3))
AMBA_UART_DR = '\r'; barrier();
}
s++;
}
while (AMBA_UART_FR & (1 << 3));
} }
/* /*

View file

@ -19,23 +19,15 @@ static volatile UTYPE uart_base;
#define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE) #define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE)
static __inline__ void putc(char c) static inline void putc(char c)
{ {
while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE); while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE)
barrier();
*uart_base = c; *uart_base = c;
} }
/* static inline void flush(void)
* This does not append a newline
*/
static void putstr(const char *s)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
static __inline__ void __arch_decomp_setup(unsigned long arch_id) static __inline__ void __arch_decomp_setup(unsigned long arch_id)

View file

@ -29,23 +29,18 @@
#define UARTSR PHYS(0x14) /* Status reg */ #define UARTSR PHYS(0x14) /* Status reg */
static __inline__ void putc(char c) static inline void putc(int c)
{ {
int j = 0x1000; int j = 0x1000;
while (--j && !(*UARTSR & UART_LSR_THRE)); while (--j && !(*UARTSR & UART_LSR_THRE))
barrier();
*UARTDR = c; *UARTDR = c;
} }
static void putstr(const char *s) static inline void flush(void)
{ {
while (*s)
{
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
#define arch_decomp_setup() #define arch_decomp_setup()

View file

@ -21,26 +21,18 @@
static volatile u32* uart_base; static volatile u32* uart_base;
static __inline__ void putc(char c) static inline void putc(int c)
{ {
/* Check THRE and TEMT bits before we transmit the character. /* Check THRE and TEMT bits before we transmit the character.
*/ */
while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE); while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE)
barrier();
*uart_base = c; *uart_base = c;
} }
/* static void flush(void)
* This does not append a newline
*/
static void putstr(const char *s)
{ {
while (*s)
{
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
static __inline__ void __arch_decomp_setup(unsigned long arch_id) static __inline__ void __arch_decomp_setup(unsigned long arch_id)

View file

@ -16,22 +16,17 @@
#define __raw_writeb(v,p) (*(volatile unsigned char *)(p) = (v)) #define __raw_writeb(v,p) (*(volatile unsigned char *)(p) = (v))
#define __raw_readb(p) (*(volatile unsigned char *)(p)) #define __raw_readb(p) (*(volatile unsigned char *)(p))
static __inline__ void putc(char c) static inline void putc(int c)
{ {
while(__raw_readb(IO_UART + 0x18) & 0x20 || while(__raw_readb(IO_UART + 0x18) & 0x20 ||
__raw_readb(IO_UART + 0x18) & 0x08); __raw_readb(IO_UART + 0x18) & 0x08)
barrier();
__raw_writeb(c, IO_UART + 0x00); __raw_writeb(c, IO_UART + 0x00);
} }
static void putstr(const char *s) static inline void flush(void)
{ {
while (*s) {
if (*s == 10) { /* If a LF, add CR */
putc(10);
putc(13);
}
putc(*(s++));
}
} }
static __inline__ void arch_decomp_setup(void) static __inline__ void arch_decomp_setup(void)

View file

@ -22,20 +22,15 @@
#define UART_STATUS (*(volatile unsigned long*) (UART2_PHYS + UART_R_STATUS)) #define UART_STATUS (*(volatile unsigned long*) (UART2_PHYS + UART_R_STATUS))
#define UART_DATA (*(volatile unsigned long*) (UART2_PHYS + UART_R_DATA)) #define UART_DATA (*(volatile unsigned long*) (UART2_PHYS + UART_R_DATA))
static __inline__ void putc (char ch) static inline void putc(int ch)
{ {
while (UART_STATUS & nTxRdy) while (UART_STATUS & nTxRdy)
; barrier();
UART_DATA = ch; UART_DATA = ch;
} }
static void putstr (const char* sz) static inline void flush(void)
{ {
for (; *sz; ++sz) {
putc (*sz);
if (*sz == '\n')
putc ('\r');
}
} }
/* NULL functions; we don't presently need them */ /* NULL functions; we don't presently need them */

View file

@ -30,8 +30,7 @@ unsigned int system_rev;
#define check_port(base, shift) ((base[UART_OMAP_MDR1 << shift] & 7) == 0) #define check_port(base, shift) ((base[UART_OMAP_MDR1 << shift] & 7) == 0)
#define omap_get_id() ((*(volatile unsigned int *)(0xfffed404)) >> 12) & ID_MASK #define omap_get_id() ((*(volatile unsigned int *)(0xfffed404)) >> 12) & ID_MASK
static void static void putc(int c)
putstr(const char *s)
{ {
volatile u8 * uart = 0; volatile u8 * uart = 0;
int shift = 2; int shift = 2;
@ -69,16 +68,13 @@ putstr(const char *s)
/* /*
* Now, xmit each character * Now, xmit each character
*/ */
while (*s) { while (!(uart[UART_LSR << shift] & UART_LSR_THRE))
while (!(uart[UART_LSR << shift] & UART_LSR_THRE)) barrier();
barrier(); uart[UART_TX << shift] = c;
uart[UART_TX << shift] = *s; }
if (*s++ == '\n') {
while (!(uart[UART_LSR << shift] & UART_LSR_THRE)) static inline void flush(void)
barrier(); {
uart[UART_TX << shift] = '\r';
}
}
} }
/* /*

View file

@ -17,23 +17,18 @@
#define UART FFUART #define UART FFUART
static __inline__ void putc(char c) static inline void putc(char c)
{ {
while (!(UART[5] & 0x20)); while (!(UART[5] & 0x20))
barrier();
UART[0] = c; UART[0] = c;
} }
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static inline void flush(void)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
/* /*

View file

@ -27,22 +27,16 @@
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static inline void putc(int c)
{ {
while (*s) { while (AMBA_UART_FR & (1 << 5))
while (AMBA_UART_FR & (1 << 5)) barrier();
barrier();
AMBA_UART_DR = *s; AMBA_UART_DR = c;
}
if (*s == '\n') { static inline void flush(void)
while (AMBA_UART_FR & (1 << 5)) {
barrier();
AMBA_UART_DR = '\r';
}
s++;
}
while (AMBA_UART_FR & (1 << 3)) while (AMBA_UART_FR & (1 << 3))
barrier(); barrier();
} }

View file

@ -67,31 +67,28 @@ extern __attribute__((pure)) struct param_struct *params(void);
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static void putc(int c)
{ {
extern void ll_write_char(char *, char c, char white); extern void ll_write_char(char *, char c, char white);
int x,y; int x,y;
unsigned char c;
char *ptr; char *ptr;
x = params->video_x; x = params->video_x;
y = params->video_y; y = params->video_y;
while ( ( c = *(unsigned char *)s++ ) != '\0' ) { if (c == '\n') {
if ( c == '\n' ) { if (++y >= video_num_lines)
y--;
} else if (c == '\r') {
x = 0;
} else {
ptr = VIDMEM + ((y*video_num_columns*params->bytes_per_char_v+x)*bytes_per_char_h);
ll_write_char(ptr, c, white);
if (++x >= video_num_columns) {
x = 0; x = 0;
if ( ++y >= video_num_lines ) { if ( ++y >= video_num_lines ) {
y--; y--;
} }
} else {
ptr = VIDMEM + ((y*video_num_columns*params->bytes_per_char_v+x)*bytes_per_char_h);
ll_write_char(ptr, c, white);
if ( ++x >= video_num_columns ) {
x = 0;
if ( ++y >= video_num_lines ) {
y--;
}
}
} }
} }
@ -99,6 +96,10 @@ static void putstr(const char *s)
params->video_y = y; params->video_y = y;
} }
static inline void flush(void)
{
}
static void error(char *x); static void error(char *x);
/* /*

View file

@ -67,8 +67,7 @@ uart_rd(unsigned int reg)
* waiting for tx to happen... * waiting for tx to happen...
*/ */
static void static void putc(int ch)
putc(char ch)
{ {
int cpuid = S3C2410_GSTATUS1_2410; int cpuid = S3C2410_GSTATUS1_2410;
@ -77,9 +76,6 @@ putc(char ch)
cpuid &= S3C2410_GSTATUS1_IDMASK; cpuid &= S3C2410_GSTATUS1_IDMASK;
#endif #endif
if (ch == '\n')
putc('\r'); /* expand newline to \r\n */
if (uart_rd(S3C2410_UFCON) & S3C2410_UFCON_FIFOMODE) { if (uart_rd(S3C2410_UFCON) & S3C2410_UFCON_FIFOMODE) {
int level; int level;
@ -101,19 +97,16 @@ putc(char ch)
} else { } else {
/* not using fifos */ /* not using fifos */
while ((uart_rd(S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE) != S3C2410_UTRSTAT_TXE); while ((uart_rd(S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE) != S3C2410_UTRSTAT_TXE)
barrier();
} }
/* write byte to transmission register */ /* write byte to transmission register */
uart_wr(S3C2410_UTXH, ch); uart_wr(S3C2410_UTXH, ch);
} }
static void static inline void flush(void)
putstr(const char *ptr)
{ {
for (; *ptr != '\0'; ptr++) {
putc(*ptr);
}
} }
#define __raw_writel(d,ad) do { *((volatile unsigned int *)(ad)) = (d); } while(0) #define __raw_writel(d,ad) do { *((volatile unsigned int *)(ad)) = (d); } while(0)

View file

@ -17,7 +17,7 @@
#define UART(x) (*(volatile unsigned long *)(serial_port + (x))) #define UART(x) (*(volatile unsigned long *)(serial_port + (x)))
static void putstr( const char *s ) static void putc(int c)
{ {
unsigned long serial_port; unsigned long serial_port;
@ -31,19 +31,16 @@ static void putstr( const char *s )
return; return;
} while (0); } while (0);
for (; *s; s++) { /* wait for space in the UART's transmitter */
/* wait for space in the UART's transmitter */ while (!(UART(UTSR1) & UTSR1_TNF))
while (!(UART(UTSR1) & UTSR1_TNF)); barrier();
/* send the character out. */ /* send the character out. */
UART(UTDR) = *s; UART(UTDR) = c;
}
/* if a LF, also do CR... */ static inline void flush(void)
if (*s == 10) { {
while (!(UART(UTSR1) & UTSR1_TNF));
UART(UTDR) = 13;
}
}
} }
/* /*

View file

@ -9,7 +9,7 @@
#define SERIAL_BASE ((volatile unsigned char *)0x400003f8) #define SERIAL_BASE ((volatile unsigned char *)0x400003f8)
static __inline__ void putc(char c) static inline void putc(int c)
{ {
int t; int t;
@ -18,17 +18,8 @@ static __inline__ void putc(char c)
while (t--); while (t--);
} }
/* static inline void flush(void)
* This does not append a newline
*/
static void putstr(const char *s)
{ {
while (*s) {
putc(*s);
if (*s == '\n')
putc('\r');
s++;
}
} }
#ifdef DEBUG #ifdef DEBUG

View file

@ -25,22 +25,16 @@
/* /*
* This does not append a newline * This does not append a newline
*/ */
static void putstr(const char *s) static inline void putc(int c)
{ {
while (*s) { while (AMBA_UART_FR & (1 << 5))
while (AMBA_UART_FR & (1 << 5)) barrier();
barrier();
AMBA_UART_DR = *s; AMBA_UART_DR = c;
}
if (*s == '\n') { static inline void flush(void)
while (AMBA_UART_FR & (1 << 5)) {
barrier();
AMBA_UART_DR = '\r';
}
s++;
}
while (AMBA_UART_FR & (1 << 3)) while (AMBA_UART_FR & (1 << 3))
barrier(); barrier();
} }