From: Peter Hurley <peter@hurleysoftware.com>
To: Kevin Cernekee <cernekee@gmail.com>
Cc: Rob Herring <robh@kernel.org>,
Grant Likely <grant.likely@linaro.org>,
Greg KH <gregkh@linuxfoundation.org>, Jiri Slaby <jslaby@suse.cz>,
Arnd Bergmann <arnd@arndb.de>,
Florian Fainelli <f.fainelli@gmail.com>,
"linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
Linux MIPS Mailing List <linux-mips@linux-mips.org>
Subject: Re: [PATCH V3 3/7] of: Document {little,big,native}-endian bindings
Date: Mon, 02 Mar 2015 12:45:26 -0500 [thread overview]
Message-ID: <54F4A1B6.8030701@hurleysoftware.com> (raw)
In-Reply-To: <CAJiQ=7CKE5Nw=maewN_ChkySh1NReoUnddLO_ohOJQfwo_FXAg@mail.gmail.com>
On 03/02/2015 11:28 AM, Kevin Cernekee wrote:
> On Mon, Mar 2, 2015 at 8:08 AM, Peter Hurley <peter@hurleysoftware.com> wrote:
>> On 03/02/2015 09:56 AM, Kevin Cernekee wrote:
>>> On Mon, Mar 2, 2015 at 5:14 AM, Peter Hurley <peter@hurleysoftware.com> wrote:
>>>> On 11/24/2014 06:36 PM, Kevin Cernekee wrote:
>>>>> These apply to newly converted drivers, like serial8250/libahci/...
>>>>> The examples were adapted from the regmap bindings document.
>>>>>
>>>>> Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
>>>>> ---
>>>>> .../devicetree/bindings/common-properties.txt | 60 ++++++++++++++++++++++
>>>>> 1 file changed, 60 insertions(+)
>>>>> create mode 100644 Documentation/devicetree/bindings/common-properties.txt
>>>>>
>>>>> diff --git a/Documentation/devicetree/bindings/common-properties.txt b/Documentation/devicetree/bindings/common-properties.txt
>>>>> new file mode 100644
>>>>> index 0000000..21044a4
>>>>> --- /dev/null
>>>>> +++ b/Documentation/devicetree/bindings/common-properties.txt
>>>>> @@ -0,0 +1,60 @@
>>>>> +Common properties
>>>>> +
>>>>> +The ePAPR specification does not define any properties related to hardware
>>>>> +byteswapping, but endianness issues show up frequently in porting Linux to
>>>>> +different machine types. This document attempts to provide a consistent
>>>>> +way of handling byteswapping across drivers.
>>>>> +
>>>>> +Optional properties:
>>>>> + - big-endian: Boolean; force big endian register accesses
>>>>> + unconditionally (e.g. ioread32be/iowrite32be). Use this if you
>>>>> + know the peripheral always needs to be accessed in BE mode.
>>>>> + - little-endian: Boolean; force little endian register accesses
>>>>> + unconditionally (e.g. readl/writel). Use this if you know the
>>>>> + peripheral always needs to be accessed in LE mode. This is the
>>>>> + default.
>>>>
>>>> There is a fundamental problem with specifying the default in DT bindings.
>>>> How can drivers which are currently native-endian support big-endian?
>>>>
>>>> If the driver is converted to support big-endian, every previous
>>>> devicetree will be invalid with the new kernel (because those devicetrees
>>>> don't specify 'native-endian').
>>>>
>>>> IOW, consider if the default were 'native-endian'. How would the 8250
>>>> driver support existing devicetrees?
>>>
>>> Correct. This scheme is intended for drivers like 8250 and libahci
>>> which currently default to little-endian by virtue of using
>>> readl/writel for MMIO accesses. Drivers that default to native-endian
>>> should specify that in their bindings documents, similar to
>>> Documentation/devicetree/bindings/regmap/regmap.txt.
>>
>> Which effectively means if a user can't upgrade their devicetree, they
>> can't upgrade their kernel. I don't think that flies.
>
> This doesn't change the behavior of pre-existing drivers that
> implement the *-endian properties in a different way. There are not
> many of these drivers and they can be documented as special cases.
Yeah, ok, as long as there's no expectation that existing drivers
meet this criteria when they add big-endian support.
>> It's exactly this kind of stuff that prompted Jonathan Corbet's article,
>> "Device trees as ABI" http://lwn.net/Articles/561462
>>
>> Why not leave the default unspecified?
>
> The document aims to provide a consistent way of handling DT
> endianness properties across (compliant) drivers. It is confusing if
> one new driver defaults to little-endian, and another new driver
> defaults to native-endian.
Ok. How many 4.0 driver + DT submissions that are native-endian are
declaring this binding?
> And since most of the commonly used drivers already implement
> little-endian MMIO accesses, that is the default. My personal
> preference would have been native-endian since that seems more common
> on the hardware side, but defaulting to little-endian prevents
> breaking the device tree "ABI" on existing systems.
That was basically my point; there's no way to meet these goals
for existing, native-endian drivers without breakage (just as there
would have been no way if native-endian had been the default).
Regards,
Peter Hurley
next prev parent reply other threads:[~2015-03-02 17:45 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-24 23:36 [PATCH V3 0/7] serial: Configure {big,native}-endian MMIO accesses via DT Kevin Cernekee
2014-11-24 23:36 ` [PATCH V3 1/7] of: Add helper function to check MMIO register endianness Kevin Cernekee
2014-11-24 23:36 ` [PATCH V3 2/7] of/fdt: Add endianness helper function for early init code Kevin Cernekee
2014-11-24 23:36 ` [PATCH V3 3/7] of: Document {little,big,native}-endian bindings Kevin Cernekee
2015-03-02 13:14 ` Peter Hurley
2015-03-02 14:56 ` Kevin Cernekee
2015-03-02 16:08 ` Peter Hurley
2015-03-02 16:28 ` Kevin Cernekee
2015-03-02 17:45 ` Peter Hurley [this message]
2015-03-02 18:57 ` Kevin Cernekee
2015-03-20 23:48 ` Grant Likely
2014-11-24 23:36 ` [PATCH V3 4/7] serial: core: Add big-endian iotype Kevin Cernekee
2014-11-24 23:36 ` [PATCH V3 5/7] serial: earlycon: Set UPIO_MEM32BE based on DT properties Kevin Cernekee
2015-03-01 22:23 ` Peter Hurley
2015-03-28 1:36 ` Grant Likely
2015-03-28 17:01 ` Peter Hurley
2015-03-28 19:28 ` Kevin Cernekee
2015-04-02 15:36 ` Peter Hurley
2015-04-08 17:56 ` Peter Hurley
2015-04-02 16:15 ` Peter Hurley
2015-04-02 13:32 ` Grant Likely
2015-04-02 15:33 ` Peter Hurley
2015-04-02 13:46 ` Rob Herring
2015-04-02 15:35 ` Peter Hurley
2015-04-06 17:36 ` Peter Hurley
2015-04-06 21:07 ` Rob Herring
2014-11-24 23:36 ` [PATCH V3 6/7] serial: of_serial: Support big-endian register accesses Kevin Cernekee
2014-11-24 23:36 ` [PATCH V3 7/7] serial: 8250: Add support for big-endian MMIO accesses Kevin Cernekee
2014-11-24 23:55 ` [PATCH V3 0/7] serial: Configure {big,native}-endian MMIO accesses via DT Florian Fainelli
2014-11-25 10:21 ` Arnd Bergmann
2014-11-25 15:10 ` Grant Likely
2014-11-25 17:38 ` Greg KH
2014-11-25 21:11 ` Greg KH
2014-11-26 13:14 ` Grant Likely
2015-02-21 20:53 ` Kevin Cernekee
2015-02-21 22:18 ` Rob Herring
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=54F4A1B6.8030701@hurleysoftware.com \
--to=peter@hurleysoftware.com \
--cc=arnd@arndb.de \
--cc=cernekee@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=grant.likely@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=jslaby@suse.cz \
--cc=linux-mips@linux-mips.org \
--cc=linux-serial@vger.kernel.org \
--cc=robh@kernel.org \
/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