| To: | John Crispin <blogic@openwrt.org> |
|---|---|
| Subject: | Re: [PATCH V3 7/10] MIPS: ralink: adds early_printk support |
| From: | Sergei Shtylyov <sshtylyov@mvista.com> |
| Date: | Mon, 28 Jan 2013 16:16:39 +0400 |
| Cc: | Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org |
| In-reply-to: | <1359358817-3867-1-git-send-email-blogic@openwrt.org> |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| References: | <1359358817-3867-1-git-send-email-blogic@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130107 Thunderbird/17.0.2 |
Hello. On 28-01-2013 11:40, John Crispin wrote: Add the code needed to make early printk work. Signed-off-by: John Crispin <blogic@openwrt.org> --- arch/mips/ralink/early_printk.c | 45 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 arch/mips/ralink/early_printk.c diff --git a/arch/mips/ralink/early_printk.c b/arch/mips/ralink/early_printk.c new file mode 100644 index 0000000..68aabb9 --- /dev/null +++ b/arch/mips/ralink/early_printk.c @@ -0,0 +1,45 @@ +/* + * 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. + * + * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org> + */ + +#include <linux/io.h> +#include <linux/serial_reg.h> + +#include <asm/addrspace.h> + +/* UART registers */ this comment refers to the register #defines below, why it is here? +#define EARLY_UART_BASE 0x10000c00 + +#define UART_REG_RX 0x00 +#define UART_REG_TX 0x04 +#define UART_REG_IER 0x08 +#define UART_REG_IIR 0x0c +#define UART_REG_FCR 0x10 +#define UART_REG_LCR 0x14 +#define UART_REG_MCR 0x18 +#define UART_REG_LSR 0x1c WBR, Sergei |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH V3 7/10] MIPS: ralink: adds early_printk support, John Crispin |
|---|---|
| Next by Date: | [PATCH 04/13] MIPS: BCM63XX: add OHCI/EHCI configuration bits to common USB code, Florian Fainelli |
| Previous by Thread: | [PATCH V3 7/10] MIPS: ralink: adds early_printk support, John Crispin |
| Next by Thread: | Re: [PATCH V3 7/10] MIPS: ralink: adds early_printk support, John Crispin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |