[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAL_JsqJCFNToWYUxGnWaA=EaRv5rPfWDsF_DDt6a-w=RzBTKHQ@mail.gmail.com>
Date: Fri, 14 May 2021 09:07:28 -0500
From: Rob Herring <robh@...nel.org>
To: Krishna Manikandan <mkrishn@...eaurora.org>
Cc: dri-devel <dri-devel@...ts.freedesktop.org>,
linux-arm-msm <linux-arm-msm@...r.kernel.org>,
freedreno <freedreno@...ts.freedesktop.org>,
devicetree@...r.kernel.org,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Kalyan Thota <kalyan_t@...eaurora.org>,
Tanmay Shah <tanmay@...eaurora.org>,
Abhinav Kumar <abhinavk@...eaurora.org>,
Rob Clark <robdclark@...il.com>,
Stephen Boyd <swboyd@...omium.org>,
Bjorn Andersson <bjorn.andersson@...aro.org>,
Vinod Koul <vinod.koul@...aro.org>,
Doug Anderson <dianders@...omium.org>, khsieh@...eaurora.org,
Sean Paul <sean@...rly.run>
Subject: Re: [PATCH v15 2/4] dt-bindings: msm: dsi: add yaml schemas for DSI bindings
On Wed, May 5, 2021 at 11:11 PM <mkrishn@...eaurora.org> wrote:
>
> On 2021-04-08 20:33, Rob Herring wrote:
> > On Mon, Apr 05, 2021 at 04:36:08PM +0530, Krishna Manikandan wrote:
> >> Add YAML schema for the device tree bindings for DSI
> >> + data-lanes:
> >> + $ref: "/schemas/media/video-interfaces.yaml#"
> >
> > Not how this reference works. Look at other examples.
> >
> >> + description: |
> >> + This describes how the physical DSI data lanes are
> >> mapped
> >> + to the logical lanes on the given platform. The
> >> value contained in
> >> + index n describes what physical lane is mapped to
> >> the logical lane n
> >> + (DATAn, where n lies between 0 and 3). The clock
> >> lane position is fixed
> >> + and can't be changed. Hence, they aren't a part of
> >> the DT bindings.
> >> +
> >> + items:
> >> + - const: 0
> >> + - const: 1
> >> + - const: 2
> >> + - const: 3
> >
> > If this is the only possible value, why does it need to be in DT?
> Hi Rob,
> These are the possible values:
> - <0 1 2 3>
> - <1 2 3 0>
> - <2 3 0 1>
> - <3 0 1 2>
> - <0 3 2 1>
> - <1 0 3 2>
> - <2 1 0 3>
> - <3 2 1 0>
>
> Shall I follow the below mentioned approach for defining these values ?
> oneOf:
> - items:
> - const: 0
> - const: 1
> - const: 2
> - const: 3
> - items:
> - const: 1
> - const: 2
> - const: 3
> - const: 0
> - items:
> - const: 2
> - const: 3
> - const: 0
> - const: 1
> - items:
> - const: 3
> - const: 0
> - const: 1
> - const: 2
> - items:
> - const: 0
> - const: 3
> - const: 2
> - const: 1
> - items:
> - const: 1
> - const: 0
> - const: 3
> - const: 2
> - items:
> - const: 2
> - const: 1
> - const: 0
> - const: 3
> - items:
> - const: 3
> - const: 2
> - const: 1
> - const: 0
That's too verbose.
maxItems: 4
minItems: 4 (or is less supported?)
items:
enum: [ 0, 1, 2, 3 ]
Powered by blists - more mailing lists