| To: | Alan Cox <alan@linux.intel.com> |
|---|---|
| Subject: | [PATCH 2/2] serial: of: allow au1x00 and rt288x to load from OF |
| From: | John Crispin <blogic@openwrt.org> |
| Date: | Fri, 25 Jan 2013 11:50:08 +0100 |
| Cc: | linux-serial@vger.kernel.org, linux-mips@linux-mips.org, John Crispin <blogic@openwrt.org> |
| In-reply-to: | <1359111008-9998-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: | <1359111008-9998-1-git-send-email-blogic@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
In order to make serial_8250 loadable via OF on Au1x00 and Ralink WiSoC we need
to default the iotype to UPIO_AU.
Signed-off-by: John Crispin <blogic@openwrt.org>
---
drivers/tty/serial/of_serial.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c
index e7cae1c..72e9743 100644
--- a/drivers/tty/serial/of_serial.c
+++ b/drivers/tty/serial/of_serial.c
@@ -97,7 +97,11 @@ static int of_platform_serial_setup(struct platform_device
*ofdev,
port->regshift = prop;
port->irq = irq_of_parse_and_map(np, 0);
+#if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
+ port->iotype = UPIO_AU;
+#else
port->iotype = UPIO_MEM;
+#endif
if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
switch (prop) {
case 1:
--
1.7.10.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 1/2] serial: ralink: adds support for the serial core found on ralink wisoc, John Crispin |
|---|---|
| Next by Date: | Re: [PATCH 1/2] serial: ralink: adds support for the serial core found on ralink wisoc, Sergei Shtylyov |
| Previous by Thread: | [PATCH 1/2] serial: ralink: adds support for the serial core found on ralink wisoc, John Crispin |
| Next by Thread: | Re: [PATCH 2/2] serial: of: allow au1x00 and rt288x to load from OF, Sergei Shtylyov |
| Indexes: | [Date] [Thread] [Top] [All Lists] |