All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hans de Goede <hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Maxime Ripard
	<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
Cc: linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org,
	"Chris Ball" <cjb-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.org>,
	"David Lanzendörfer"
	<david.lanzendoerfer-Z7Kmv9EsliU@public.gmane.org>,
	linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: Re: [PATCH 2/5] ARM: dts: sun4i: Add support for mmc
Date: Mon, 16 Dec 2013 13:34:42 +0100	[thread overview]
Message-ID: <52AEF362.7080804@redhat.com> (raw)
In-Reply-To: <20131216100253.GC3037@lukather>

Hi,

On 12/16/2013 11:02 AM, Maxime Ripard wrote:
> Hi Hans,
>
> Damn google-groups removed me from Cc :)
>
> On Sun, Dec 15, 2013 at 03:31:29PM +0100, Hans de Goede wrote:
>>>> @@ -376,6 +385,13 @@
>>>>   				allwinner,drive = <0>;
>>>>   				allwinner,pull = <0>;
>>>>   			};
>>>> +
>>>> +			sdc0_pins_a: sdc0@0 {
>>>> +				allwinner,pins = "PF0","PF1","PF2","PF3","PF4","PF5";
>>>> +				allwinner,function = "mmc0";
>>>> +				allwinner,drive = <3>;
>>>> +				allwinner,pull = <1>;
>>>
>>> Wow, you need both the pullups and a 40mA output?
>>
>> Yes and no. The pullups are enabled by uboot and the allwinner
>> sources, most of my testing has been done without them, which
>> seems to work fine. I've enabled them to be consisten with the
>> allwinner sources and u-boot.
>
> Henrik was suggesting that in most boards it's not required to set up
> the internal pullups. Maybe we can just disable them by default, and
> we will always be able to enable them at the board level if needed.

Ok, I'm fine with disabling the pull-ups by default.

>> As for drive = <3>, we need drive = <2> for normal modes,
>> and drive = <3> for ddr mode. I simply picked <3> to keep
>> things KISS. It should not matter much in power usage, as
>> it will only make the flanks of the signal more steep. Once the
>> desired output level is reached the current will drop off. It will
>> use more current when changing the level, but for half the time,
>> so the effective power usage (current * time) is the same.
>
> Ok, let's keep it to 40mA then. It will indeed be simpler :)

Ack.

>
>>> Ideally, I'd like this patch to be splitted into three:
>>>    - One that adds the MMC controller nodes to the DTSI
>>>    - One that adds the muxing options you need to the pinctrl node
>>>    - One that enables the controller on the boards
>>
>> Sounds like a good job for David. Note I've a lot more boards for
>> which I would like to add mmc support or dts files in general
>> (will do so as time permits).
>>
>> For those boards which already have a dts I'll send mmc adding dts
>> patches to David for now so he can add the changes to the patch-set.
>>
>> How do you want to deal with new boards ? Send the addition of the
>> base board to you (and CC David as he will need them in his tree too),
>> and then send a patch to add mmc to the dts to David ?
>
> I don't really like having a variable-sweep patch serie. Just send
> your DT additions to me, saying that you depend on the MMC serie from
> David.

Ok will do if / when I've dts files for new boards.

Regards,

Hans

WARNING: multiple messages have this Message-ID (diff)
From: hdegoede@redhat.com (Hans de Goede)
To: linux-arm-kernel@lists.infradead.org
Subject: [linux-sunxi] Re: [PATCH 2/5] ARM: dts: sun4i: Add support for mmc
Date: Mon, 16 Dec 2013 13:34:42 +0100	[thread overview]
Message-ID: <52AEF362.7080804@redhat.com> (raw)
In-Reply-To: <20131216100253.GC3037@lukather>

Hi,

On 12/16/2013 11:02 AM, Maxime Ripard wrote:
> Hi Hans,
>
> Damn google-groups removed me from Cc :)
>
> On Sun, Dec 15, 2013 at 03:31:29PM +0100, Hans de Goede wrote:
>>>> @@ -376,6 +385,13 @@
>>>>   				allwinner,drive = <0>;
>>>>   				allwinner,pull = <0>;
>>>>   			};
>>>> +
>>>> +			sdc0_pins_a: sdc0 at 0 {
>>>> +				allwinner,pins = "PF0","PF1","PF2","PF3","PF4","PF5";
>>>> +				allwinner,function = "mmc0";
>>>> +				allwinner,drive = <3>;
>>>> +				allwinner,pull = <1>;
>>>
>>> Wow, you need both the pullups and a 40mA output?
>>
>> Yes and no. The pullups are enabled by uboot and the allwinner
>> sources, most of my testing has been done without them, which
>> seems to work fine. I've enabled them to be consisten with the
>> allwinner sources and u-boot.
>
> Henrik was suggesting that in most boards it's not required to set up
> the internal pullups. Maybe we can just disable them by default, and
> we will always be able to enable them at the board level if needed.

Ok, I'm fine with disabling the pull-ups by default.

>> As for drive = <3>, we need drive = <2> for normal modes,
>> and drive = <3> for ddr mode. I simply picked <3> to keep
>> things KISS. It should not matter much in power usage, as
>> it will only make the flanks of the signal more steep. Once the
>> desired output level is reached the current will drop off. It will
>> use more current when changing the level, but for half the time,
>> so the effective power usage (current * time) is the same.
>
> Ok, let's keep it to 40mA then. It will indeed be simpler :)

Ack.

>
>>> Ideally, I'd like this patch to be splitted into three:
>>>    - One that adds the MMC controller nodes to the DTSI
>>>    - One that adds the muxing options you need to the pinctrl node
>>>    - One that enables the controller on the boards
>>
>> Sounds like a good job for David. Note I've a lot more boards for
>> which I would like to add mmc support or dts files in general
>> (will do so as time permits).
>>
>> For those boards which already have a dts I'll send mmc adding dts
>> patches to David for now so he can add the changes to the patch-set.
>>
>> How do you want to deal with new boards ? Send the addition of the
>> base board to you (and CC David as he will need them in his tree too),
>> and then send a patch to add mmc to the dts to David ?
>
> I don't really like having a variable-sweep patch serie. Just send
> your DT additions to me, saying that you depend on the MMC serie from
> David.

Ok will do if / when I've dts files for new boards.

Regards,

Hans

  reply	other threads:[~2013-12-16 12:34 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-14 21:58 [PATCH 0/5] ARM: sunxi: Add driver for SD/MMC hosts found on allwinner sunxi SOCs Hans de Goede
2013-12-14 21:58 ` Hans de Goede
     [not found] ` <1387058295-20641-1-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-14 21:58   ` [PATCH 1/5] ARM: sunxi: Add driver for SD/MMC hosts found on Allwinner sunxi SoCs Hans de Goede
2013-12-14 21:58     ` Hans de Goede
     [not found]     ` <1387058295-20641-2-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 13:44       ` Maxime Ripard
2013-12-15 13:44         ` Maxime Ripard
2013-12-15 14:20         ` Hans de Goede
2013-12-15 14:20           ` Hans de Goede
     [not found]           ` <52ADBAA3.7060507-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 16:21             ` Maxime Ripard
2013-12-15 16:21               ` Maxime Ripard
2013-12-15 18:41               ` Hans de Goede
2013-12-15 18:41                 ` [linux-sunxi] " Hans de Goede
     [not found]                 ` <52ADF7D8.2010900-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 19:35                   ` David Lanzendörfer
2013-12-15 19:35                     ` [linux-sunxi] " David Lanzendörfer
     [not found]                     ` <2378731.6b9MyH8v8A-GPtPHOohwlnjSbz6xCtQhw@public.gmane.org>
2013-12-15 20:18                       ` Hans de Goede
2013-12-15 20:18                         ` [linux-sunxi] " Hans de Goede
     [not found]                         ` <52AE0E87.2040304-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 21:19                           ` David Lanzendörfer
2013-12-15 21:19                             ` [linux-sunxi] " David Lanzendörfer
     [not found]                             ` <1743952.noztKtcF2Y-GPtPHOohwlnjSbz6xCtQhw@public.gmane.org>
2013-12-16 12:21                               ` Hans de Goede
2013-12-16 12:21                                 ` [linux-sunxi] " Hans de Goede
     [not found]                                 ` <52AEF060.6000405-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-23 10:36                                   ` David Lanzendörfer
2013-12-23 10:36                                     ` [linux-sunxi] " David Lanzendörfer
2013-12-15 16:33             ` David Lanzendörfer
2013-12-15 16:33               ` David Lanzendörfer
2013-12-15 22:01         ` Michal Suchanek
2013-12-15 22:01           ` [linux-sunxi] " Michal Suchanek
     [not found]           ` <CAOMqctRspBPmNsyXye_gpfwGoZ=gMcCzEjM+hD3g+ZfQix7G6Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-12-16 10:05             ` Maxime Ripard
2013-12-16 10:05               ` [linux-sunxi] " Maxime Ripard
2013-12-16 11:59               ` Michal Suchanek
2013-12-16 11:59                 ` [linux-sunxi] " Michal Suchanek
     [not found]                 ` <CAOMqctTdasLxJki0xu4aq_sEgujDt3Jdu=BXy9WvQeji282_Rg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-12-16 12:49                   ` Ian Campbell
2013-12-16 12:49                     ` [linux-sunxi] " Ian Campbell
2013-12-16 12:53                   ` Maxime Ripard
2013-12-16 12:53                     ` [linux-sunxi] " Maxime Ripard
2014-02-05 13:33         ` David Lanzendörfer
2014-02-05 13:33           ` David Lanzendörfer
2013-12-17 13:43     ` Mark Brown
2013-12-17 13:43       ` Mark Brown
2013-12-14 21:58   ` [PATCH 2/5] ARM: dts: sun4i: Add support for mmc Hans de Goede
2013-12-14 21:58     ` Hans de Goede
     [not found]     ` <1387058295-20641-3-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 13:58       ` Maxime Ripard
2013-12-15 13:58         ` Maxime Ripard
2013-12-15 14:31         ` Hans de Goede
2013-12-15 14:31           ` [linux-sunxi] " Hans de Goede
2013-12-15 21:44           ` Henrik Nordström
2013-12-15 21:44             ` Henrik Nordström
     [not found]           ` <52ADBD41.4050104-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-16  9:04             ` David Lanzendörfer
2013-12-16  9:04               ` [linux-sunxi] " David Lanzendörfer
     [not found]               ` <11015171.YHkHMOrD9M-pgFh0Jf6HD9Xzn/AsuzBOg@public.gmane.org>
2013-12-16 12:32                 ` Hans de Goede
2013-12-16 12:32                   ` [linux-sunxi] " Hans de Goede
2013-12-16 10:02             ` Maxime Ripard
2013-12-16 10:02               ` [linux-sunxi] " Maxime Ripard
2013-12-16 12:34               ` Hans de Goede [this message]
2013-12-16 12:34                 ` Hans de Goede
2013-12-14 21:58   ` [PATCH 3/5] ARM: dts: sun5i: Add new sun5i-a13-olinuxino-micro board Hans de Goede
2013-12-14 21:58     ` Hans de Goede
     [not found]     ` <1387058295-20641-4-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-12-15 14:04       ` Maxime Ripard
2013-12-15 14:04         ` Maxime Ripard
2013-12-14 21:58   ` [PATCH 4/5] ARM: dts: sun5i: add mmc support Hans de Goede
2013-12-14 21:58     ` Hans de Goede
2013-12-14 21:58   ` [PATCH 5/5] ARM: dts: sun7i: Add support for mmc Hans de Goede
2013-12-14 21:58     ` Hans de Goede

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=52AEF362.7080804@redhat.com \
    --to=hdegoede-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
    --cc=cjb-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.org \
    --cc=david.lanzendoerfer-Z7Kmv9EsliU@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
    --cc=maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.