devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Satish Patel <satish.patel@ti.com>
To: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org,
	devicetree@vger.kernel.org, gregkh@linuxfoundation.org,
	rob@landley.net
Cc: Satish Patel <satish.patel@ti.com>
Subject: [PATCH v2 5/5] ARM: dts: AM43xx-epos-evm: DT entries  for ti-usim and phy
Date: Mon, 20 Jan 2014 10:03:54 +0530	[thread overview]
Message-ID: <1390192434-19386-6-git-send-email-satish.patel@ti.com> (raw)
In-Reply-To: <1390192434-19386-1-git-send-email-satish.patel@ti.com>

- Board specific DT entries for TI's USIM - smart card controller of AM43xx
platfrom.These entries are used by USIM driver for various configurations.

- Shutdown line of NXP phy is maped to GPIO5. So enabling same to have support
for NXP phy.

- i2c2 pinmux configuration -  NxP tda8026 phy is connected to i2c2 lines

Signed-off-by: Satish Patel <satish.patel@ti.com>
---
 arch/arm/boot/dts/am43x-epos-evm.dts |   43 ++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/am43x-epos-evm.dts b/arch/arm/boot/dts/am43x-epos-evm.dts
index fbf9c4c..38ef2b8 100644
--- a/arch/arm/boot/dts/am43x-epos-evm.dts
+++ b/arch/arm/boot/dts/am43x-epos-evm.dts
@@ -79,6 +79,24 @@
 				0x18c (PIN_INPUT_PULLUP | SLEWCTRL_FAST | MUX_MODE0)	/* i2c0_scl.i2c0_scl */
 			>;
 		};
+
+		i2c2_pins: pinmux_i2c2_pins {
+		   pinctrl-single,pins = <
+			   0x1c0 (PIN_INPUT_PULLUP | SLEWCTRL_FAST | MUX_MODE8)    /* i2c2_sda.i2c2_sda */
+			   0x1c4 (PIN_INPUT_PULLUP | SLEWCTRL_FAST | MUX_MODE8)    /* i2c2_scl.i2c2_scl */
+			   >;
+		};
+
+		usim0_default: usim0_default {
+		       pinctrl-single,pins = <
+			       /* USIM 0 */
+			       0x1B4 (SLEWCTRL_FAST | PULL_DISABLE | MUX_MODE8)		/* CLK0  */
+			       0x1B0 (SLEWCTRL_FAST | PULL_DISABLE | MUX_MODE8)		/* CLK1  */
+			       0x1B8 (SLEWCTRL_FAST | INPUT_EN | PULL_DISABLE | MUX_MODE8)	/* DATA0 */
+			       0x1BC (SLEWCTRL_FAST | INPUT_EN | PULL_DISABLE | MUX_MODE8)	/* DATA1 */
+			       0x1C8 (SLEWCTRL_FAST | INPUT_EN | PULL_UP | MUX_MODE8)		/* IRQn  */
+			       >;
+		};
 	};
 
 	matrix_keypad: matrix_keypad@0 {
@@ -169,6 +187,27 @@
 	};
 };
 
+&usim0 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&usim0_default>;
+	phy = <&tda8026>;
+	phy-slots = <1>;
+	status = "okay";
+};
+
+&i2c2 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&i2c2_pins>;
+	status = "okay";
+
+	tda8026: tda8026@48 {
+		compatible = "nxp,tda8026";
+		reg = <0x48>;
+		shutdown-gpio = <&gpio5 19 GPIO_ACTIVE_HIGH>;   /* Bank5, pin19 */
+		interrupts = <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>;
+	};
+};
+
 &gpio0 {
 	status = "okay";
 };
@@ -184,3 +223,7 @@
 &gpio3 {
 	status = "okay";
 };
+
+&gpio5 {
+	status = "okay";
+};
-- 
1.7.1


  parent reply	other threads:[~2014-01-20  4:33 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-20  4:33 [PATCH v2 0/5] Smart Card(SC) interface, TI USIM & NxP SC phy driver Satish Patel
2014-01-20  4:33 ` [PATCH v2 1/5] sc_phy:SmartCard(SC) PHY interface to SC controller Satish Patel
2014-01-20  4:33 ` [PATCH v2 2/5] misc: tda8026: Add NXP TDA8026 PHY driver Satish Patel
2014-01-20  4:33 ` [PATCH v2 3/5] char: ti-usim: Add driver for USIM module on AM43xx Satish Patel
     [not found]   ` <1390192434-19386-4-git-send-email-satish.patel-l0cyMroinI0@public.gmane.org>
2014-02-04 13:19     ` Roger Quadros
2014-02-06  3:46       ` Satish Patel
2014-01-20  4:33 ` [PATCH v2 4/5] ARM: dts: AM43xx: DT entries added for ti-usim Satish Patel
2014-01-20  4:33 ` Satish Patel [this message]
     [not found] ` <1390192434-19386-1-git-send-email-satish.patel-l0cyMroinI0@public.gmane.org>
2014-01-30  5:52   ` [PATCH v2 0/5] Smart Card(SC) interface, TI USIM & NxP SC phy driver Satish Patel
     [not found]     ` <52E9E8B0.2020000-l0cyMroinI0@public.gmane.org>
2014-01-30 13:05       ` Greg KH
2014-05-16  3:44         ` Satish Patel
2014-05-28  0:41           ` Greg KH
2014-05-28  9:00             ` Satish Patel

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=1390192434-19386-6-git-send-email-satish.patel@ti.com \
    --to=satish.patel@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=rob@landley.net \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).