From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 6/13] mmc: sunxi: Add EMMC (MMC2) controller compatible
Date: Mon, 30 Jan 2017 12:05:46 +0100 [thread overview]
Message-ID: <20170130110546.6q5xb3p2uvncrrmf@lukather> (raw)
In-Reply-To: <CAPDyKFr3cnFux4NRzZ9UAn93MOVb6RaQQ+PHDxGztciDHZSX9A@mail.gmail.com>
On Mon, Jan 30, 2017 at 11:06:05AM +0100, Ulf Hansson wrote:
> On 27 January 2017 at 22:38, Maxime Ripard
> <maxime.ripard@free-electrons.com> wrote:
> > The MMC2 controller on the A64 is kind of a special beast.
> >
> > While the general controller design is the same than the other MMC
> > controllers in the SoC, it also has a bunch of features and changes that
> > prevent it to be driven in the same way.
> >
> > It has for example a different bus width limit, a different maximum
> > frequency, and, for some reason, the maximum buffer size of a DMA
> > descriptor.
> >
> > Add a new compatible specifically for this controller.
> >
> > Acked-by: Rob Herring <robh@kernel.org>
> > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> > Tested-by: Florian Vaussard <florian.vaussard@heig-vd.ch>
> > ---
> > drivers/mmc/host/sunxi-mmc.c | 8 ++++++++
> > 1 file changed, 8 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
> > index 6bbe61397b7c..f0f6922bca8a 100644
> > --- a/drivers/mmc/host/sunxi-mmc.c
> > +++ b/drivers/mmc/host/sunxi-mmc.c
> > @@ -5,6 +5,7 @@
> > * (C) Copyright 2013-2014 O2S GmbH <www.o2s.ch>
> > * (C) Copyright 2013-2014 David Lanzend?rfer <david.lanzendoerfer@o2s.ch>
> > * (C) Copyright 2013-2014 Hans de Goede <hdegoede@redhat.com>
> > + * (C) Copyright 2017 Sootech SA
> > *
> > * This program is free software; you can redistribute it and/or
> > * modify it under the terms of the GNU General Public License as
> > @@ -1096,12 +1097,19 @@ static const struct sunxi_mmc_cfg sun50i_a64_cfg = {
> > .needs_new_timings = true,
> > };
> >
> > +static const struct sunxi_mmc_cfg sun50i_a64_emmc_cfg = {
> > + .idma_des_size_bits = 13,
> > + .clk_delays = NULL,
> > + .can_calibrate = true,
> > +};
> > +
> > static const struct of_device_id sunxi_mmc_of_match[] = {
> > { .compatible = "allwinner,sun4i-a10-mmc", .data = &sun4i_a10_cfg },
> > { .compatible = "allwinner,sun5i-a13-mmc", .data = &sun5i_a13_cfg },
> > { .compatible = "allwinner,sun7i-a20-mmc", .data = &sun7i_a20_cfg },
> > { .compatible = "allwinner,sun9i-a80-mmc", .data = &sun9i_a80_cfg },
> > { .compatible = "allwinner,sun50i-a64-mmc", .data = &sun50i_a64_cfg },
> > + { .compatible = "allwinner,sun50i-a64-emmc", .data = &sun50i_a64_emmc_cfg },
>
> This should be documented in the DTS docs for sunxi as well. I expect
> you to send a patch on top to take care of that.
You're right, I'll send a patch today.
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20170130/14494a7f/attachment-0001.sig>
next prev parent reply other threads:[~2017-01-30 11:05 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-27 21:38 [PATCH v5 0/13] arm64: allwinner: a64: Enable MMC support Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 1/13] mmc: sunxi: Fix clock frequency change sequence Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 2/13] mmc: sunxi: Gate the clock when rate is 0 Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 3/13] mmc: sunxi: Always set signal delay to 0 for A64 Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 4/13] mmc: sunxi: Enable the new timings for the A64 MMC controllers Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 5/13] mmc: sunxi: Mask DATA0 when updating the clock Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 6/13] mmc: sunxi: Add EMMC (MMC2) controller compatible Maxime Ripard
2017-01-30 10:06 ` Ulf Hansson
2017-01-30 11:05 ` Maxime Ripard [this message]
2017-01-27 21:38 ` [PATCH v5 7/13] mmc: sunxi: Add more debug informations Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 8/13] arm64: allwinner: a64: Add MMC nodes Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 9/13] arm64: allwinner: a64: Add MMC pinctrl nodes Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 10/13] arm64: allwinner: a64: Increase the MMC max frequency Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 11/13] arm64: allwinner: pine64: add MMC support Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 12/13] arm64: allwinner: a64: add UART1 pin nodes Maxime Ripard
2017-01-27 21:38 ` [PATCH v5 13/13] arm64: allwinner: add BananaPi-M64 support Maxime Ripard
2017-01-28 12:44 ` [PATCH v5 0/13] arm64: allwinner: a64: Enable MMC support Chen-Yu Tsai
2017-01-30 10:42 ` Maxime Ripard
2017-01-30 10:05 ` Ulf Hansson
2017-01-30 11:06 ` Maxime Ripard
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=20170130110546.6q5xb3p2uvncrrmf@lukather \
--to=maxime.ripard@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.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