diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2007-10-02 12:15:13 +1000 | 
|---|---|---|
| committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-10-03 07:23:13 -0500 | 
| commit | 7ddc5f978b16c024b6c1fcecbda6815d3d3222ef (patch) | |
| tree | c6772bcbf1c19583b9aaf1303aea09e12e2568a0 | |
| parent | 340ffd267c85fc28da7cfd681b177c816af800cf (diff) | |
| download | olio-linux-3.10-7ddc5f978b16c024b6c1fcecbda6815d3d3222ef.tar.xz olio-linux-3.10-7ddc5f978b16c024b6c1fcecbda6815d3d3222ef.zip  | |
[POWERPC] Virtex: Add uartlite bootwrapper driver
Allows the bootwrapper to use the uartlite device for console output.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
| -rw-r--r-- | arch/powerpc/boot/Makefile | 2 | ||||
| -rw-r--r-- | arch/powerpc/boot/ops.h | 1 | ||||
| -rw-r--r-- | arch/powerpc/boot/serial.c | 2 | ||||
| -rw-r--r-- | arch/powerpc/boot/uartlite.c | 64 | 
4 files changed, 68 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 53fd8e6a4e3..cf80db3ef78 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -46,7 +46,7 @@ src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \  		ns16550.c serial.c simple_alloc.c div64.S util.S \  		gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \  		4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \ -		cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c +		cpm-serial.c stdlib.c mpc52xx-psc.c planetcore.c uartlite.c  src-plat := of.c cuboot-52xx.c cuboot-83xx.c cuboot-85xx.c holly.c \  		cuboot-ebony.c treeboot-ebony.c prpmc2800.c \  		ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \ diff --git a/arch/powerpc/boot/ops.h b/arch/powerpc/boot/ops.h index e948e57abef..a180b6505f4 100644 --- a/arch/powerpc/boot/ops.h +++ b/arch/powerpc/boot/ops.h @@ -85,6 +85,7 @@ int ns16550_console_init(void *devp, struct serial_console_data *scdp);  int mpsc_console_init(void *devp, struct serial_console_data *scdp);  int cpm_console_init(void *devp, struct serial_console_data *scdp);  int mpc5200_psc_console_init(void *devp, struct serial_console_data *scdp); +int uartlite_console_init(void *devp, struct serial_console_data *scdp);  void *simple_alloc_init(char *base, unsigned long heap_size,  			unsigned long granularity, unsigned long max_allocs);  extern void flush_cache(void *, unsigned long); diff --git a/arch/powerpc/boot/serial.c b/arch/powerpc/boot/serial.c index 95e08e4ddcd..cafeece20ac 100644 --- a/arch/powerpc/boot/serial.c +++ b/arch/powerpc/boot/serial.c @@ -128,6 +128,8 @@ int serial_console_init(void)  		rc = cpm_console_init(devp, &serial_cd);  	else if (dt_is_compatible(devp, "mpc5200-psc-uart"))  		rc = mpc5200_psc_console_init(devp, &serial_cd); +	else if (dt_is_compatible(devp, "xilinx,uartlite")) +		rc = uartlite_console_init(devp, &serial_cd);  	/* Add other serial console driver calls here */ diff --git a/arch/powerpc/boot/uartlite.c b/arch/powerpc/boot/uartlite.c new file mode 100644 index 00000000000..f4249a74c36 --- /dev/null +++ b/arch/powerpc/boot/uartlite.c @@ -0,0 +1,64 @@ +/* + * Xilinx UARTLITE bootloader driver + * + * Copyright (C) 2007 Secret Lab Technologies Ltd. + * + * This file is licensed under the terms of the GNU General Public License + * version 2. This program is licensed "as is" without any warranty of any + * kind, whether express or implied. + */ + +#include <stdarg.h> +#include <stddef.h> +#include "types.h" +#include "string.h" +#include "stdio.h" +#include "io.h" +#include "ops.h" + +static void * reg_base; + +static int uartlite_open(void) +{ +	/* Clear the RX FIFO */ +	out_be32(reg_base + 0x0C, 0x2); +	return 0; +} + +static void uartlite_putc(unsigned char c) +{ +	while ((in_be32(reg_base + 0x8) & 0x08) != 0); /* spin */ +	out_be32(reg_base + 0x4, c); +} + +static unsigned char uartlite_getc(void) +{ +	while ((in_be32(reg_base + 0x8) & 0x01) == 0); /* spin */ +	return in_be32(reg_base); +} + +static u8 uartlite_tstc(void) +{ +	return ((in_be32(reg_base + 0x8) & 0x01) != 0); +} + +int uartlite_console_init(void *devp, struct serial_console_data *scdp) +{ +	int n; +	unsigned long reg_phys; + +	n = getprop(devp, "virtual-reg", ®_base, sizeof(reg_base)); +	if (n != sizeof(reg_base)) { +		if (!dt_xlate_reg(devp, 0, ®_phys, NULL)) +			return -1; + +		reg_base = (void *)reg_phys; +	} + +	scdp->open = uartlite_open; +	scdp->putc = uartlite_putc; +	scdp->getc = uartlite_getc; +	scdp->tstc = uartlite_tstc; +	scdp->close = NULL; +	return 0; +}  |