Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1246501 > unrolled thread

[PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support

Started byAntoine Tenart <antoine.tenart@free-electrons.com>
First post2015-10-14 12:40 +0200
Last post2015-10-14 15:30 +0200
Articles 6 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support Antoine Tenart <antoine.tenart@free-electrons.com> - 2015-10-14 12:40 +0200
    [PATCH 1/4] ARM: multi_v7_defconfig: enable Berlin SATA PHY Antoine Tenart <antoine.tenart@free-electrons.com> - 2015-10-14 12:40 +0200
    [PATCH 4/4] ARM: multi_v7_defconfig: enable the Berlin ADC Antoine Tenart <antoine.tenart@free-electrons.com> - 2015-10-14 12:40 +0200
    Re: [PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support Arnd Bergmann <arnd@arndb.de> - 2015-10-14 14:40 +0200
      Re: [PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support Antoine Tenart <antoine.tenart@free-electrons.com> - 2015-10-14 15:20 +0200
        Re: [PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support Arnd Bergmann <arnd@arndb.de> - 2015-10-14 15:30 +0200

#1246501 — [PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support

FromAntoine Tenart <antoine.tenart@free-electrons.com>
Date2015-10-14 12:40 +0200
Subject[PATCH 0/4] ARM: berlin: improve multi_v7_defconfig support
Message-ID<qjrDs-4cL-3@gated-at.bofh.it>
Hi all,

Some drivers used on a Marvell Berlin kernel were missing from
multi_v7_defconfig. This series add them.

Antoine

Antoine Tenart (4):
  ARM: multi_v7_defconfig: enable Berlin SATA PHY
  ARM: multi_v7_defconfig: enable Berlin USB PHY
  ARM: multi_v7_defconfig: enable pxa168 Ethernet
  ARM: multi_v7_defconfig: enable the Berlin ADC

 arch/arm/configs/multi_v7_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1246502 — [PATCH 1/4] ARM: multi_v7_defconfig: enable Berlin SATA PHY

FromAntoine Tenart <antoine.tenart@free-electrons.com>
Date2015-10-14 12:40 +0200
Subject[PATCH 1/4] ARM: multi_v7_defconfig: enable Berlin SATA PHY
Message-ID<qjrDt-4cL-33@gated-at.bofh.it>
In reply to#1246501
This PHY is required to have the SATA controller working on Berlin
and is missing from multi_v7_defconfig. Enable it.

Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 03deb7fb35e8..94d75e81ca19 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -651,6 +651,7 @@ CONFIG_PHY_HIX5HD2_SATA=y
 CONFIG_PWM_STI=m
 CONFIG_OMAP_USB2=y
 CONFIG_TI_PIPE3=y
+CONFIG_PHY_BERLIN_SATA=y
 CONFIG_PHY_MIPHY28LP=y
 CONFIG_PHY_MIPHY365X=y
 CONFIG_PHY_RCAR_GEN2=m
-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1246503 — [PATCH 4/4] ARM: multi_v7_defconfig: enable the Berlin ADC

FromAntoine Tenart <antoine.tenart@free-electrons.com>
Date2015-10-14 12:40 +0200
Subject[PATCH 4/4] ARM: multi_v7_defconfig: enable the Berlin ADC
Message-ID<qjrDt-4cL-37@gated-at.bofh.it>
In reply to#1246501
Enable the Marvell Berlin ADC support in multi_v7_defconfig.

Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index e45f80df403c..2d5c77286a2a 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -637,6 +637,7 @@ CONFIG_EXTCON=y
 CONFIG_TI_AEMIF=y
 CONFIG_IIO=y
 CONFIG_AT91_ADC=m
+CONFIG_BERLIN2_ADC=y
 CONFIG_EXYNOS_ADC=m
 CONFIG_XILINX_XADC=y
 CONFIG_AK8975=y
-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1246623

FromArnd Bergmann <arnd@arndb.de>
Date2015-10-14 14:40 +0200
Message-ID<qjtvz-70U-3@gated-at.bofh.it>
In reply to#1246501
On Wednesday 14 October 2015 12:34:00 Antoine Tenart wrote:
> Hi all,
> 
> Some drivers used on a Marvell Berlin kernel were missing from
> multi_v7_defconfig. This series add them.

Adding them is great, but we try to have as much as possible
in loadable modules for new additions. Can you do this?

Having a single patch instead of four different ones is fine too,
by the way.

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1246716

FromAntoine Tenart <antoine.tenart@free-electrons.com>
Date2015-10-14 15:20 +0200
Message-ID<qju8i-81e-45@gated-at.bofh.it>
In reply to#1246623
Hi Arnd,

On Wed, Oct 14, 2015 at 02:36:21PM +0200, Arnd Bergmann wrote:
> On Wednesday 14 October 2015 12:34:00 Antoine Tenart wrote:
> > 
> > Some drivers used on a Marvell Berlin kernel were missing from
> > multi_v7_defconfig. This series add them.
> 
> Adding them is great, but we try to have as much as possible
> in loadable modules for new additions. Can you do this?

Sure, I'll do this for the Ethernet and the ADC drivers. But we already
have the SATA and USB features built-in with multi_v7_defconfig, so I'll
keep the two PHY drivers built-in.

> Having a single patch instead of four different ones is fine too,
> by the way.

And I'll put them into a single patch.

Thanks,

Antoine

-- 
Antoine Ténart, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1246735

FromArnd Bergmann <arnd@arndb.de>
Date2015-10-14 15:30 +0200
Message-ID<qjuhX-8cu-13@gated-at.bofh.it>
In reply to#1246716
On Wednesday 14 October 2015 15:09:35 Antoine Tenart wrote:
> Hi Arnd,
> 
> On Wed, Oct 14, 2015 at 02:36:21PM +0200, Arnd Bergmann wrote:
> > On Wednesday 14 October 2015 12:34:00 Antoine Tenart wrote:
> > > 
> > > Some drivers used on a Marvell Berlin kernel were missing from
> > > multi_v7_defconfig. This series add them.
> > 
> > Adding them is great, but we try to have as much as possible
> > in loadable modules for new additions. Can you do this?
> 
> Sure, I'll do this for the Ethernet and the ADC drivers. But we already
> have the SATA and USB features built-in with multi_v7_defconfig, so I'll
> keep the two PHY drivers built-in.
> 
> 

Ok, fair enough.

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web