From: Hans de Goede <hdegoede@redhat.com>
To: David Daney <ddaney.cavm@gmail.com>
Cc: Aleksey Makarov <aleksey.makarov@auriga.com>,
linux-ide@vger.kernel.org, linux-mips@linux-mips.org,
linux-kernel@vger.kernel.org,
David Daney <david.daney@cavium.com>,
Vinita Gupta <vgupta@caviumnetworks.com>,
Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>, Tejun Heo <tj@kernel.org>,
devicetree@vger.kernel.org
Subject: Re: [PATCH v3] SATA: OCTEON: support SATA on OCTEON platform
Date: Sat, 07 Mar 2015 13:06:48 +0100 [thread overview]
Message-ID: <54FAE9D8.9050206@redhat.com> (raw)
In-Reply-To: <54F9D4E2.20107@gmail.com>
Hi,
On 06-03-15 17:25, David Daney wrote:
> On 03/06/2015 02:06 AM, Hans de Goede wrote:
>> Hi,
>>
>> On 05-03-15 15:58, Aleksey Makarov wrote:
>>> The OCTEON SATA controller is currently found on cn71XX devices.
>>>
>>> Signed-off-by: David Daney <david.daney@cavium.com>
>>> Signed-off-by: Vinita Gupta <vgupta@caviumnetworks.com>
>>> Signed-off-by: Aleksey Makarov <aleksey.makarov@auriga.com>
>>> ---
> [...]
>>> diff --git
>>> a/Documentation/devicetree/bindings/mips/cavium/sata-uctl.txt
>>> b/Documentation/devicetree/bindings/mips/cavium/sata-uctl.txt
>>> new file mode 100644
>>> index 0000000..59e86a7
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/mips/cavium/sata-uctl.txt
>>> @@ -0,0 +1,28 @@
>>> +* UCTL SATA controller glue
>>> +
>>> +Properties:
>>> +- compatible: "cavium,octeon-7130-sata-uctl"
>>> +
>>> + Compatibility with the cn7130 SOC.
>>> +
>>> +- reg: The base address of the UCTL register bank.
>>> +
>>> +- #address-cells, #size-cells, and ranges must be present and hold
>>> + suitable values to map all child nodes.
>>> +
>>> +Example:
>>> +
>>> + uctl@118006c000000 {
>>> + compatible = "cavium,octeon-7130-sata-uctl";
>>> + reg = <0x11800 0x6c000000 0x0 0x100>;
>>> + ranges; /* Direct mapping */
>>> + #address-cells = <2>;
>>> + #size-cells = <2>;
>>> +
>>> + sata: sata@16c0000000000 {
>>> + compatible = "cavium,octeon-7130-ahci";
>>> + reg = <0x16c00 0x00000000 0x0 0x200>;
>>> + interrupt-parent = <&cibsata>;
>>> + interrupts = <2 4>; /* Bit: 2, level */
>>> + };
>>> + };
>>
>> Sorry for jumping into this discussion a bit late, but this nonsense
>> nesting of what clearly are 2 related but different hw blocks,
>> both living at completely different register addresses is unacceptable,
>> this is not a proper operating system dependent hw description as
>> devicetree is supposed to be. This is an ugly hack to ensure a
>> certain init ordering, and requiring manual instantiation of
>> the platform device for the nested dt-node.
>>
>> NACK.
>
> Can you point to the portion of the device tree specification that states that if a node has both "reg" *and* "ranges" properties, the parent-bus-address ranges must be a proper subset of the "reg" property ranges of the parent? Because that seems like what you are saying here. I would really like to read the documentation myself so that we can get a better understanding of the requirements.
This is not a written rule, it is just logic to not represent something
nested in devicetree while the real world address space it sits in is
flat. As said devicetree is about (accurately) describing hardware,
and having nesting in the devicetree where there is no nesting in the
real hardware is just wrong.
> For what it's worth, there are existing bindings that take the same form, and they don't seem to break anything. See for example Documentation/devicetree/bindings/mips/cavium/uctl.txt
I'm not claiming that this will not work, just that it is wrong from
a conceptual pov IMHO.
> In any event, it is somewhat moot at this point. The device tree being effectively being a frozen ABI, cannot really be changed. We are merely documenting what is supplied by the preexisting system boot ROMs, not starting from scratch and discussing what the proper device tree binding for the device should be.
Ah I see, I did not know that this was already a shipped ABI.
Given that the devicetree ABI is fixed, and that that was my only
reason for NACK-ing this patch, I hereby withdraw my NACK.
Other then the dt bindings issue, the code looks good, so this
patch is:
Acked-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
next prev parent reply other threads:[~2015-03-07 12:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-05 14:58 [PATCH v3] SATA: OCTEON: support SATA on OCTEON platform Aleksey Makarov
2015-03-06 10:06 ` Hans de Goede
[not found] ` <54F97C27.508-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-03-06 16:25 ` David Daney
2015-03-07 12:06 ` Hans de Goede [this message]
2015-03-08 22:48 ` Arnd Bergmann
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=54FAE9D8.9050206@redhat.com \
--to=hdegoede@redhat.com \
--cc=aleksey.makarov@auriga.com \
--cc=david.daney@cavium.com \
--cc=ddaney.cavm@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=robh+dt@kernel.org \
--cc=tj@kernel.org \
--cc=vgupta@caviumnetworks.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).