* [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid*
@ 2013-08-22 8:31 Kishon Vijay Abraham I
2013-08-22 20:50 ` [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid* Stephen Warren
0 siblings, 1 reply; 5+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-22 8:31 UTC (permalink / raw)
To: bcousson, swarren, tony, myungjoo.ham, cw00.choi
Cc: mark.rutland, devicetree, george.cherian, linux, ian.campbell,
pawel.moll, linux-doc, gregkh, linux-kernel, rob.herring, kishon,
balbi, rob, linux-omap, linux-arm-kernel
The Palmas device contains only a USB VBUS-ID detector, so added a
compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
types for backward compatibility.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
Changes from v3:
* Fixed commit log message (VID to VBUS-ID).
* Fixed the Documentation to tell "ti,twl6035-usb" and "ti,palmas-usb" is
deprecated
Changes from [1]:
* Since the old compatible values will be in 3.11 kernel, we shouldn't remove
the old compatible values. So retain the old compatible values.
[1] -> http://www.spinics.net/lists/linux-omap/msg95843.html
Documentation/devicetree/bindings/extcon/extcon-palmas.txt | 3 ++-
drivers/extcon/extcon-palmas.c | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
index 7dab6a8..dc5fab3 100644
--- a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
+++ b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
@@ -2,7 +2,8 @@ EXTCON FOR PALMAS/TWL CHIPS
PALMAS USB COMPARATOR
Required Properties:
- - compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
+ - compatible : Should be "ti,palmas-usb-vid". "ti,twl6035-usb" and
+ "ti,palmas-usb" is deprecated and is kept for backward compatibility.
Optional Properties:
- ti,wakeup : To enable the wakeup comparator in probe
diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c
index 89fdd05..9672f31 100644
--- a/drivers/extcon/extcon-palmas.c
+++ b/drivers/extcon/extcon-palmas.c
@@ -268,6 +268,7 @@ static const struct dev_pm_ops palmas_pm_ops = {
static struct of_device_id of_palmas_match_tbl[] = {
{ .compatible = "ti,palmas-usb", },
+ { .compatible = "ti,palmas-usb-vid", },
{ .compatible = "ti,twl6035-usb", },
{ /* end */ }
};
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid*
2013-08-22 8:31 [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid* Kishon Vijay Abraham I
@ 2013-08-22 20:50 ` Stephen Warren
2013-08-23 11:28 ` Kishon Vijay Abraham I
0 siblings, 1 reply; 5+ messages in thread
From: Stephen Warren @ 2013-08-22 20:50 UTC (permalink / raw)
To: Kishon Vijay Abraham I
Cc: bcousson, tony, myungjoo.ham, cw00.choi, rob.herring, pawel.moll,
mark.rutland, ian.campbell, rob, george.cherian, gregkh,
linux-doc, linux-omap, devicetree, linux-arm-kernel, linux,
linux-kernel, balbi
On 08/22/2013 02:31 AM, Kishon Vijay Abraham I wrote:
> The Palmas device contains only a USB VBUS-ID detector, so added a
> compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
> types for backward compatibility.
> diff --git a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
> PALMAS USB COMPARATOR
> Required Properties:
> - - compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
> + - compatible : Should be "ti,palmas-usb-vid". "ti,twl6035-usb" and
> + "ti,palmas-usb" is deprecated and is kept for backward compatibility.
So this defines one new value and deprecates the two old values.
Why isn't a new "ti,twl6035-usb-vid" entry useful? Don't you still need
SoC-specific compatible values so the driver can enable any SoC-specific
bug-fixes/workarounds later if needed?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid*
2013-08-22 20:50 ` [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid* Stephen Warren
@ 2013-08-23 11:28 ` Kishon Vijay Abraham I
2013-08-23 19:17 ` Stephen Warren
0 siblings, 1 reply; 5+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-23 11:28 UTC (permalink / raw)
To: Stephen Warren
Cc: bcousson, tony, myungjoo.ham, cw00.choi, rob.herring, pawel.moll,
mark.rutland, ian.campbell, rob, george.cherian, gregkh,
linux-doc, linux-omap, devicetree, linux-arm-kernel, linux,
linux-kernel, balbi
Hi,
On Friday 23 August 2013 02:20 AM, Stephen Warren wrote:
> On 08/22/2013 02:31 AM, Kishon Vijay Abraham I wrote:
>> The Palmas device contains only a USB VBUS-ID detector, so added a
>> compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
>> types for backward compatibility.
>
>> diff --git a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
>
>> PALMAS USB COMPARATOR
>> Required Properties:
>> - - compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
>> + - compatible : Should be "ti,palmas-usb-vid". "ti,twl6035-usb" and
>> + "ti,palmas-usb" is deprecated and is kept for backward compatibility.
>
> So this defines one new value and deprecates the two old values.
yeah.
>
> Why isn't a new "ti,twl6035-usb-vid" entry useful? Don't you still need
yeah, it should be added too.
> SoC-specific compatible values so the driver can enable any SoC-specific
> bug-fixes/workarounds later if needed?
hmm.. Palmas is external to SoC. So not sure if adding SoC specific compatible
values is such a good idea.
Thanks
Kishon
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid*
2013-08-23 11:28 ` Kishon Vijay Abraham I
@ 2013-08-23 19:17 ` Stephen Warren
2013-08-26 12:03 ` [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid* Kishon Vijay Abraham I
0 siblings, 1 reply; 5+ messages in thread
From: Stephen Warren @ 2013-08-23 19:17 UTC (permalink / raw)
To: Kishon Vijay Abraham I
Cc: bcousson, tony, myungjoo.ham, cw00.choi, rob.herring, pawel.moll,
mark.rutland, ian.campbell, rob, george.cherian, gregkh,
linux-doc, linux-omap, devicetree, linux-arm-kernel, linux,
linux-kernel, balbi
On 08/23/2013 05:28 AM, Kishon Vijay Abraham I wrote:
> Hi,
>
> On Friday 23 August 2013 02:20 AM, Stephen Warren wrote:
>> On 08/22/2013 02:31 AM, Kishon Vijay Abraham I wrote:
>>> The Palmas device contains only a USB VBUS-ID detector, so added a
>>> compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
>>> types for backward compatibility.
>>
>>> diff --git a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
>>
>>> PALMAS USB COMPARATOR
>>> Required Properties:
>>> - - compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
>>> + - compatible : Should be "ti,palmas-usb-vid". "ti,twl6035-usb" and
>>> + "ti,palmas-usb" is deprecated and is kept for backward compatibility.
>>
>> So this defines one new value and deprecates the two old values.
>
> yeah.
>>
>> Why isn't a new "ti,twl6035-usb-vid" entry useful? Don't you still need
>
> yeah, it should be added too.
>> SoC-specific compatible values so the driver can enable any SoC-specific
>> bug-fixes/workarounds later if needed?
>
> hmm.. Palmas is external to SoC. So not sure if adding SoC specific compatible
> values is such a good idea.
In this case, but SoC, I meant the Palmas chip rather than the
application processor. Is twl6035 a name for Palmas or something else?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid*
2013-08-23 19:17 ` Stephen Warren
@ 2013-08-26 12:03 ` Kishon Vijay Abraham I
0 siblings, 0 replies; 5+ messages in thread
From: Kishon Vijay Abraham I @ 2013-08-26 12:03 UTC (permalink / raw)
To: Stephen Warren
Cc: mark.rutland, devicetree, george.cherian, linux, ian.campbell,
pawel.moll, linux-doc, tony, gregkh, linux-kernel, rob.herring,
cw00.choi, myungjoo.ham, balbi, rob, bcousson, linux-omap,
linux-arm-kernel
On Saturday 24 August 2013 12:47 AM, Stephen Warren wrote:
> On 08/23/2013 05:28 AM, Kishon Vijay Abraham I wrote:
>> Hi,
>>
>> On Friday 23 August 2013 02:20 AM, Stephen Warren wrote:
>>> On 08/22/2013 02:31 AM, Kishon Vijay Abraham I wrote:
>>>> The Palmas device contains only a USB VBUS-ID detector, so added a
>>>> compatible type *ti,palmas-usb-vid*. Didn't remove the existing compatible
>>>> types for backward compatibility.
>>>
>>>> diff --git a/Documentation/devicetree/bindings/extcon/extcon-palmas.txt b/Documentation/devicetree/bindings/extcon/extcon-palmas.txt
>>>
>>>> PALMAS USB COMPARATOR
>>>> Required Properties:
>>>> - - compatible : Should be "ti,palmas-usb" or "ti,twl6035-usb"
>>>> + - compatible : Should be "ti,palmas-usb-vid". "ti,twl6035-usb" and
>>>> + "ti,palmas-usb" is deprecated and is kept for backward compatibility.
>>>
>>> So this defines one new value and deprecates the two old values.
>>
>> yeah.
>>>
>>> Why isn't a new "ti,twl6035-usb-vid" entry useful? Don't you still need
>>
>> yeah, it should be added too.
>>> SoC-specific compatible values so the driver can enable any SoC-specific
>>> bug-fixes/workarounds later if needed?
>>
>> hmm.. Palmas is external to SoC. So not sure if adding SoC specific compatible
>> values is such a good idea.
>
> In this case, but SoC, I meant the Palmas chip rather than the
> application processor. Is twl6035 a name for Palmas or something else?
yeah, tw6035 is a name for palmas.
Thanks
Kishon
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-08-26 12:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-22 8:31 [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid* Kishon Vijay Abraham I
2013-08-22 20:50 ` [PATCH v4] extcon: palmas: Added a new compatible type *ti,palmas-usb-vid* Stephen Warren
2013-08-23 11:28 ` Kishon Vijay Abraham I
2013-08-23 19:17 ` Stephen Warren
2013-08-26 12:03 ` [PATCH v4] extcon: palmas: Added a new compatible type *ti, palmas-usb-vid* Kishon Vijay Abraham I
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).