aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJamie Iles <jamie@jamieiles.com>2011-06-27 08:32:34 -0400
committerGrant Likely <grant.likely@secretlab.ca>2011-06-30 15:02:00 -0400
commit7423734e19e7e0a90e3379152eacca2647f4377e (patch)
tree134745d5a331c27fa0a63da59264a2aceaa0d4ac /drivers
parent61ab1a90d81b5b8a53fc221a3665715c61614fb7 (diff)
tty: of_serial: support for 32 bit accesses
Some platforms e.g. TI Davinci require 32-bit accesses to the UARTs. The of_serial driver currently registers all UARTs as UPIO_MEM. Add a new attribute "reg-io-width" to allow the port to be registered with different IO width requirements. Acked-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/tty/serial/of_serial.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c
index c911b2419abb..36038ed8f09a 100644
--- a/drivers/tty/serial/of_serial.c
+++ b/drivers/tty/serial/of_serial.c
@@ -65,6 +65,23 @@ static int __devinit of_platform_serial_setup(struct platform_device *ofdev,
65 65
66 port->irq = irq_of_parse_and_map(np, 0); 66 port->irq = irq_of_parse_and_map(np, 0);
67 port->iotype = UPIO_MEM; 67 port->iotype = UPIO_MEM;
68 prop = of_get_property(np, "reg-io-width", &prop_size);
69 if (prop && (prop_size == sizeof(u32))) {
70 switch (be32_to_cpup(prop)) {
71 case 1:
72 port->iotype = UPIO_MEM;
73 break;
74 case 4:
75 port->iotype = UPIO_MEM32;
76 break;
77 default:
78 dev_warn(&ofdev->dev,
79 "unsupported io width (%d bytes)\n",
80 be32_to_cpup(prop));
81 return -EINVAL;
82 }
83 }
84
68 port->type = type; 85 port->type = type;
69 port->uartclk = be32_to_cpup(clk); 86 port->uartclk = be32_to_cpup(clk);
70 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP 87 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP