From: Chanwoo Choi <cw00.choi@samsung.com>
To: Krzysztof Kozlowski <k.kozlowski@samsung.com>,
MyungJoo Ham <myungjoo.ham@samsung.com>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Kukjin Kim <kgene@kernel.org>,
Marek Szyprowski <m.szyprowski@samsung.com>,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org
Cc: rogerq@ti.com, Peter Chen <peter.chen@freescale.com>,
"Ivan T. Ivanov" <iivanov@mm-sol.com>,
balbi@ti.com, kishon@ti.com,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: Re: [RFC v4 0/7] extcon: usb-gpio: fixes and improvements
Date: Thu, 09 Jun 2016 17:35:12 +0900 [thread overview]
Message-ID: <57592A40.9080608@samsung.com> (raw)
In-Reply-To: <1465393686-16644-1-git-send-email-k.kozlowski@samsung.com>
Hi,
It is good to support USB_ID and USB_VBUS by extcon.
But,
there is some issue about adding the new cable type for
both EXTCON_USB_ID and EXTCON_USB_VBUS
I think that the ID and VBUS state are not cable type
Instead, ID and VBUS state are the property of USB cable.
So, I'd like to add the following function to support
the property of each cable as following:
The client driver can get the state of property by using
the extcon_get_cable_property_state().
- int extcon_get_cable_property_state(struct extcon_dev *edev,
unsigned int id,
enum extcon_property property);
- int extcon_set_cable_property_state(struct extcon_dev *edev,
unsigned int id,
enum extcon_property property,
unsigned int state);
For example,
In extcon-usb-gpio.c, set state of property as follwoing:
extcon_set_cable_property_state(edev, EXTCON_USB, EXTCON_USB_PROP_ID, 1);
extcon_set_cable_property_state(edev, EXTCON_USB, EXTCON_USB_PROP_VBUS, 1);
In the extcon client driver, get state of property as following:
id_state = extcon_get_cable_property_state(edev, EXTCON_USB, EXTCON_USB_PROP_ID);
vbus_state = extcon_get_cable_property_state(edev, EXTCON_USB, EXTCON_USB_PROP_VUBS);
Regards,
Chanwoo Choi
On 2016년 06월 08일 22:47, Krzysztof Kozlowski wrote:
> Hi,
>
>
> Some time ago, Robert tried to add VBUS detection to extcon-usb-gpio
> driver [1]. There was a discussion about patch #2 ("extcon: usb-gpio:
> add support for VBUS detection").
>
> The final conclusion was that Chanwoo will add VBUS/ID notifiers [2].
> That unfortunately never happened so this patchset is a follow up.
>
> 1. Add VBUS/ID cable state notifiers to extcon, so USB controllers
> could use it.
> 2. Add VBUS detection to extcon-usb-gpio driver.
>
> Some parts are based on old Robert's work, some are new, some are
> reworked.
>
>
> Best regards,
> Krzysztof
>
>
> [1] http://thread.gmane.org/gmane.linux.kernel/1923192/focus=1923193
> [2] http://thread.gmane.org/gmane.linux.kernel/1923192/focus=1941152
>
>
> Krzysztof Kozlowski (5):
> Revert "extcon: usb-gpio: switch to use pm wakeirq apis"
> extcon: Add raw VBUS and ID cable states
> extcon: usb-gpio: Add support for VBUS detection
> ARM: exynos_defconfig: Enable EXTCON_USB_GPIO for Odroid XU3 USB OTG
> ARM: dts: exynos: Add extcon-usb-gpio node for Odroid XU3
>
> Robert Baldyga (2):
> Documentation: extcon: usb-gpio: update usb-gpio binding description
> extcon: usb-gpio: make debounce value configurable in devicetree
>
> .../devicetree/bindings/extcon/extcon-usb-gpio.txt | 28 ++++-
> arch/arm/boot/dts/exynos5422-odroidxu3-lite.dts | 21 ++++
> arch/arm/boot/dts/exynos5422-odroidxu3.dts | 21 ++++
> arch/arm/configs/exynos_defconfig | 1 +
> drivers/extcon/extcon-usb-gpio.c | 138 +++++++++++++++++----
> drivers/extcon/extcon.c | 3 +
> include/linux/extcon.h | 8 +-
> 7 files changed, 190 insertions(+), 30 deletions(-)
>
next prev parent reply other threads:[~2016-06-09 8:35 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20160608134820epcas1p4ee75a89888f2ae2adb733124a330bd2c@epcas1p4.samsung.com>
2016-06-08 13:47 ` [RFC v4 0/7] extcon: usb-gpio: fixes and improvements Krzysztof Kozlowski
2016-06-08 13:48 ` [RFC v4 1/7] Documentation: extcon: usb-gpio: update usb-gpio binding description Krzysztof Kozlowski
2016-06-10 14:00 ` Rob Herring
2016-06-08 13:48 ` [RFC v4 2/7] Revert "extcon: usb-gpio: switch to use pm wakeirq apis" Krzysztof Kozlowski
2016-06-09 8:00 ` Roger Quadros
2016-06-09 8:10 ` Krzysztof Kozlowski
2016-06-09 8:20 ` Roger Quadros
2016-06-08 13:48 ` [RFC v4 3/7] extcon: Add raw VBUS and ID cable states Krzysztof Kozlowski
2016-06-08 13:48 ` [RFC v4 4/7] extcon: usb-gpio: Add support for VBUS detection Krzysztof Kozlowski
2016-06-09 8:38 ` Roger Quadros
2016-06-09 8:41 ` Roger Quadros
2016-06-09 8:43 ` Krzysztof Kozlowski
2016-06-09 12:13 ` Roger Quadros
2016-06-08 13:48 ` [RFC v4 5/7] extcon: usb-gpio: make debounce value configurable in devicetree Krzysztof Kozlowski
2016-06-08 13:48 ` [RFC v4 6/7] ARM: exynos_defconfig: Enable EXTCON_USB_GPIO for Odroid XU3 USB OTG Krzysztof Kozlowski
2016-06-08 13:48 ` [RFC v4 7/7] ARM: dts: exynos: Add extcon-usb-gpio node for Odroid XU3 Krzysztof Kozlowski
2016-06-09 8:35 ` Chanwoo Choi [this message]
2016-06-09 8:39 ` [RFC v4 0/7] extcon: usb-gpio: fixes and improvements Krzysztof Kozlowski
2016-06-09 9:32 ` Chanwoo Choi
2016-08-01 12:23 ` Roger Quadros
2016-08-01 12:57 ` Chanwoo Choi
2016-06-26 16:39 ` Tobias Jakobi
2016-06-27 5:22 ` Krzysztof Kozlowski
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=57592A40.9080608@samsung.com \
--to=cw00.choi@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=balbi@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=iivanov@mm-sol.com \
--cc=k.kozlowski@samsung.com \
--cc=kgene@kernel.org \
--cc=kishon@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=mark.rutland@arm.com \
--cc=myungjoo.ham@samsung.com \
--cc=peter.chen@freescale.com \
--cc=robh+dt@kernel.org \
--cc=rogerq@ti.com \
/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).