All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:22 Eric Gao
  2017-04-08 12:22 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
  0 siblings, 1 reply; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:22 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399
  2017-04-08 12:22 [U-Boot] [PATCH 0/5] Eric Gao
@ 2017-04-08 12:22 ` Eric Gao
  2017-04-10  3:55   ` Heiko Schocher
  0 siblings, 1 reply; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:22 UTC (permalink / raw)
  To: u-boot

From: "eric.gao" <eric.gao@rock-chips.com>

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 <eric.gao@rock-chips.com>

Signed-off-by: Eric Gao <eric.gao@rock-chips.com>
---

 arch/arm/dts/rk3399.dtsi     | 16 ++++++++++++++++
 configs/evb-rk3399_defconfig |  1 +
 drivers/i2c/rk_i2c.c         |  1 +
 3 files changed, 18 insertions(+)

diff --git a/arch/arm/dts/rk3399.dtsi b/arch/arm/dts/rk3399.dtsi
index 456fdb6..93e3bf4 100644
--- a/arch/arm/dts/rk3399.dtsi
+++ b/arch/arm/dts/rk3399.dtsi
@@ -26,6 +26,7 @@
 		serial4 = &uart4;
 		mmc0 = &sdhci;
 		mmc1 = &sdmmc;
+		i2c0 = &i2c0;
 	};
 
 	cpus {
@@ -651,6 +652,21 @@
 		status = "disabled";
 	};
 
+	i2c0: i2c at ff3c0000 {
+		compatible = "rockchip,rk3399-i2c";
+		reg = <0x0 0xff3c0000 0x0 0x1000>;
+		assigned-clocks = <&pmucru SCLK_I2C0_PMU>;
+		assigned-clock-rates = <200000000>;
+		clocks = <&pmucru SCLK_I2C0_PMU>, <&pmucru PCLK_I2C0_PMU>;
+		clock-names = "i2c", "pclk";
+		interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH 0>;
+		pinctrl-names = "default";
+		pinctrl-0 = <&i2c0_xfer>;
+		#address-cells = <1>;
+		#size-cells = <0>;
+		status = "disabled";
+	};
+
 	pinctrl: pinctrl {
 		u-boot,dm-pre-reloc;
 		compatible = "rockchip,rk3399-pinctrl";
diff --git a/configs/evb-rk3399_defconfig b/configs/evb-rk3399_defconfig
index bedc1fd..2e2f9a8 100644
--- a/configs/evb-rk3399_defconfig
+++ b/configs/evb-rk3399_defconfig
@@ -58,3 +58,4 @@ CONFIG_USB_EHCI_GENERIC=y
 CONFIG_USB_STORAGE=y
 CONFIG_USE_TINY_PRINTF=y
 CONFIG_ERRNO_STR=y
+CONFIG_SYS_I2C_ROCKCHIP=y
diff --git a/drivers/i2c/rk_i2c.c b/drivers/i2c/rk_i2c.c
index 7c701cb..a4c8c2ba 100644
--- a/drivers/i2c/rk_i2c.c
+++ b/drivers/i2c/rk_i2c.c
@@ -381,6 +381,7 @@ static const struct dm_i2c_ops rockchip_i2c_ops = {
 
 static const struct udevice_id rockchip_i2c_ids[] = {
 	{ .compatible = "rockchip,rk3288-i2c" },
+	{ .compatible = "rockchip,rk3399-i2c" },
 	{ }
 };
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399
  2017-04-08 12:22 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
@ 2017-04-10  3:55   ` Heiko Schocher
  2017-04-10  6:19     ` Eric
  0 siblings, 1 reply; 16+ messages in thread
From: Heiko Schocher @ 2017-04-10  3:55 UTC (permalink / raw)
  To: u-boot

Hello Eric,

Am 08.04.2017 um 14:22 schrieb Eric Gao:
> From: "eric.gao" <eric.gao@rock-chips.com>
>
> 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 <eric.gao@rock-chips.com>
>
> Signed-off-by: Eric Gao <eric.gao@rock-chips.com>

Why you have 2 "Signed-off-by" lines?

> ---
>
>   arch/arm/dts/rk3399.dtsi     | 16 ++++++++++++++++
>   configs/evb-rk3399_defconfig |  1 +
>   drivers/i2c/rk_i2c.c         |  1 +
>   3 files changed, 18 insertions(+)

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399
  2017-04-10  3:55   ` Heiko Schocher
@ 2017-04-10  6:19     ` Eric
  0 siblings, 0 replies; 16+ messages in thread
From: Eric @ 2017-04-10  6:19 UTC (permalink / raw)
  To: u-boot

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 completely(log 
said: session count exceed limit).

I have ever tried many times and get the same result.  Finally, I 
changed to  use msmtp,  it can works

well. So,  forget all these incomplete junk email  and refer to the 
latest one please.  Sorry to bother all your guys.

Many Thanks.

On 2017年04月10日 11:55, Heiko Schocher wrote:
> Hello Eric,
>
> Am 08.04.2017 um 14:22 schrieb Eric Gao:
>> From: "eric.gao" <eric.gao@rock-chips.com>
>>
>> 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 <eric.gao@rock-chips.com>
>>
>> Signed-off-by: Eric Gao <eric.gao@rock-chips.com>
>
> Why you have 2 "Signed-off-by" lines?
>
>> ---
>>
>>   arch/arm/dts/rk3399.dtsi     | 16 ++++++++++++++++
>>   configs/evb-rk3399_defconfig |  1 +
>>   drivers/i2c/rk_i2c.c         |  1 +
>>   3 files changed, 18 insertions(+)
>
> Reviewed-by: Heiko Schocher <hs@denx.de>
>
> bye,
> Heiko

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2018-09-29 23:45 Vagrant Cascadian
  0 siblings, 0 replies; 16+ messages in thread
From: Vagrant Cascadian @ 2018-09-29 23:45 UTC (permalink / raw)
  To: u-boot

This series adds support for the Pinebook, an allwinner A64 laptop
produced by Pine64. It also adds support for mmc delay calibration,
and the anx6345 video bridge, used on the Pinebook.


Vasily Khoruzhick (5):
  mmc: sunxi: add support for automatic delay calibration
  dm: video: bridge: don't fail to activate bridge if sleep gpio is
    missing
  video: anx6345: don't fail if there's no sleep or reset GPIOs
  sun50i: a64: add support for R_I2C controller
  sunxi: add support for Pinebook

 arch/arm/dts/Makefile                      |  3 +-
 arch/arm/dts/sun50i-a64-pinebook.dts       | 99 ++++++++++++++++++++++++++++++
 arch/arm/dts/sun50i-a64.dtsi               | 17 +++++
 arch/arm/include/asm/arch-sunxi/gpio.h     |  1 +
 arch/arm/include/asm/arch-sunxi/mmc.h      |  6 +-
 arch/arm/mach-sunxi/Kconfig                |  2 +
 board/sunxi/board.c                        |  6 ++
 configs/pinebook_defconfig                 | 32 ++++++++++
 drivers/mmc/Kconfig                        |  4 ++
 drivers/mmc/sunxi_mmc.c                    | 20 +++++-
 drivers/video/bridge/anx6345.c             |  2 +-
 drivers/video/bridge/video-bridge-uclass.c |  4 +-
 12 files changed, 190 insertions(+), 6 deletions(-)
 create mode 100644 arch/arm/dts/sun50i-a64-pinebook.dts
 create mode 100644 configs/pinebook_defconfig

-- 
2.11.0

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-10  2:41 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-10  2:41 UTC (permalink / raw)
  To: u-boot

    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: i2c: Enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb
  rockchip: video: Add mipi dsi driver for rk3399
  rockchip: dts: Add mipi dsi support for rk3399
  rockchip: configs: Enable mipi dsi for rk3399

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-10  2:17 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-10  2:17 UTC (permalink / raw)
  To: u-boot

    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: i2c: Enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb
  rockchip: video: Add mipi dsi driver for rk3399
  rockchip: dts: Add mipi dsi support for rk3399
  rockchip: configs: Enable mipi dsi for rk3399

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:50 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:50 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:42 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:42 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:33 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:33 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:30 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:30 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:26 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:26 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:18 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:18 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2017-04-08 12:17 Eric Gao
  0 siblings, 0 replies; 16+ messages in thread
From: Eric Gao @ 2017-04-08 12:17 UTC (permalink / raw)
  To: u-boot

    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 (3):
  rockchip: video: Add mipi dsi driver
  rockchip: Add dts config for mipi dsi
  rockchip: Enable mipi dsi configs

eric.gao (2):
  rockchip: i2c: Enable i2c for rk3399
  rockchip: pmic: Enable RK808 for rk3399 evb

 arch/arm/dts/rk3399-evb.dts                      | 123 ++++++
 arch/arm/dts/rk3399.dtsi                         |  88 +++++
 arch/arm/include/asm/arch-rockchip/cru_rk3399.h  |   1 +
 arch/arm/include/asm/arch-rockchip/grf_rk3399.h  |  25 ++
 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h | 189 +++++++++
 arch/arm/include/asm/arch-rockchip/vop_rk3288.h  |   1 +
 configs/evb-rk3399_defconfig                     |  12 +
 drivers/i2c/rk_i2c.c                             |   1 +
 drivers/video/Kconfig                            |   2 +
 drivers/video/rockchip/Kconfig                   |  47 +++
 drivers/video/rockchip/Makefile                  |   6 +-
 drivers/video/rockchip/rk_mipi.c                 | 465 +++++++++++++++++++++++
 drivers/video/rockchip/rk_vop.c                  |  39 +-
 13 files changed, 992 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-rockchip/mipi_rk3399.h
 create mode 100644 drivers/video/rockchip/Kconfig
 create mode 100644 drivers/video/rockchip/rk_mipi.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
  2016-07-14  5:08 Kever Yang
@ 2016-07-15  3:20 ` Simon Glass
  0 siblings, 0 replies; 16+ messages in thread
From: Simon Glass @ 2016-07-15  3:20 UTC (permalink / raw)
  To: u-boot

Hi Kever,

On 13 July 2016 at 23:08, Kever Yang <kever.yang@rock-chips.com> wrote:
> This patchset add support for rk3399 with ATF based on
> Rockchip miniloader as secondary bootloader instead of
> u-boot SPL.

U-Boot

>
> Rockchip miniloader init the DRAM and load the ATF and
> u-boot to runing address, and then jump to ATF, ATM
> do some init and switch to EL2/EL1 mode before jump to
> next loader which is u-boot here.
>
> Pls reference board/rockchip/evb_rk3399/README to setup
> the board.
>
> Will migrate to SPL once its ready for ATF.
>
> This patch set is based on below patch:
> "board: move all the rockchip board in one folder"
>
> This patch set has been test on rk3399 evb board.
>
>
>
> Kever Yang (5):
>   dts: add support for rkchichip rk3399 soc
>   ARM64: rockchip: add support for rk3399 SoC based evb-board
>   config: add config file for evb-rk3399
>   mmc: rockchip: add SDHCI driver support for rockchip soc
>   ARM64: evb-rk3399: add a README for this board setup

I don't see this last patch on the mailing list.

>
>  arch/arm/Kconfig                       |    3 -
>  arch/arm/dts/Makefile                  |    3 +-
>  arch/arm/dts/rk3399-evb.dts            |  104 ++++
>  arch/arm/dts/rk3399.dtsi               | 1028 ++++++++++++++++++++++++++++++++
>  arch/arm/mach-rockchip/Kconfig         |   25 +-
>  arch/arm/mach-rockchip/Makefile        |    2 +-
>  arch/arm/mach-rockchip/rk3399/Kconfig  |   19 +
>  arch/arm/mach-rockchip/rk3399/Makefile |    5 +
>  board/rockchip/evb_rk3399/Kconfig      |   15 +
>  board/rockchip/evb_rk3399/MAINTAINERS  |    0
>  board/rockchip/evb_rk3399/Makefile     |    7 +
>  board/rockchip/evb_rk3399/README       |   73 +++
>  board/rockchip/evb_rk3399/evb-rk3399.c |   41 ++
>  configs/evb-rk3399_defconfig           |   32 +
>  drivers/mmc/Kconfig                    |    6 +
>  drivers/mmc/Makefile                   |    1 +
>  drivers/mmc/rockchip_sdhci.c           |   58 ++
>  include/configs/evb_rk3399.h           |   24 +
>  include/configs/rk3399_common.h        |   84 +++
>  include/dt-bindings/clock/rk3399-cru.h |  746 +++++++++++++++++++++++
>  20 files changed, 2270 insertions(+), 6 deletions(-)
>  create mode 100644 arch/arm/dts/rk3399-evb.dts
>  create mode 100644 arch/arm/dts/rk3399.dtsi
>  create mode 100644 arch/arm/mach-rockchip/rk3399/Kconfig
>  create mode 100644 arch/arm/mach-rockchip/rk3399/Makefile
>  create mode 100644 board/rockchip/evb_rk3399/Kconfig
>  create mode 100644 board/rockchip/evb_rk3399/MAINTAINERS
>  create mode 100644 board/rockchip/evb_rk3399/Makefile
>  create mode 100644 board/rockchip/evb_rk3399/README
>  create mode 100644 board/rockchip/evb_rk3399/evb-rk3399.c
>  create mode 100644 configs/evb-rk3399_defconfig
>  create mode 100644 drivers/mmc/rockchip_sdhci.c
>  create mode 100644 include/configs/evb_rk3399.h
>  create mode 100644 include/configs/rk3399_common.h
>  create mode 100644 include/dt-bindings/clock/rk3399-cru.h
>
> --
> 1.9.1
>
>

Regards,
Simon

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 0/5]
@ 2016-07-14  5:08 Kever Yang
  2016-07-15  3:20 ` Simon Glass
  0 siblings, 1 reply; 16+ messages in thread
From: Kever Yang @ 2016-07-14  5:08 UTC (permalink / raw)
  To: u-boot

This patchset add support for rk3399 with ATF based on
Rockchip miniloader as secondary bootloader instead of
u-boot SPL.

Rockchip miniloader init the DRAM and load the ATF and
u-boot to runing address, and then jump to ATF, ATM
do some init and switch to EL2/EL1 mode before jump to
next loader which is u-boot here.

Pls reference board/rockchip/evb_rk3399/README to setup
the board.

Will migrate to SPL once its ready for ATF.

This patch set is based on below patch:
"board: move all the rockchip board in one folder"

This patch set has been test on rk3399 evb board.



Kever Yang (5):
  dts: add support for rkchichip rk3399 soc
  ARM64: rockchip: add support for rk3399 SoC based evb-board
  config: add config file for evb-rk3399
  mmc: rockchip: add SDHCI driver support for rockchip soc
  ARM64: evb-rk3399: add a README for this board setup

 arch/arm/Kconfig                       |    3 -
 arch/arm/dts/Makefile                  |    3 +-
 arch/arm/dts/rk3399-evb.dts            |  104 ++++
 arch/arm/dts/rk3399.dtsi               | 1028 ++++++++++++++++++++++++++++++++
 arch/arm/mach-rockchip/Kconfig         |   25 +-
 arch/arm/mach-rockchip/Makefile        |    2 +-
 arch/arm/mach-rockchip/rk3399/Kconfig  |   19 +
 arch/arm/mach-rockchip/rk3399/Makefile |    5 +
 board/rockchip/evb_rk3399/Kconfig      |   15 +
 board/rockchip/evb_rk3399/MAINTAINERS  |    0
 board/rockchip/evb_rk3399/Makefile     |    7 +
 board/rockchip/evb_rk3399/README       |   73 +++
 board/rockchip/evb_rk3399/evb-rk3399.c |   41 ++
 configs/evb-rk3399_defconfig           |   32 +
 drivers/mmc/Kconfig                    |    6 +
 drivers/mmc/Makefile                   |    1 +
 drivers/mmc/rockchip_sdhci.c           |   58 ++
 include/configs/evb_rk3399.h           |   24 +
 include/configs/rk3399_common.h        |   84 +++
 include/dt-bindings/clock/rk3399-cru.h |  746 +++++++++++++++++++++++
 20 files changed, 2270 insertions(+), 6 deletions(-)
 create mode 100644 arch/arm/dts/rk3399-evb.dts
 create mode 100644 arch/arm/dts/rk3399.dtsi
 create mode 100644 arch/arm/mach-rockchip/rk3399/Kconfig
 create mode 100644 arch/arm/mach-rockchip/rk3399/Makefile
 create mode 100644 board/rockchip/evb_rk3399/Kconfig
 create mode 100644 board/rockchip/evb_rk3399/MAINTAINERS
 create mode 100644 board/rockchip/evb_rk3399/Makefile
 create mode 100644 board/rockchip/evb_rk3399/README
 create mode 100644 board/rockchip/evb_rk3399/evb-rk3399.c
 create mode 100644 configs/evb-rk3399_defconfig
 create mode 100644 drivers/mmc/rockchip_sdhci.c
 create mode 100644 include/configs/evb_rk3399.h
 create mode 100644 include/configs/rk3399_common.h
 create mode 100644 include/dt-bindings/clock/rk3399-cru.h

-- 
1.9.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2018-09-29 23:45 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-08 12:22 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:22 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-10  3:55   ` Heiko Schocher
2017-04-10  6:19     ` Eric
  -- strict thread matches above, loose matches on Subject: below --
2018-09-29 23:45 [U-Boot] [PATCH 0/5] Vagrant Cascadian
2017-04-10  2:41 Eric Gao
2017-04-10  2:17 Eric Gao
2017-04-08 12:50 Eric Gao
2017-04-08 12:42 Eric Gao
2017-04-08 12:33 Eric Gao
2017-04-08 12:30 Eric Gao
2017-04-08 12:26 Eric Gao
2017-04-08 12:18 Eric Gao
2017-04-08 12:17 Eric Gao
2016-07-14  5:08 Kever Yang
2016-07-15  3:20 ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.