]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ns16550: change to allow 32 bit access to registers
authorDave Aldridge <fovsoft@gmail.com>
Thu, 1 Sep 2011 22:47:14 +0000 (22:47 +0000)
committerWolfgang Denk <wd@denx.de>
Sat, 1 Oct 2011 19:54:16 +0000 (21:54 +0200)
If CONFIG_SYS_NS16550_MEM32 is defined then 32 bit memory
mapped access will be used to read/write the uart registers.

This is especially useful for SoC devices that implement 16550
compatible uarts but that have peripheral access width constraints.

Signed-off-by: Dave Aldridge <fovsoft@gmail.com>
drivers/serial/ns16550.c
include/ns16550.h

index 8eeb48fb2a9788607be43793107695fc69727f56..0174744dfe726be1e4d8927d03880ad9b99ed3cf 100644 (file)
 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
 #define serial_out(x,y)        outb(x,(ulong)y)
 #define serial_in(y)   inb((ulong)y)
+#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
+#define serial_out(x,y) out_be32(y,x)
+#define serial_in(y)   in_be32(y)
+#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
+#define serial_out(x,y) out_le32(y,x)
+#define serial_in(y)   in_le32(y)
 #else
 #define serial_out(x,y) writeb(x,y)
 #define serial_in(y)   readb(y)
index 9ea81e9463252872956fb85f14984ecbb6a85348..51f1c17b317ab4aace4c24d5d8aaff9a0837b630 100644 (file)
  * will not allocate storage for arrays of size 0
  */
 
+#include <linux/types.h>
+
 #if !defined(CONFIG_SYS_NS16550_REG_SIZE) || (CONFIG_SYS_NS16550_REG_SIZE == 0)
 #error "Please define NS16550 registers size."
+#elif defined(CONFIG_SYS_NS16550_MEM32)
+#define UART_REG(x) u32 x
 #elif (CONFIG_SYS_NS16550_REG_SIZE > 0)
 #define UART_REG(x)                                               \
        unsigned char prepad_##x[CONFIG_SYS_NS16550_REG_SIZE - 1]; \