linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller
@ 2020-07-06 13:23 Maxime Ripard
  2020-07-06 13:23 ` [PATCH 2/3] ARM: sunxi: configs: Enable the Mailbox driver Maxime Ripard
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Maxime Ripard @ 2020-07-06 13:23 UTC (permalink / raw)
  To: Chen-Yu Tsai, Maxime Ripard; +Cc: linux-arm-kernel

The A20 has a PS/2 controller and we have a driver for it, so let's enable
it in our defconfig.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
---
 arch/arm/configs/sunxi_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
index da1532a972bb..f15c5fffa050 100644
--- a/arch/arm/configs/sunxi_defconfig
+++ b/arch/arm/configs/sunxi_defconfig
@@ -59,6 +59,7 @@ CONFIG_INPUT_TOUCHSCREEN=y
 CONFIG_TOUCHSCREEN_SUN4I=y
 CONFIG_INPUT_MISC=y
 CONFIG_INPUT_AXP20X_PEK=y
+CONFIG_SERIO_SUN4I_PS2=y
 CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_8250_CONSOLE=y
 CONFIG_SERIAL_8250_NR_UARTS=8
-- 
2.26.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] ARM: sunxi: configs: Enable the Mailbox driver
  2020-07-06 13:23 [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Maxime Ripard
@ 2020-07-06 13:23 ` Maxime Ripard
  2020-07-06 13:23 ` [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options Maxime Ripard
  2020-07-07  7:55 ` [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Chen-Yu Tsai
  2 siblings, 0 replies; 6+ messages in thread
From: Maxime Ripard @ 2020-07-06 13:23 UTC (permalink / raw)
  To: Chen-Yu Tsai, Maxime Ripard; +Cc: linux-arm-kernel

The mailbox found on the A31 and later SoCs have recently gained some
support in Linux. Since it's going to be useful for crust, let's enable it
in our defconfig.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
---
 arch/arm/configs/sunxi_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
index f15c5fffa050..305bbe971474 100644
--- a/arch/arm/configs/sunxi_defconfig
+++ b/arch/arm/configs/sunxi_defconfig
@@ -149,6 +149,7 @@ CONFIG_STAGING=y
 CONFIG_STAGING_MEDIA=y
 CONFIG_VIDEO_SUNXI=y
 CONFIG_VIDEO_SUNXI_CEDRUS=y
+CONFIG_MAILBOX=y
 # CONFIG_IOMMU_SUPPORT is not set
 CONFIG_IIO=y
 CONFIG_AXP20X_ADC=y
-- 
2.26.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options
  2020-07-06 13:23 [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Maxime Ripard
  2020-07-06 13:23 ` [PATCH 2/3] ARM: sunxi: configs: Enable the Mailbox driver Maxime Ripard
@ 2020-07-06 13:23 ` Maxime Ripard
  2020-07-07 13:28   ` Corentin Labbe
  2020-07-07  7:55 ` [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Chen-Yu Tsai
  2 siblings, 1 reply; 6+ messages in thread
From: Maxime Ripard @ 2020-07-06 13:23 UTC (permalink / raw)
  To: Chen-Yu Tsai, Maxime Ripard; +Cc: linux-arm-kernel

Some crypto drivers were not enabled so far, so let's make sure we have
them compiled in our defconfig.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
---
 arch/arm/configs/sunxi_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
index 305bbe971474..244126172fd6 100644
--- a/arch/arm/configs/sunxi_defconfig
+++ b/arch/arm/configs/sunxi_defconfig
@@ -168,7 +168,9 @@ CONFIG_ROOT_NFS=y
 CONFIG_NLS_CODEPAGE_437=y
 CONFIG_NLS_ISO8859_1=y
 CONFIG_CRYPTO_DEV_SUN4I_SS=y
+CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y
 CONFIG_CRYPTO_DEV_SUN8I_CE=y
+CONFIG_CRYPTO_DEV_SUN8I_SS=y
 CONFIG_DMA_CMA=y
 CONFIG_PRINTK_TIME=y
 CONFIG_DEBUG_FS=y
-- 
2.26.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller
  2020-07-06 13:23 [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Maxime Ripard
  2020-07-06 13:23 ` [PATCH 2/3] ARM: sunxi: configs: Enable the Mailbox driver Maxime Ripard
  2020-07-06 13:23 ` [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options Maxime Ripard
@ 2020-07-07  7:55 ` Chen-Yu Tsai
  2020-07-07 10:53   ` Maxime Ripard
  2 siblings, 1 reply; 6+ messages in thread
From: Chen-Yu Tsai @ 2020-07-07  7:55 UTC (permalink / raw)
  To: Maxime Ripard; +Cc: linux-arm-kernel

On Mon, Jul 6, 2020 at 9:23 PM Maxime Ripard <maxime@cerno.tech> wrote:
>
> The A20 has a PS/2 controller and we have a driver for it, so let's enable
> it in our defconfig.
>
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>

Acked-by: Chen-Yu Tsai <wens@csie.org>

for all three patches.

> ---
>  arch/arm/configs/sunxi_defconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
> index da1532a972bb..f15c5fffa050 100644
> --- a/arch/arm/configs/sunxi_defconfig
> +++ b/arch/arm/configs/sunxi_defconfig
> @@ -59,6 +59,7 @@ CONFIG_INPUT_TOUCHSCREEN=y
>  CONFIG_TOUCHSCREEN_SUN4I=y
>  CONFIG_INPUT_MISC=y
>  CONFIG_INPUT_AXP20X_PEK=y
> +CONFIG_SERIO_SUN4I_PS2=y
>  CONFIG_SERIAL_8250=y
>  CONFIG_SERIAL_8250_CONSOLE=y
>  CONFIG_SERIAL_8250_NR_UARTS=8
> --
> 2.26.2
>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller
  2020-07-07  7:55 ` [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Chen-Yu Tsai
@ 2020-07-07 10:53   ` Maxime Ripard
  0 siblings, 0 replies; 6+ messages in thread
From: Maxime Ripard @ 2020-07-07 10:53 UTC (permalink / raw)
  To: Chen-Yu Tsai; +Cc: linux-arm-kernel


[-- Attachment #1.1: Type: text/plain, Size: 412 bytes --]

On Tue, Jul 07, 2020 at 03:55:45PM +0800, Chen-Yu Tsai wrote:
> On Mon, Jul 6, 2020 at 9:23 PM Maxime Ripard <maxime@cerno.tech> wrote:
> >
> > The A20 has a PS/2 controller and we have a driver for it, so let's enable
> > it in our defconfig.
> >
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> 
> Acked-by: Chen-Yu Tsai <wens@csie.org>
> 
> for all three patches.

Applied, thanks!
Maxime

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options
  2020-07-06 13:23 ` [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options Maxime Ripard
@ 2020-07-07 13:28   ` Corentin Labbe
  0 siblings, 0 replies; 6+ messages in thread
From: Corentin Labbe @ 2020-07-07 13:28 UTC (permalink / raw)
  To: Maxime Ripard; +Cc: Chen-Yu Tsai, linux-arm-kernel

On Mon, Jul 06, 2020 at 03:23:23PM +0200, Maxime Ripard wrote:
> Some crypto drivers were not enabled so far, so let's make sure we have
> them compiled in our defconfig.
> 
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> ---
>  arch/arm/configs/sunxi_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig
> index 305bbe971474..244126172fd6 100644
> --- a/arch/arm/configs/sunxi_defconfig
> +++ b/arch/arm/configs/sunxi_defconfig
> @@ -168,7 +168,9 @@ CONFIG_ROOT_NFS=y
>  CONFIG_NLS_CODEPAGE_437=y
>  CONFIG_NLS_ISO8859_1=y
>  CONFIG_CRYPTO_DEV_SUN4I_SS=y
> +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y
>  CONFIG_CRYPTO_DEV_SUN8I_CE=y
> +CONFIG_CRYPTO_DEV_SUN8I_SS=y
>  CONFIG_DMA_CMA=y
>  CONFIG_PRINTK_TIME=y
>  CONFIG_DEBUG_FS=y

Acked-by: Corentin Labbe <clabbe.montjoie@gmail.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-07-07 13:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-06 13:23 [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Maxime Ripard
2020-07-06 13:23 ` [PATCH 2/3] ARM: sunxi: configs: Enable the Mailbox driver Maxime Ripard
2020-07-06 13:23 ` [PATCH 3/3] ARM: configs: sunxi: Enable crypto related options Maxime Ripard
2020-07-07 13:28   ` Corentin Labbe
2020-07-07  7:55 ` [PATCH 1/3] ARM: configs: sunxi: Enable the PS/2 controller Chen-Yu Tsai
2020-07-07 10:53   ` Maxime Ripard

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).