linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: thomas.petazzoni@free-electrons.com (Thomas Petazzoni)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/10] ARM: mvebu: Hardware coherency support for Armada 375 and 38x
Date: Mon, 24 Mar 2014 16:06:20 +0100	[thread overview]
Message-ID: <20140324160620.607c77cd@skate> (raw)
In-Reply-To: <1394124395-20030-1-git-send-email-thomas.petazzoni@free-electrons.com>

Jason, Gregory, Andrew, Sebastian,

Any news about this patch set? It is not aimed at 3.15 as was discussed
already with Jason, but since I'd still like to have some early
comments about this patch series for 3.16, since we would also like to
land the Armada 375/38x SMP support in 3.16, which will sit on top of
this series.

So far, Jason made one comment about runtime detecting the need for the
Armada 375 coherency workaround, to which I already replied. No other
comments have been made, unless I missed them, of course.

Thanks a lot!

Thomas

On Thu,  6 Mar 2014 17:46:25 +0100, Thomas Petazzoni wrote:
> Jason, Gregory, Andrew, Sebastian,
> 
> This set of patches add hardware coherency support for the new Armada
> 375 and Armada 38x SoCs. The patch set can be divided in three
> sections:
> 
>  * Patches 1, 2, 3 and 4 prepare the introduction of the support for
>    new SoC in the existing coherency code.
> 
>    The main change is that the mvebu-mbus driver no longer pokes into
>    the Device Tree to find whether hardware I/O coherency is available
>    or not: this information is passed as argument to the mvebu-mbus
>    initialization function. This avoids changing the mvebu-mbus driver
>    to add the compatible strings of all possible coherency fabrics,
>    and also avoids encoding specific conditions in the mvebu-mbus
>    driver: on Armada 375 and 38x, the hardware I/O coherency can only
>    be enabled in SMP mode.
> 
>    These preparation patches had already been sent in the past
>    (http://permalink.gmane.org/gmane.linux.ports.arm.kernel/290780). This
>    round has taken into account the comments I had received on this
>    early version.
> 
>  * Patches 5, 6, 7 and 8 add the coherency support itself. Patch 4
>    enables the SCU, patch 5 adds I/O coherency support for 375, patch
>    6 adds a major workaround to make coherency support actually work
>    on early 375 SOCs and patch 7 adds I/O coherency support for 38x.
> 
>  * Patches 9 and 10 add the necessary Device Tree informations to
>    enable the coherency.
> 
> Best regards,
> 
> Thomas
> 
> Thomas Petazzoni (10):
>   ARM: mvebu: prepare coherency code to support more SOCs
>   ARM: mvebu: add a coherency_available() call
>   bus: mvebu: pass the coherency availability information at init time
>   ARM: mvebu: ARM: mvebu: use of_find_matching_node_and_match() in
>     coherency.c
>   ARM: mvebu: enable the ARM SCU on Armada 375 and Armada 38x
>   ARM: mvebu: add Armada 375 support to the coherency code
>   ARM: mvebu: implement Armada 375 coherency workaround
>   ARM: mvebu: add Armada 38x support to the coherency code
>   ARM: mvebu: enable the coherency fabric on Armada 375
>   ARM: mvebu: enable the coherency fabric on Armada 38x
> 
>  .../devicetree/bindings/arm/coherency-fabric.txt   |  32 ++-
>  arch/arm/boot/dts/armada-375.dtsi                  |  10 +
>  arch/arm/boot/dts/armada-38x.dtsi                  |  10 +
>  arch/arm/mach-kirkwood/board-dt.c                  |   2 +-
>  arch/arm/mach-mvebu/Kconfig                        |   2 +
>  arch/arm/mach-mvebu/board-v7.c                     |  21 +-
>  arch/arm/mach-mvebu/coherency.c                    | 251 +++++++++++++++++++--
>  arch/arm/mach-mvebu/coherency.h                    |   1 +
>  drivers/bus/mvebu-mbus.c                           |  11 +-
>  include/linux/mbus.h                               |   2 +-
>  10 files changed, 305 insertions(+), 37 deletions(-)
> 



-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

  parent reply	other threads:[~2014-03-24 15:06 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-06 16:46 [PATCH 00/10] ARM: mvebu: Hardware coherency support for Armada 375 and 38x Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 01/10] ARM: mvebu: prepare coherency code to support more SOCs Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 02/10] ARM: mvebu: add a coherency_available() call Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 03/10] bus: mvebu: pass the coherency availability information at init time Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 04/10] ARM: mvebu: ARM: mvebu: use of_find_matching_node_and_match() in coherency.c Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 05/10] ARM: mvebu: enable the ARM SCU on Armada 375 and Armada 38x Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 06/10] ARM: mvebu: add Armada 375 support to the coherency code Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 07/10] ARM: mvebu: implement Armada 375 coherency workaround Thomas Petazzoni
2014-03-06 18:36   ` Jason Cooper
2014-03-06 21:18     ` Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 08/10] ARM: mvebu: add Armada 38x support to the coherency code Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 09/10] ARM: mvebu: enable the coherency fabric on Armada 375 Thomas Petazzoni
2014-03-06 16:46 ` [PATCH 10/10] ARM: mvebu: enable the coherency fabric on Armada 38x Thomas Petazzoni
2014-03-24 15:06 ` Thomas Petazzoni [this message]
2014-03-25  9:32   ` [PATCH 00/10] ARM: mvebu: Hardware coherency support for Armada 375 and 38x Andrew Lunn
2014-03-25 10:36     ` Thomas Petazzoni

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=20140324160620.607c77cd@skate \
    --to=thomas.petazzoni@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;
as well as URLs for NNTP newsgroup(s).