xtensa: xtfpga: fix serial port register width and endianness
authorMax Filippov <jcmvbkbc@gmail.com>
Mon, 24 Aug 2015 16:44:46 +0000 (19:44 +0300)
committerChris Zankel <chris@zankel.net>
Fri, 11 Mar 2016 08:53:31 +0000 (08:53 +0000)
Serial port is attached to XTFPGA boards as native endian device, mark
it as such in DTS and pass correct endianness in platform data.
Set register width in DTS to 4, this way it matches the platform data
and works correctly on big-endian CPUs.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/boot/dts/xtfpga.dtsi
arch/xtensa/platforms/xtfpga/setup.c

index cd0b9e34adc8b371d3548c6a9e1218aaef24bd38..be3fd769677aab0e4f156a4d7f834bf2b79dc559 100644 (file)
@@ -60,6 +60,8 @@
                        no-loopback-test;
                        reg = <0x0d050020 0x20>;
                        reg-shift = <2>;
+                       reg-io-width = <4>;
+                       native-endian;
                        interrupts = <0 1>; /* external irq 0 */
                        clocks = <&osc>;
                };
index e9f65f79cf2ea0bff6393313385bbebf500db9a3..b7f468a6a557229d9d6ecce10b39f30bc1dfdf2e 100644 (file)
@@ -283,7 +283,7 @@ static struct plat_serial8250_port serial_platform_data[] = {
                .irq            = DUART16552_INTNUM,
                .flags          = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
                                  UPF_IOREMAP,
-               .iotype         = UPIO_MEM32,
+               .iotype         = XCHAL_HAVE_BE ? UPIO_MEM32BE : UPIO_MEM32,
                .regshift       = 2,
                .uartclk        = 0,    /* set in xtavnet_init() */
        },
This page took 0.032333 seconds and 5 git commands to generate.