From: Conor Dooley <conor@kernel.org>
To: Ulf Hansson <ulf.hansson@linaro.org>
Cc: hehuan1@eswincomputing.com, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, jszhang@kernel.org, adrian.hunter@intel.com,
p.zabel@pengutronix.de, linux-mmc@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
ningyu@eswincomputing.com, linmin@eswincomputing.com,
pinkesh.vaghela@einfochips.com, xuxiang@eswincomputing.com,
luyulin@eswincomputing.com, dongxuyang@eswincomputing.com,
zhangsenchuan@eswincomputing.com,
weishangjuan@eswincomputing.com, lizhi2@eswincomputing.com,
caohang@eswincomputing.com,
Conor Dooley <conor.dooley@microchip.com>
Subject: Re: [PATCH v5 1/2] dt-bindings: mmc: sdhci-of-dwcmshc: Add Eswin EIC7700
Date: Fri, 24 Oct 2025 22:47:34 +0100 [thread overview]
Message-ID: <20251024-polyester-gatherer-e7f5e4300262@spud> (raw)
In-Reply-To: <20251024-aghast-poster-82ee7aa7fdca@spud>
[-- Attachment #1: Type: text/plain, Size: 4813 bytes --]
On Fri, Oct 24, 2025 at 05:37:59PM +0100, Conor Dooley wrote:
> On Fri, Oct 24, 2025 at 03:57:33PM +0200, Ulf Hansson wrote:
> > On Sun, 19 Oct 2025 at 13:52, <hehuan1@eswincomputing.com> wrote:
> > >
> > > From: Huan He <hehuan1@eswincomputing.com>
> > >
> > > EIC7700 use Synopsys dwcmshc IP for SD/eMMC controllers.
> > > Add Eswin EIC7700 support in sdhci-of-dwcmshc.yaml.
> > >
> > > Signed-off-by: Huan He <hehuan1@eswincomputing.com>
> > > Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
> > > ---
> > > .../bindings/mmc/snps,dwcmshc-sdhci.yaml | 57 +++++++++++++++++--
> > > 1 file changed, 51 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> > > index f882219a0a26..7e7c55dc2440 100644
> > > --- a/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> > > +++ b/Documentation/devicetree/bindings/mmc/snps,dwcmshc-sdhci.yaml
> > > @@ -30,6 +30,7 @@ properties:
> > > - sophgo,sg2002-dwcmshc
> > > - sophgo,sg2042-dwcmshc
> > > - thead,th1520-dwcmshc
> > > + - eswin,eic7700-dwcmshc
> > >
> > > reg:
> > > maxItems: 1
> > > @@ -52,17 +53,30 @@ properties:
> > > maxItems: 5
> > >
> > > reset-names:
> > > - items:
> > > - - const: core
> > > - - const: bus
> > > - - const: axi
> > > - - const: block
> > > - - const: timer
> > > + maxItems: 5
> > >
> > > rockchip,txclk-tapnum:
> > > description: Specify the number of delay for tx sampling.
> > > $ref: /schemas/types.yaml#/definitions/uint8
> > >
> > > + eswin,hsp-sp-csr:
> > > + $ref: /schemas/types.yaml#/definitions/phandle-array
> > > + items:
> > > + - items:
> > > + - description: Phandle to HSP(High-Speed Peripheral) device
> > > + - description: Offset of the stability status register for internal
> > > + clock.
> > > + - description: Offset of the stability register for host regulator
> > > + voltage.
> > > + description:
> > > + HSP CSR is to control and get status of different high-speed peripherals
> > > + (such as Ethernet, USB, SATA, etc.) via register, which can tune
> > > + board-level's parameters of PHY, etc.
> >
> > I would like second confirmation from DT maintainers, to make sure
> > it's reasonable to model the HW like this.
>
> If by second confirmation, you mean by someone other than me, obviously
> ignore this, but I think this is "fine". It discussed on a previous
> revision that all is being done with it is setting a handful bits that
> signify that the peripheral has been configured correctly.
>
> That said, I don't have a clue what's going on with the warning about
> the dwmac device. That's definitely one for Rob.
Apparently it's just as simple as there being more than one definition
of the same property. I had it in my head that that was okay when only
one binding was applied to the node, but clearly not.
I'll have to un-review it until that error is sorted out.
> > In principle the phandle above gets translated into a regmap via a
> > call to syscon_node_to_regmap() in the driver, to allow some registers
> > to be written that are outside the controllers address space.
> >
> > > +
> > > + eswin,drive-impedance-ohms:
> > > + description: Specifies the drive impedance in Ohm.
> > > + enum: [33, 40, 50, 66, 100]
> > > +
> > > required:
> > > - compatible
> > > - reg
> > > @@ -110,6 +124,37 @@ allOf:
> > > - const: block
> > > - const: timer
> > >
> > > + - if:
> > > + properties:
> > > + compatible:
> > > + contains:
> > > + const: eswin,eic7700-dwcmshc
> > > + then:
> > > + properties:
> > > + resets:
> > > + minItems: 4
> > > + maxItems: 4
> > > + reset-names:
> > > + items:
> > > + - const: axi
> > > + - const: phy
> > > + - const: prstn
> > > + - const: txrx
> > > + required:
> > > + - eswin,hsp-sp-csr
> > > + - eswin,drive-impedance-ohms
> > > + else:
> > > + properties:
> > > + resets:
> > > + maxItems: 5
> > > + reset-names:
> > > + items:
> > > + - const: core
> > > + - const: bus
> > > + - const: axi
> > > + - const: block
> > > + - const: timer
> > > +
> > > - if:
> > > properties:
> > > compatible:
> > > --
> > > 2.25.1
> > >
> >
> > Kind regards
> > Uffe
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-10-24 21:47 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-19 11:51 [PATCH v5 0/2] Add support for Eswin EIC7700 SD/eMMC controller hehuan1
2025-10-19 11:52 ` [PATCH v5 1/2] dt-bindings: mmc: sdhci-of-dwcmshc: Add Eswin EIC7700 hehuan1
2025-10-20 11:35 ` Rob Herring (Arm)
2025-10-24 13:57 ` Ulf Hansson
2025-10-24 16:37 ` Conor Dooley
2025-10-24 21:47 ` Conor Dooley [this message]
2025-10-24 22:22 ` Rob Herring
2025-10-19 11:53 ` [PATCH v5 2/2] mmc: sdhci-of-dwcmshc: Add support for " hehuan1
2025-10-23 11:08 ` Adrian Hunter
2025-10-24 3:19 ` 何欢
2025-10-24 6:36 ` Adrian Hunter
2025-11-07 9:03 ` [PATCH v5 0/2] Add support for Eswin EIC7700 SD/eMMC controller Huan He
2025-11-11 17:35 ` Ulf Hansson
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=20251024-polyester-gatherer-e7f5e4300262@spud \
--to=conor@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=caohang@eswincomputing.com \
--cc=conor+dt@kernel.org \
--cc=conor.dooley@microchip.com \
--cc=devicetree@vger.kernel.org \
--cc=dongxuyang@eswincomputing.com \
--cc=hehuan1@eswincomputing.com \
--cc=jszhang@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linmin@eswincomputing.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=lizhi2@eswincomputing.com \
--cc=luyulin@eswincomputing.com \
--cc=ningyu@eswincomputing.com \
--cc=p.zabel@pengutronix.de \
--cc=pinkesh.vaghela@einfochips.com \
--cc=robh@kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=weishangjuan@eswincomputing.com \
--cc=xuxiang@eswincomputing.com \
--cc=zhangsenchuan@eswincomputing.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