All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Gao <eric.gao@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/5] rockchip: i2c: Enable i2c for rk3399
Date: Mon, 10 Apr 2017 10:41:45 +0800	[thread overview]
Message-ID: <1491792109-14948-2-git-send-email-eric.gao@rock-chips.com> (raw)
In-Reply-To: <1491792109-14948-1-git-send-email-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>

---

 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

  reply	other threads:[~2017-04-10  2:41 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-10  2:41 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-10  2:41 ` Eric Gao [this message]
2017-04-10  2:41 ` [U-Boot] [PATCH 2/5] rockchip: pmic: Enable RK808 for rk3399 evb Eric Gao
2017-04-11 13:55   ` Simon Glass
2017-04-14 10:15     ` Simon Glass
2017-04-10  2:41 ` [U-Boot] [PATCH 3/5] rockchip: video: Add mipi dsi driver for rk3399 Eric Gao
2017-04-11 13:55   ` Simon Glass
2017-04-10  2:41 ` [U-Boot] [PATCH 4/5] rockchip: dts: Add mipi dsi support " Eric Gao
2017-04-11 13:55   ` Simon Glass
2017-04-10  2:41 ` [U-Boot] [PATCH 5/5] rockchip: configs: Enable mipi dsi " Eric Gao
  -- strict thread matches above, loose matches on Subject: below --
2017-04-10  2:17 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-10  2:17 ` [U-Boot] [PATCH 1/5] rockchip: i2c: Enable i2c for rk3399 Eric Gao
2017-04-11 13:55   ` Simon Glass
2017-04-14 10:15     ` Simon Glass
2017-04-08 12:50 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:50 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-08 12:42 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:42 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-08 12:33 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:33 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-08 12:30 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:30 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-08 12:26 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:26 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
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
2017-04-08 12:18 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:18 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-08 12:17 [U-Boot] [PATCH 0/5] Eric Gao
2017-04-08 12:17 ` [U-Boot] [PATCH 1/5] rockchip: i2c: enable i2c for rk3399 Eric Gao
2017-04-09 19:28   ` Simon Glass

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1491792109-14948-2-git-send-email-eric.gao@rock-chips.com \
    --to=eric.gao@rock-chips.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.