Re: [U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor

2010-01-18 Thread Wolfgang Denk
Dear Stefano Babic, In message <4b540ab9.5080...@denx.de> you wrote: > > > What happens if - for example - CONFIG_SYS_MX51_UART1 _and_ > > CONFIG_SYS_MX51_UART2 are defiend? How is CONFIG_SERIAL_MULTI going to > > be supported? > > The patch adds only support for the i.MX51 and does Something mi

Re: [U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor

2010-01-17 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, >> @@ -49,8 +51,14 @@ >> #define UART_PHYS 0x1001b000 >> #elif defined(CONFIG_SYS_MX27_UART6) >> #define UART_PHYS 0x1001c000 >> +#elif defined(CONFIG_SYS_MX51_UART1) >> +#define UART_PHYS UART1_BASE_ADDR >> +#elif defined(CONFIG_SYS_M

Re: [U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor

2010-01-17 Thread Wolfgang Denk
Dear Stefano Babic, In message <1263212760-27272-6-git-send-email-sba...@denx.de> you wrote: > The patch adds support for the Freescale mx51 processor. > @@ -49,8 +51,14 @@ > #define UART_PHYS 0x1001b000 > #elif defined(CONFIG_SYS_MX27_UART6) > #define UART_PHYS 0x1001c000 > +#elif defined(CON

[U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor

2010-01-11 Thread Stefano Babic
The patch adds support for the Freescale mx51 processor. Signed-off-by: Stefano Babic Signed-off-by: Fred Fan fanyef...@gmail.com --- drivers/serial/serial_mxc.c | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/seri