diff mbox series

arm64: configs: Enable Actions Semi platform in defconfig

Message ID 20191015152204.5610-1-manivannan.sadhasivam@linaro.org (mailing list archive)
State Mainlined
Commit de09e521cd1614577522beff00e946e5fb54b41d
Headers show
Series arm64: configs: Enable Actions Semi platform in defconfig | expand

Commit Message

Manivannan Sadhasivam Oct. 15, 2019, 3:22 p.m. UTC
Since there are enough consumers (drivers) for Actions Semi platform in
mainline, let's enable it in ARM64 defconfig. As of now, this platform
can boot a distro from eMMC/uSD.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

Comments

Andreas Färber Oct. 15, 2019, 5:41 p.m. UTC | #1
Hi Mani,

Am Dienstag, den 15.10.2019, 20:52 +0530 schrieb Manivannan Sadhasivam:
> Since there are enough consumers (drivers) for Actions Semi platform
> in
> mainline, let's enable it in ARM64 defconfig. As of now, this
> platform
> can boot a distro from eMMC/uSD.
> 
> Signed-off-by: Manivannan Sadhasivam <
> manivannan.sadhasivam@linaro.org>
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig
> b/arch/arm64/configs/defconfig
> index c9a867ac32d4..c8bd159db524 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -29,6 +29,7 @@ CONFIG_BLK_DEV_INITRD=y
>  CONFIG_KALLSYMS_ALL=y
>  # CONFIG_COMPAT_BRK is not set
>  CONFIG_PROFILING=y
> +CONFIG_ARCH_ACTIONS=y

Does this not need any further options for actual drivers?

>  CONFIG_ARCH_AGILEX=y
>  CONFIG_ARCH_SUNXI=y
>  CONFIG_ARCH_ALPINE=y

Regards,
Andreas



-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#615): https://linux.kernel.org/g/patchwork-soc/message/615
Mute This Topic: https://linux.kernel.org/mt/34546566/1554929
Group Owner: patchwork-soc+owner@linux.kernel.org
Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub  [patchwork-linux-kernel-org@patchwork.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-
Manivannan Sadhasivam Oct. 16, 2019, 8:45 a.m. UTC | #2
Hi Andreas,

On Tue, Oct 15, 2019 at 07:41:33PM +0200, Andreas Färber wrote:
> Hi Mani,
> 
> Am Dienstag, den 15.10.2019, 20:52 +0530 schrieb Manivannan Sadhasivam:
> > Since there are enough consumers (drivers) for Actions Semi platform
> > in
> > mainline, let's enable it in ARM64 defconfig. As of now, this
> > platform
> > can boot a distro from eMMC/uSD.
> > 
> > Signed-off-by: Manivannan Sadhasivam <
> > manivannan.sadhasivam@linaro.org>
> > ---
> >  arch/arm64/configs/defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm64/configs/defconfig
> > b/arch/arm64/configs/defconfig
> > index c9a867ac32d4..c8bd159db524 100644
> > --- a/arch/arm64/configs/defconfig
> > +++ b/arch/arm64/configs/defconfig
> > @@ -29,6 +29,7 @@ CONFIG_BLK_DEV_INITRD=y
> >  CONFIG_KALLSYMS_ALL=y
> >  # CONFIG_COMPAT_BRK is not set
> >  CONFIG_PROFILING=y
> > +CONFIG_ARCH_ACTIONS=y
> 
> Does this not need any further options for actual drivers?
> 

The MMC driver is still in the Maintainer's tree, so I thought I'll
enable all required drivers in a single patch later! But if ARM SoC
folks prefer to enable everything in one patch, I will send it
for next cycle.

Thanks,
Mani

> >  CONFIG_ARCH_AGILEX=y
> >  CONFIG_ARCH_SUNXI=y
> >  CONFIG_ARCH_ALPINE=y
> 
> Regards,
> Andreas
> 
> 

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#616): https://linux.kernel.org/g/patchwork-soc/message/616
Mute This Topic: https://linux.kernel.org/mt/34546566/1554929
Group Owner: patchwork-soc+owner@linux.kernel.org
Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub  [patchwork-linux-kernel-org@patchwork.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-
Arnd Bergmann Oct. 16, 2019, 9:10 a.m. UTC | #3
On Wed, Oct 16, 2019 at 10:45 AM Manivannan Sadhasivam
<manivannan.sadhasivam@linaro.org> wrote:
>
> The MMC driver is still in the Maintainer's tree, so I thought I'll
> enable all required drivers in a single patch later! But if ARM SoC
> folks prefer to enable everything in one patch, I will send it
> for next cycle.

As long as the change is useful by itself, we can merge the current version.

Note that if you want to enable a couple of device drivers for one platform
it's better to do it as one patch than to have one patch per driver.

     Arnd

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#617): https://linux.kernel.org/g/patchwork-soc/message/617
Mute This Topic: https://linux.kernel.org/mt/34546566/1554929
Group Owner: patchwork-soc+owner@linux.kernel.org
Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub  [patchwork-linux-kernel-org@patchwork.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-
Manivannan Sadhasivam Oct. 16, 2019, 9:36 a.m. UTC | #4
Hi Arnd,

On Wed, Oct 16, 2019 at 11:10:15AM +0200, Arnd Bergmann wrote:
> On Wed, Oct 16, 2019 at 10:45 AM Manivannan Sadhasivam
> <manivannan.sadhasivam@linaro.org> wrote:
> >
> > The MMC driver is still in the Maintainer's tree, so I thought I'll
> > enable all required drivers in a single patch later! But if ARM SoC
> > folks prefer to enable everything in one patch, I will send it
> > for next cycle.
> 
> As long as the change is useful by itself, we can merge the current version.
> 

Okay, then please consider merging this :)

> Note that if you want to enable a couple of device drivers for one platform
> it's better to do it as one patch than to have one patch per driver.
> 

Sure, that's my plan.

Thanks,
Mani

>      Arnd

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#618): https://linux.kernel.org/g/patchwork-soc/message/618
Mute This Topic: https://linux.kernel.org/mt/34546566/1554929
Group Owner: patchwork-soc+owner@linux.kernel.org
Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub  [patchwork-linux-kernel-org@patchwork.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-
patchwork-bot+linux-soc@kernel.org Oct. 21, 2019, 10:22 p.m. UTC | #5
Hello:

The following patches were marked "accepted", because they were applied to
soc/soc.git (refs/heads/for-next):

Series: ARM: exynos: Stuff for v5.5
  Submitter: Krzysztof Kozlowski <krzk@kernel.org>
  Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=191073
    Patches: [GIT,PULL,1/5] ARM: defconfig: Samsung for v5.5
             [GIT,PULL,2/5] drivers: memory: Samsung for v5.5
             [GIT,PULL,4/5] ARM: dts: exynos: Stuff for v5.5
             [GIT,PULL,5/5] arm64: dts: exynos: Stuff for v5.5
             [GIT,PULL,3/5] ARM: dts: exynos: memory DMC driver bindings for v5.5

Series: Renesas SoC updates for v5.5
  Submitter: Geert Uytterhoeven <geert+renesas@glider.be>
  Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=189829
    Patches: [PULL,1/5] Renesas ARM DT updates for v5.5
             [PULL,2/5] Renesas ARM64 defconfig updates for v5.5
             [PULL,3/5] Renesas ARM64 DT updates for v5.5
             [PULL,4/5] Renesas driver updates for v5.5
             [PULL,5/5] Renesas DT binding updates for v5.5

Series: [GIT,PULL,1/2] Rockchip dts32 changes for 5.5 - round 1
  Submitter: Heiko Stübner <heiko@sntech.de>
  Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=190941
    Patches: [GIT,PULL,1/2] Rockchip dts32 changes for 5.5 - round 1
             [GIT,PULL,2/2] Rockchip dts64 changes for 5.5 - round 1

Patch: arm64: configs: Enable Actions Semi platform in defconfig
  Submitter: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
  Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=187867

Total patches: 13
patchwork-bot+linux-soc@kernel.org Oct. 21, 2019, 10:22 p.m. UTC | #6
Hello:

This patch was applied to soc/soc.git (refs/heads/for-next).

On Tue, 15 Oct 2019 20:52:04 +0530 you wrote:
> Since there are enough consumers (drivers) for Actions Semi platform in
> mainline, let's enable it in ARM64 defconfig. As of now, this platform
> can boot a distro from eMMC/uSD.
> 
> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)


Here is a summary with links:
  - arm64: configs: Enable Actions Semi platform in defconfig
    https://git.kernel.org/soc/soc/c/de09e521cd1614577522beff00e946e5fb54b41d

You are awesome, thank you!
diff mbox series

Patch

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index c9a867ac32d4..c8bd159db524 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -29,6 +29,7 @@  CONFIG_BLK_DEV_INITRD=y
 CONFIG_KALLSYMS_ALL=y
 # CONFIG_COMPAT_BRK is not set
 CONFIG_PROFILING=y
+CONFIG_ARCH_ACTIONS=y
 CONFIG_ARCH_AGILEX=y
 CONFIG_ARCH_SUNXI=y
 CONFIG_ARCH_ALPINE=y