[U-Boot] [PATCH 1/5] rockchip: i2c: Enable i2c for rk3399

2017-04-09 Thread Eric Gao
To enable mipi display, we need to enable pmic rk808 first for lcd3v3 power,which use i2c0 to communicate with soc. So enable i2c0. Signed-off-by: Eric Gao --- arch/arm/dts/rk3399.dtsi | 16 configs/evb-rk3399_defconfig | 1 + drivers/i2c/rk_i2c.c | 1 + 3 files

[U-Boot] Please pull u-boot-x86

2017-04-09 Thread Bin Meng
Hi Tom, The following changes since commit 04735a8fc45ba7c9f5b17d4837a0c649087b29e1: Merge branch 'master' of git://git.denx.de/u-boot-samsung (2017-04-08 10:20:26 -0400) are available in the git repository at: git://git.denx.de/u-boot-x86.git for you to fetch changes up to ca0d29e4f06095f

Re: [U-Boot] [PATCH] rockchip: rk3399: defconfig: add CONFIG_OF_EMBED support

2017-04-09 Thread Kever Yang
Hi Simon, On 04/10/2017 03:28 AM, Simon Glass wrote: Hi Kever, On 7 April 2017 at 04:35, Kever Yang wrote: Need to enablt CONFIG_OF_EMBED if we use separate uboot and dtb in FIT image for SPL loading. Can you please explain that a bit more? We shouldn't OF_EMBED in production code, only fo

[U-Boot] [PATCH 0/5]

2017-04-09 Thread Eric Gao
This serials patches add mipi dsi support for rk3399. Except the basic mipi driver, we need also enable pmic rk808 for lcd power and enable i2c for rk808 communication. what's more, the needed clk and pwm for backlight is init in spl stage, make sure spl work first. Eric Gao (5): rockchip:

[U-Boot] [PATCH 1/5] rockchip: i2c: Enable i2c for rk3399

2017-04-09 Thread Eric Gao
To enable mipi display, we need to enable pmic rk808 first for lcd3v3 power,which use i2c0 to communicate with soc. So enable i2c0. Signed-off-by: Eric Gao --- arch/arm/dts/rk3399.dtsi | 16 configs/evb-rk3399_defconfig | 1 + drivers/i2c/rk_i2c.c | 1 + 3 files

[U-Boot] [PATCH 2/5] rockchip: pmic: Enable RK808 for rk3399 evb

2017-04-09 Thread Eric Gao
For using mipi display, we need to enable lcd3v3 which supplied by rk808,so enable rk808 first. Signed-off-by: Eric Gao --- arch/arm/dts/rk3399-evb.dts | 39 +++ configs/evb-rk3399_defconfig | 5 + 2 files changed, 44 insertions(+) diff --git a/arch/ar

[U-Boot] [PATCH 3/5] rockchip: video: Add mipi dsi driver for rk3399

2017-04-09 Thread Eric Gao
Add mipi dsi driver for rk chip, To enable this you need to enable DM, DM_VIDEO, DM_ROCKCHIP_VIDEO, DISPLAY_MIPI in menuconfig. And enable rk808,and it's corresponding i2c. Signed-off-by: Eric Gao --- arch/arm/include/asm/arch-rockchip/cru_rk3399.h | 1 + arch/arm/include/asm/arch-rockchip/g

[U-Boot] [PATCH 4/5] rockchip: dts: Add mipi dsi support for rk3399

2017-04-09 Thread Eric Gao
Add dts config for mipi display, include vop, mipi controller, panel, backlight.And Enable rk808 for lcd_3v3 in another patch. Signed-off-by: Eric Gao --- arch/arm/dts/rk3399-evb.dts | 84 + arch/arm/dts/rk3399.dtsi| 72 +++

[U-Boot] [PATCH 5/5] rockchip: configs: Enable mipi dsi for rk3399

2017-04-09 Thread Eric Gao
Enable mipi dsi by default for rk3399-evb board Signed-off-by: Eric Gao --- configs/evb-rk3399_defconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/configs/evb-rk3399_defconfig b/configs/evb-rk3399_defconfig index aac6d2d..f41cbf9 100644 --- a/configs/evb-rk3399_defconfig +++ b/c

[U-Boot] [bug report] Incorrect result from clk_get_by_name

2017-04-09 Thread Ziyuan
hi all, I hit an issue about clk_get_by_name w/ fdt. I wanna get a specified clock cell from dts via clk_get_by_name. eg: clk_get_by_name(, "ciu-sample",..) from 'emmc: dwmmc@ff0f' on rk3288 platform which it has four clock cell: "biu", "ciu", "ciu_drv", "ciu_sample". I found that the clock

Re: [U-Boot] [PATCH 2/3] fsl-ppa: Kconfig: Support to load PPA hdr from eMMC/SD and NAND Flash

2017-04-09 Thread Sumit Garg
> -Original Message- > From: York Sun [mailto:york@nxp.com] > Sent: Friday, April 07, 2017 9:41 PM > To: Sumit Garg ; u-boot@lists.denx.de > Cc: Ruchika Gupta ; Prabhakar Kushwaha > ; Vini Pillai ; Udit > Agarwal > Subject: Re: [PATCH 2/3] fsl-ppa: Kconfig: Support to load PPA hdr from

Re: [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399

2017-04-09 Thread Heiko Schocher
Hello Eric, Am 08.04.2017 um 14:22 schrieb Eric Gao: From: "eric.gao" To enable mipi display, we need to enable pmic rk808 first for lcd3v3 power,which use i2c0 to communicate with soc. So enable i2c0. Signed-off-by: eric.gao Signed-off-by: Eric Gao Why you have 2 "Signed-off-by" lines?

[U-Boot] [PATCH V2] lib: div64: sync with Linux

2017-04-09 Thread Peng Fan
Sync with Linux commit ad0376eb1483b ("Merge tag 'edac_for_4.11_2'"). Signed-off-by: Peng Fan Cc: Tom Rini --- V2: Use `./tools/buildman/buildman -v` to do the build, the following 3 build fails, but not related to this patch. x86: + qemu-x86_64 x86: + qemu-x86_efi_payload64 x86: + ch

Re: [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399

2017-04-09 Thread Eric
Dear all, I am very very sorry. Because I used patman tool to send the patches , which use "send-email" by default. but "send-email" combine “263.com smtp server” will always encounter problem. It‘s show as that when the patch's quantity more than 3, patches can not be send com

[U-Boot] [PATCH v2] tiny-printf: Add support for %p format

2017-04-09 Thread Vignesh R
Add support for %p, %pa[p], %pM, %pm and %pI4 formats to tiny-printf. %pM and %pI4 are widely used by SPL networking stack and is required if networking support is desired in SPL. %p, %pa and %pap are mostly used by debug prints and hence supported only when DEBUG is enabled. Before this patch: $

[U-Boot] [PATCH] zynq-topic-miami.dts: Add usbotg0 alias to make USB actually work

2017-04-09 Thread Mike Looijmans
Fixes the following problem: zynq-uboot> run dfu_ram Setting bus to 1 g_dnl_register: failed!, error: -19 The cause appears to be that the USB framework is looking for a usbotg aliases, so add the alias to point to our USB device. Signed-off-by: Mike Looijmans --- arch/arm/dts/zynq-topic-miami.

Re: [U-Boot] [PATCH v4 0/7] board: sama5d4: convert boards to support DM/DT

2017-04-09 Thread Yang, Wenyou
Hi Simon, On 2017/4/10 3:28, Simon Glass wrote: +Tom Hi, On 7 April 2017 at 01:28, Yang, Wenyou wrote: Hi Andreas, Could you help find a time to take these patch series? They are here for a long time. Tom might be able to take it, or if not I could bring it in via DM I suppose, since it

<    1   2