Commit 9f1ca068 authored by Heikki Krogerus's avatar Heikki Krogerus Committed by Greg Kroah-Hartman

serial: of_serial: Handle fifo-size property

This will reduce the need for extra types in 8250.c just
in case the fifo size differs from the standard.
Signed-off-by: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6a3f45dc
...@@ -33,6 +33,7 @@ Optional properties: ...@@ -33,6 +33,7 @@ Optional properties:
RTAS and should not be registered. RTAS and should not be registered.
- no-loopback-test: set to indicate that the port does not implements loopback - no-loopback-test: set to indicate that the port does not implements loopback
test mode test mode
- fifo-size: the fifo size of the UART.
Example: Example:
......
...@@ -97,6 +97,10 @@ static int of_platform_serial_setup(struct platform_device *ofdev, ...@@ -97,6 +97,10 @@ static int of_platform_serial_setup(struct platform_device *ofdev,
if (of_property_read_u32(np, "reg-shift", &prop) == 0) if (of_property_read_u32(np, "reg-shift", &prop) == 0)
port->regshift = prop; port->regshift = prop;
/* Check for fifo size */
if (of_property_read_u32(np, "fifo-size", &prop) == 0)
port->fifosize = prop;
port->irq = irq_of_parse_and_map(np, 0); port->irq = irq_of_parse_and_map(np, 0);
port->iotype = UPIO_MEM; port->iotype = UPIO_MEM;
if (of_property_read_u32(np, "reg-io-width", &prop) == 0) { if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment