diff options
author | Jamie Iles <jamie@jamieiles.com> | 2011-06-27 08:32:34 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-30 15:02:00 -0400 |
commit | 7423734e19e7e0a90e3379152eacca2647f4377e (patch) | |
tree | 134745d5a331c27fa0a63da59264a2aceaa0d4ac | |
parent | 61ab1a90d81b5b8a53fc221a3665715c61614fb7 (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>
-rw-r--r-- | Documentation/devicetree/bindings/tty/serial/of-serial.txt | 3 | ||||
-rw-r--r-- | drivers/tty/serial/of_serial.c | 17 |
2 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/tty/serial/of-serial.txt b/Documentation/devicetree/bindings/tty/serial/of-serial.txt index 35e53ae85eec..337a7e51faca 100644 --- a/Documentation/devicetree/bindings/tty/serial/of-serial.txt +++ b/Documentation/devicetree/bindings/tty/serial/of-serial.txt | |||
@@ -19,6 +19,9 @@ Optional properties: | |||
19 | - current-speed : the current active speed of the UART. | 19 | - current-speed : the current active speed of the UART. |
20 | - reg-offset : offset to apply to the mapbase from the start of the registers. | 20 | - reg-offset : offset to apply to the mapbase from the start of the registers. |
21 | - reg-shift : quantity to shift the register offsets by. | 21 | - reg-shift : quantity to shift the register offsets by. |
22 | - reg-io-width : the size (in bytes) of the IO accesses that should be | ||
23 | performed on the device. There are some systems that require 32-bit | ||
24 | accesses to the UART (e.g. TI davinci). | ||
22 | - used-by-rtas : set to indicate that the port is in use by the OpenFirmware | 25 | - used-by-rtas : set to indicate that the port is in use by the OpenFirmware |
23 | RTAS and should not be registered. | 26 | RTAS and should not be registered. |
24 | 27 | ||
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 |