Re: [PATCH 0/8] Basic ARM device tree support

2011-01-27 Thread Jason Liu
t; +#ifdef CONFIG_OF_FLATTREE > +       /* Make sure DT blob is mapped */ > +       adr     r0, __devtree_pointer > +       ldr     r0, [r0] > +       mov     r0, r0, lsr #20 > +       mov     r0, r0, lsl #20 > +       add     r3, r0, #PAGE_OFFSET > +       add     r3, r4, r3, lsr #18

[PATCH 0/3] Add MX51 basic DT support

2011-02-18 Thread Jason Liu
This patchset adds FSL mx51 device tree support. This is based on git://git.secretlab.ca/git/linux-2.6 devicetree/test This patch has been tested on MX51 babbage board and can boot up succesfully to linux console with DT enabled. Jason Liu (3): arm/dt: add basic mx51 device tree support arm

[PATCH 3/3] serial/imx: parse from device tree support

2011-02-18 Thread Jason Liu
Signed-off-by: Jason Liu --- drivers/tty/serial/imx.c | 81 -- 1 files changed, 71 insertions(+), 10 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c old mode 100644 new mode 100755 index dfcf4b1..3388599 --- a/drivers

[PATCH 2/3] arm/dt: add very basic dts file for babbage board

2011-02-18 Thread Jason Liu
Signed-off-by: Jason Liu --- arch/arm/boot/dts/babbage.dts | 117 + 1 files changed, 117 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/babbage.dts b/arch/arm/boot/dts/babbage.dts new file mode 100644 index 000..7ee26f1 --- /dev/null

[PATCH 1/3] arm/dt: add basic mx51 device tree support

2011-02-18 Thread Jason Liu
Signed-off-by: Jason Liu --- arch/arm/mach-mx5/Kconfig |6 +++ arch/arm/mach-mx5/Makefile |1 + arch/arm/mach-mx5/board-dt.c| 64 +++ arch/arm/mach-mx5/clock-mx51-mx53.c | 45 +- arch/arm/plat

[PATCH V2 0/3] Add MX51 basic DT support

2011-03-07 Thread Jason Liu
From: Jason Liu This patchset adds FSL mx51 with device tree support. This is based on git://git.secretlab.ca/git/linux-2.6 devicetree/test This patch has been tested on MX51 babbage board and can boot up succesfully to linux console with DT enabled. Jason Liu (3): arm/dt: add basic mx51

[PATCH V2 1/3] arm/dt: add basic mx51 device tree support

2011-03-07 Thread Jason Liu
Signed-off-by: Jason Liu --- arch/arm/mach-mx5/Kconfig |8 arch/arm/mach-mx5/Makefile |1 + arch/arm/mach-mx5/board-dt.c| 64 +++ arch/arm/mach-mx5/clock-mx51-mx53.c | 43 - arch/arm/plat

[PATCH V2 2/3] arm/dt: add very basic dts file for babbage board

2011-03-07 Thread Jason Liu
Signed-off-by: Jason Liu Singed-off-by: Rob Herring --- arch/arm/boot/dts/babbage.dts | 110 + 1 files changed, 110 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/babbage.dts b/arch/arm/boot/dts/babbage.dts new file mode 100644 index

[PATCH V2 3/3] serial/imx: parse from device tree support

2011-03-07 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jeremy Kerr --- drivers/tty/serial/imx.c | 79 -- 1 files changed, 69 insertions(+), 10 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index dfcf4b1..1ebca28 100644 --- a

[PATCH V3 0/5] Add MX51 basic DT support

2011-03-08 Thread Jason Liu
From: Jason Liu This patchset adds Freescale i.mx51 device tree support. This is based on git://git.secretlab.ca/git/linux-2.6 devicetree/test This patch has been tested on MX51 babbage board and can boot up succesfully to linux console with DT enabled. Grant, I think it's almost read

[PATCH V3 1/5] arm/dt: add basic mx51 device tree support

2011-03-08 Thread Jason Liu
Signed-off-by: Jason Liu --- arch/arm/mach-mx5/Kconfig |8 arch/arm/mach-mx5/Makefile |1 + arch/arm/mach-mx5/board-dt.c| 64 +++ arch/arm/mach-mx5/clock-mx51-mx53.c | 43 - arch/arm/plat

[PATCH V3 2/5] arm/dt: add very basic dts file for babbage board

2011-03-08 Thread Jason Liu
Signed-off-by: Jason Liu Singed-off-by: Rob Herring --- arch/arm/boot/dts/babbage.dts | 110 + 1 files changed, 110 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/babbage.dts b/arch/arm/boot/dts/babbage.dts new file mode 100644 index

[PATCH V3 3/5] serial/imx: parse from device tree support

2011-03-08 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jeremy Kerr --- drivers/tty/serial/imx.c | 79 -- 1 files changed, 69 insertions(+), 10 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index dfcf4b1..c9483d1 100644 --- a

[PATCH V3 4/5] net/fec: check id_entry pointer before using it

2011-03-08 Thread Jason Liu
The id_entry will possibly be NULL, So, need check id_entry and make sure it not NULL before using it. Signed-off-by: Jason Liu --- drivers/net/fec.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 2a71373..02cdd71

[PATCH V3 5/5] net/fec: add device tree matching support

2011-03-08 Thread Jason Liu
Signed-off-by: Jason Liu --- drivers/net/fec.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 02cdd71..fcb9768 100644 --- a/drivers/net/fec.c +++ b/drivers/net/fec.c @@ -45,6 +45,9 @@ #include #include

[PATCH V4 0/5] Add MX51 basic DT support

2011-03-09 Thread Jason Liu
From: Jason Liu This patchset adds Freescale i.mx51 device tree support. This is based on git://git.secretlab.ca/git/linux-2.6 devicetree/test This patch has been tested on MX51 babbage board and can boot up succesfully to linux console with DT enabled. Grant, I think it's almost read

[PATCH V4 1/5] arm/dt: add basic mx51 device tree support

2011-03-09 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jason Liu --- arch/arm/mach-mx5/Kconfig |8 arch/arm/mach-mx5/Makefile |1 + arch/arm/mach-mx5/board-dt.c| 65 +++ arch/arm/mach-mx5/clock-mx51-mx53.c | 43

[PATCH V4 2/5] arm/dt: add very basic dts file for babbage board

2011-03-09 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jason Liu Singed-off-by: Rob Herring --- arch/arm/boot/dts/babbage.dts | 122 + 1 files changed, 122 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/babbage.dts b/arch/arm/boot/dts/babbage.dts new

[PATCH V4 3/5] serial/imx: parse from device tree support

2011-03-09 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jason Liu Signed-off-by: Jeremy Kerr --- drivers/tty/serial/imx.c | 79 -- 1 files changed, 69 insertions(+), 10 deletions(-) diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index dfcf4b1

[PATCH V4 4/5] net/fec: check id_entry pointer before using it

2011-03-09 Thread Jason Liu
The id_entry will possibly be NULL, So, need check id_entry and make sure it not NULL before using it. Signed-off-by: Jason Liu Signed-off-by: Jason Liu --- drivers/net/fec.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/fec.c b/drivers/net

[PATCH V4 5/5] net/fec: add device tree matching support

2011-03-09 Thread Jason Liu
Signed-off-by: Jason Liu Signed-off-by: Jason Liu --- drivers/net/fec.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 02cdd71..fcb9768 100644 --- a/drivers/net/fec.c +++ b/drivers/net/fec.c @@ -45,6 +45,9

Re: [PATCH] arm/dt: Add dtb make rule

2011-03-14 Thread Jason Liu
esult on i.MX51 babbage board: gcl/linux-2.6$ make babbage.dtb ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- DTC arch/arm/boot/babbage.dtb DTC: dts->dtb on file "arch/arm/boot/dts/babbage.dts" Tested-by: Jason Liu Jason > > Rob > > ___

[PATCH V5 0/4] Add MX51 basic DT support

2011-03-16 Thread Jason Liu
From: Jason Liu This patchset adds Freescale i.mx51 device tree support. This is based on git://git.secretlab.ca/git/linux-2.6 devicetree/test This patch has been tested on MX51 babbage board and can boot up succesfully to linux console with DT enabled. Grant, I think it's almost read

[PATCH V5 1/4] arm/dt: add basic mx51 device tree support

2011-03-16 Thread Jason Liu
Signed-off-by: Jason Liu --- arch/arm/mach-mx5/Kconfig |8 arch/arm/mach-mx5/Makefile |1 + arch/arm/mach-mx5/board-dt.c| 64 +++ arch/arm/mach-mx5/clock-dt.c| 52 + arch/arm

[PATCH V5 2/4] arm/dt: add very basic dts file for babbage board

2011-03-16 Thread Jason Liu
Singed-off-by: Rob Herring Signed-off-by: Jason Liu --- arch/arm/boot/dts/babbage.dts | 122 + 1 files changed, 122 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/babbage.dts b/arch/arm/boot/dts/babbage.dts new file mode 100644 index

[PATCH V5 3/4] serial/imx: parse from device tree support

2011-03-16 Thread Jason Liu
Signed-off-by: Jeremy Kerr Signed-off-by: Jason Liu --- .../bindings/tty/serial/fsl-imx-uart.txt | 19 + drivers/tty/serial/imx.c | 78 +--- 2 files changed, 87 insertions(+), 10 deletions(-) diff --git a/Documentation/devicetree

[PATCH V5 4/4] net/fec: add device tree matching support

2011-03-16 Thread Jason Liu
Signed-off-by: Jason Liu --- .../devicetree/bindings/net/fsl-imx-fec.txt| 17 + drivers/net/fec.c | 17 + 2 files changed, 34 insertions(+), 0 deletions(-) diff --git a/Documentation/devicetree/bindings/net/fsl-imx

[PATCH] arm/dt: Add basic device tree support for mx51 babbage board

2011-03-29 Thread Jason Liu
--- No uboot patch since uboot patch already in linaro uboot git Signed-off-by: Jason Liu --- arch/arm/boot/dts/mx51-babbage.dts | 30 ++ arch/arm/mach-mx5/Kconfig |6 ++ arch/arm/mach-mx5/board-mx51_babbage.c |6 ++ 3 files changed

[PATCH] arm/dt: Add basic device tree support for mx53 loco board

2011-03-29 Thread Jason Liu
--- grant, uboot patches has been send to u-boot maillist Test OK on mx53 loco board Signed-off-by: Jason Liu --- arch/arm/boot/dts/mx53-loco.dts | 30 ++ arch/arm/mach-mx5/Kconfig |1 + arch/arm/mach-mx5/board-mx53_loco.c |5 + 3 files

[PATCH] arm/dt: Add basic device tree support for genesi mx board

2011-03-30 Thread Jason Liu
This patch add support for Genesi Efika MX Smarttop and Smartbook Signed-off-by: Jason Liu --- Grant, uboot patch has been included in your uboot patchset. And mx51_efika build break, need pull in the patch to fix it http://git.pengutronix.de/?p=imx/linux-2.6.git;a=commitdiff; h