Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-16 Thread Daniel Schwierzeck
Am Sonntag, den 17.01.2016, 00:15 +0800 schrieb Wills Wang: > > On Saturday, January 09, 2016 10:30 PM, Daniel Schwierzeck wrote: > > Am Samstag, den 09.01.2016, 18:46 +0800 schrieb Wills Wang: > > > On 01/09/2016 12:23 AM, Daniel Schwierzeck wrote: > > > > Am Montag, den 04.01.2016, 19:14 +0800 s

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-16 Thread Wills Wang
On Saturday, January 09, 2016 10:30 PM, Daniel Schwierzeck wrote: Am Samstag, den 09.01.2016, 18:46 +0800 schrieb Wills Wang: On 01/09/2016 12:23 AM, Daniel Schwierzeck wrote: Am Montag, den 04.01.2016, 19:14 +0800 schrieb Wills Wang: MIPS archtecture have no "in_le32/in_be32/out_le32/out_be

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-09 Thread Daniel Schwierzeck
Am Samstag, den 09.01.2016, 18:46 +0800 schrieb Wills Wang: > > On 01/09/2016 12:23 AM, Daniel Schwierzeck wrote: > > Am Montag, den 04.01.2016, 19:14 +0800 schrieb Wills Wang: > > > MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" > > > macro, > > > but usually define CONFIG_SYS_BIG_E

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-09 Thread Wills Wang
On 01/09/2016 12:23 AM, Daniel Schwierzeck wrote: Am Montag, den 04.01.2016, 19:14 +0800 schrieb Wills Wang: MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel for register operation in mips when define CONF

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-08 Thread Daniel Schwierzeck
Am Montag, den 04.01.2016, 19:14 +0800 schrieb Wills Wang: > MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, > but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel > for register operation in mips when define CONFIG_SYS_NS16550_MEM32. > > Signed-off-by: Wills W

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-04 Thread Wills Wang
On 01/04/2016 09:25 PM, Marek Vasut wrote: On Monday, January 04, 2016 at 02:12:08 PM, Thomas Chou wrote: Hi Wills, On 2016年01月04日 19:14, Wills Wang wrote: MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-04 Thread Marek Vasut
On Monday, January 04, 2016 at 02:12:08 PM, Thomas Chou wrote: > Hi Wills, > > On 2016年01月04日 19:14, Wills Wang wrote: > > MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, > > but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel > > for register operation in mip

Re: [U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-04 Thread Thomas Chou
Hi Wills, On 2016年01月04日 19:14, Wills Wang wrote: MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel for register operation in mips when define CONFIG_SYS_NS16550_MEM32. Signed-off-by: Wills Wang --- As Ma

[U-Boot] [PATCH v6 06/10] ns16550: add support for mips

2016-01-04 Thread Wills Wang
MIPS archtecture have no "in_le32/in_be32/out_le32/out_be32" macro, but usually define CONFIG_SYS_BIG_ENDIAN, this patch use readl/writel for register operation in mips when define CONFIG_SYS_NS16550_MEM32. Signed-off-by: Wills Wang --- Changes in v6: None Changes in v5: None Changes in v4: None