All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] ARM: config: ASPEED updates for 5.5
@ 2019-11-12  6:28 Joel Stanley
  2019-11-12  6:28 ` [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks Joel Stanley
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

Here are some additions to the defconfigs for ASPEED machines that I
intend on sending for 5.5.

If you have time to ack them that would be appreciated.

Joel Stanley (5):
  ARM: config: aspeed-g5: Enable 8250_DW quirks
  ARM: config: aspeed-g5: Add SGPIO and FSI drivers
  ARM: config: aspeed-g4: Add MMC, and cleanup
  ARM: configs: multi_v7: ASPEED network, gpio, FSI
  ARM: config: multi_v5: ASPEED SDHCI, SGPIO

 arch/arm/configs/aspeed_g4_defconfig | 18 ++++++++++++------
 arch/arm/configs/aspeed_g5_defconfig |  4 ++++
 arch/arm/configs/multi_v5_defconfig  |  4 ++++
 arch/arm/configs/multi_v7_defconfig  |  9 +++++++++
 4 files changed, 29 insertions(+), 6 deletions(-)

-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
@ 2019-11-12  6:28 ` Joel Stanley
  2019-11-12  8:26   ` Cédric Le Goater
  2019-11-12  6:28 ` [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers Joel Stanley
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

This driver option is used by the AST2600 A0 boards to work around a
hardware issue.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 arch/arm/configs/aspeed_g5_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/aspeed_g5_defconfig b/arch/arm/configs/aspeed_g5_defconfig
index 597536cc9573..b87508c7056c 100644
--- a/arch/arm/configs/aspeed_g5_defconfig
+++ b/arch/arm/configs/aspeed_g5_defconfig
@@ -139,6 +139,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=6
 CONFIG_SERIAL_8250_EXTENDED=y
 CONFIG_SERIAL_8250_ASPEED_VUART=y
 CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_8250_DW=y
 CONFIG_SERIAL_OF_PLATFORM=y
 CONFIG_ASPEED_KCS_IPMI_BMC=y
 CONFIG_ASPEED_BT_IPMI_BMC=y
-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
  2019-11-12  6:28 ` [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks Joel Stanley
@ 2019-11-12  6:28 ` Joel Stanley
  2019-11-12  8:28   ` Cédric Le Goater
  2019-11-12  6:28 ` [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup Joel Stanley
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

These are recently merged drivers for ASPEED systems.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 arch/arm/configs/aspeed_g5_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/aspeed_g5_defconfig b/arch/arm/configs/aspeed_g5_defconfig
index b87508c7056c..b0d056d49abe 100644
--- a/arch/arm/configs/aspeed_g5_defconfig
+++ b/arch/arm/configs/aspeed_g5_defconfig
@@ -155,6 +155,7 @@ CONFIG_SPI=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_ASPEED=y
+CONFIG_GPIO_ASPEED_SGPIO=y
 CONFIG_W1=y
 CONFIG_W1_MASTER_GPIO=y
 CONFIG_W1_SLAVE_THERM=y
@@ -237,8 +238,10 @@ CONFIG_FSI=y
 CONFIG_FSI_MASTER_GPIO=y
 CONFIG_FSI_MASTER_HUB=y
 CONFIG_FSI_MASTER_AST_CF=y
+CONFIG_FSI_MASTER_ASPEED=y
 CONFIG_FSI_SCOM=y
 CONFIG_FSI_SBEFIFO=y
+CONFIG_FSI_OCC=y
 CONFIG_FANOTIFY=y
 CONFIG_OVERLAY_FS=y
 CONFIG_TMPFS=y
-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
  2019-11-12  6:28 ` [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks Joel Stanley
  2019-11-12  6:28 ` [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers Joel Stanley
@ 2019-11-12  6:28 ` Joel Stanley
  2019-11-12  8:29   ` Cédric Le Goater
  2019-11-12  6:28 ` [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI Joel Stanley
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

The PCA muxes now depend on I2C_MUX. SPI si now required by SPI-NOR.

Add the eMMC driver, and remove the FSI SBEFIFO which is not used on AST2400
systems.

The remaining changes are cleanups from regenerating the defconfig.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 arch/arm/configs/aspeed_g4_defconfig | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/arch/arm/configs/aspeed_g4_defconfig b/arch/arm/configs/aspeed_g4_defconfig
index 1857df992484..303f75a3baec 100644
--- a/arch/arm/configs/aspeed_g4_defconfig
+++ b/arch/arm/configs/aspeed_g4_defconfig
@@ -132,10 +132,12 @@ CONFIG_ASPEED_BT_IPMI_BMC=y
 CONFIG_HW_RANDOM_TIMERIOMEM=y
 # CONFIG_I2C_COMPAT is not set
 CONFIG_I2C_CHARDEV=y
+CONFIG_I2C_MUX=y
 CONFIG_I2C_MUX_PCA9541=y
 CONFIG_I2C_MUX_PCA954x=y
 CONFIG_I2C_ASPEED=y
 CONFIG_I2C_FSI=y
+CONFIG_SPI=y
 CONFIG_GPIOLIB=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_ASPEED=y
@@ -185,6 +187,12 @@ CONFIG_USB_CONFIGFS_F_LB_SS=y
 CONFIG_USB_CONFIGFS_F_FS=y
 CONFIG_USB_CONFIGFS_F_HID=y
 CONFIG_USB_CONFIGFS_F_PRINTER=y
+CONFIG_MMC=y
+# CONFIG_PWRSEQ_EMMC is not set
+# CONFIG_PWRSEQ_SIMPLE is not set
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_SDHCI_PLTFM=y
+CONFIG_MMC_SDHCI_OF_ASPEED=y
 CONFIG_NEW_LEDS=y
 CONFIG_LEDS_CLASS=y
 CONFIG_LEDS_CLASS_FLASH=y
@@ -216,7 +224,6 @@ CONFIG_FSI_MASTER_GPIO=y
 CONFIG_FSI_MASTER_HUB=y
 CONFIG_FSI_MASTER_AST_CF=y
 CONFIG_FSI_SCOM=y
-CONFIG_FSI_SBEFIFO=y
 CONFIG_FANOTIFY=y
 CONFIG_OVERLAY_FS=y
 CONFIG_TMPFS=y
@@ -231,7 +238,6 @@ CONFIG_SQUASHFS_ZSTD=y
 # CONFIG_NETWORK_FILESYSTEMS is not set
 CONFIG_HARDENED_USERCOPY=y
 CONFIG_FORTIFY_SOURCE=y
-# CONFIG_CRYPTO_ECHAINIV is not set
 CONFIG_CRYPTO_HMAC=y
 CONFIG_CRYPTO_SHA256=y
 CONFIG_CRYPTO_USER_API_HASH=y
@@ -247,14 +253,14 @@ CONFIG_DEBUG_INFO_REDUCED=y
 CONFIG_DEBUG_INFO_DWARF4=y
 CONFIG_GDB_SCRIPTS=y
 CONFIG_STRIP_ASM_SYMS=y
+CONFIG_SCHED_STACK_END_CHECK=y
+CONFIG_PANIC_ON_OOPS=y
+CONFIG_PANIC_TIMEOUT=-1
 CONFIG_SOFTLOCKUP_DETECTOR=y
 # CONFIG_DETECT_HUNG_TASK is not set
 CONFIG_WQ_WATCHDOG=y
-CONFIG_PANIC_ON_OOPS=y
-CONFIG_PANIC_TIMEOUT=-1
 # CONFIG_SCHED_DEBUG is not set
-CONFIG_SCHED_STACK_END_CHECK=y
 CONFIG_FUNCTION_TRACER=y
-# CONFIG_RUNTIME_TESTING_MENU is not set
 CONFIG_DEBUG_WX=y
 CONFIG_DEBUG_USER=y
+# CONFIG_RUNTIME_TESTING_MENU is not set
-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
                   ` (2 preceding siblings ...)
  2019-11-12  6:28 ` [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup Joel Stanley
@ 2019-11-12  6:28 ` Joel Stanley
  2019-11-12  8:29   ` Cédric Le Goater
  2019-11-12  6:28 ` [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO Joel Stanley
  2019-11-12  8:06 ` [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Arnd Bergmann
  5 siblings, 1 reply; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

Enable drivers used by the ASPEED SoCs so the multi v7 defconfig can run
on those boards.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 arch/arm/configs/multi_v7_defconfig | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 13ba53286901..124f50dc9cc7 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -244,6 +244,7 @@ CONFIG_BGMAC_BCMA=y
 CONFIG_SYSTEMPORT=m
 CONFIG_MACB=y
 CONFIG_NET_CALXEDA_XGMAC=y
+CONFIG_FTGMAC100=m
 CONFIG_GIANFAR=y
 CONFIG_HIX5HD2_GMAC=y
 CONFIG_E1000E=y
@@ -437,6 +438,7 @@ CONFIG_PINCTRL_MSM8X74=y
 CONFIG_PINCTRL_MSM8916=y
 CONFIG_PINCTRL_QCOM_SPMI_PMIC=y
 CONFIG_PINCTRL_QCOM_SSBI_PMIC=y
+CONFIG_GPIO_ASPEED_SGPIO=y
 CONFIG_GPIO_DAVINCI=y
 CONFIG_GPIO_DWAPB=y
 CONFIG_GPIO_EM=y
@@ -1041,6 +1043,13 @@ CONFIG_ROCKCHIP_EFUSE=m
 CONFIG_NVMEM_IMX_OCOTP=y
 CONFIG_NVMEM_SUNXI_SID=y
 CONFIG_NVMEM_VF610_OCOTP=y
+CONFIG_FSI=m
+CONFIG_FSI_MASTER_GPIO=m
+CONFIG_FSI_MASTER_HUB=m
+CONFIG_FSI_MASTER_ASPEED=m
+CONFIG_FSI_SCOM=m
+CONFIG_FSI_SBEFIFO=m
+CONFIG_FSI_OCC=m
 CONFIG_EXT4_FS=y
 CONFIG_AUTOFS4_FS=y
 CONFIG_MSDOS_FS=y
-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
                   ` (3 preceding siblings ...)
  2019-11-12  6:28 ` [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI Joel Stanley
@ 2019-11-12  6:28 ` Joel Stanley
  2019-11-12  8:29   ` Cédric Le Goater
  2019-11-12  8:06 ` [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Arnd Bergmann
  5 siblings, 1 reply; 12+ messages in thread
From: Joel Stanley @ 2019-11-12  6:28 UTC (permalink / raw)
  To: Andrew Jeffery, Cédric Le Goater
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

Enable drivers used by the ASPEED AST2400 SoC so the multi v5 defconfig
can run on those boards.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 arch/arm/configs/multi_v5_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/multi_v5_defconfig b/arch/arm/configs/multi_v5_defconfig
index bd018873e47a..56315e1f81ff 100644
--- a/arch/arm/configs/multi_v5_defconfig
+++ b/arch/arm/configs/multi_v5_defconfig
@@ -165,6 +165,7 @@ CONFIG_SPI_ATMEL=y
 CONFIG_SPI_IMX=y
 CONFIG_SPI_ORION=y
 CONFIG_GPIO_ASPEED=m
+CONFIG_GPIO_ASPEED_SGPIO=y
 CONFIG_POWER_RESET=y
 CONFIG_POWER_RESET_GPIO=y
 CONFIG_POWER_RESET_QNAP=y
@@ -241,6 +242,9 @@ CONFIG_USB_ASPEED_VHUB=m
 CONFIG_USB_CONFIGFS=m
 CONFIG_MMC=y
 CONFIG_SDIO_UART=y
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_SDHCI_OF_ASPEED=m
 CONFIG_MMC_ATMELMCI=y
 CONFIG_MMC_MVSDIO=y
 CONFIG_NEW_LEDS=y
-- 
2.24.0


_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 0/5] ARM: config: ASPEED updates for 5.5
  2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
                   ` (4 preceding siblings ...)
  2019-11-12  6:28 ` [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO Joel Stanley
@ 2019-11-12  8:06 ` Arnd Bergmann
  5 siblings, 0 replies; 12+ messages in thread
From: Arnd Bergmann @ 2019-11-12  8:06 UTC (permalink / raw)
  To: Joel Stanley
  Cc: Andrew Jeffery, linux-aspeed, Cédric Le Goater, Linux ARM

On Tue, Nov 12, 2019 at 7:29 AM Joel Stanley <joel@jms.id.au> wrote:
>
> Here are some additions to the defconfigs for ASPEED machines that I
> intend on sending for 5.5.
>
> If you have time to ack them that would be appreciated.

These all look good to me

Acked-by: Arnd Bergmann <arnd@arndb.de>

_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks
  2019-11-12  6:28 ` [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks Joel Stanley
@ 2019-11-12  8:26   ` Cédric Le Goater
  0 siblings, 0 replies; 12+ messages in thread
From: Cédric Le Goater @ 2019-11-12  8:26 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

On 12/11/2019 07:28, Joel Stanley wrote:
> This driver option is used by the AST2600 A0 boards to work around a
> hardware issue.
> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>

Reviewed-by: Cédric Le Goater <clg@kaod.org>

> ---
>  arch/arm/configs/aspeed_g5_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/aspeed_g5_defconfig b/arch/arm/configs/aspeed_g5_defconfig
> index 597536cc9573..b87508c7056c 100644
> --- a/arch/arm/configs/aspeed_g5_defconfig
> +++ b/arch/arm/configs/aspeed_g5_defconfig
> @@ -139,6 +139,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=6
>  CONFIG_SERIAL_8250_EXTENDED=y
>  CONFIG_SERIAL_8250_ASPEED_VUART=y
>  CONFIG_SERIAL_8250_SHARE_IRQ=y
> +CONFIG_SERIAL_8250_DW=y
>  CONFIG_SERIAL_OF_PLATFORM=y
>  CONFIG_ASPEED_KCS_IPMI_BMC=y
>  CONFIG_ASPEED_BT_IPMI_BMC=y
> 


_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers
  2019-11-12  6:28 ` [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers Joel Stanley
@ 2019-11-12  8:28   ` Cédric Le Goater
  0 siblings, 0 replies; 12+ messages in thread
From: Cédric Le Goater @ 2019-11-12  8:28 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

On 12/11/2019 07:28, Joel Stanley wrote:
> These are recently merged drivers for ASPEED systems.
> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>

Reviewed-by: Cédric Le Goater <clg@kaod.org>


> ---
>  arch/arm/configs/aspeed_g5_defconfig | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/arch/arm/configs/aspeed_g5_defconfig b/arch/arm/configs/aspeed_g5_defconfig
> index b87508c7056c..b0d056d49abe 100644
> --- a/arch/arm/configs/aspeed_g5_defconfig
> +++ b/arch/arm/configs/aspeed_g5_defconfig
> @@ -155,6 +155,7 @@ CONFIG_SPI=y
>  CONFIG_GPIOLIB=y
>  CONFIG_GPIO_SYSFS=y
>  CONFIG_GPIO_ASPEED=y
> +CONFIG_GPIO_ASPEED_SGPIO=y
>  CONFIG_W1=y
>  CONFIG_W1_MASTER_GPIO=y
>  CONFIG_W1_SLAVE_THERM=y
> @@ -237,8 +238,10 @@ CONFIG_FSI=y
>  CONFIG_FSI_MASTER_GPIO=y
>  CONFIG_FSI_MASTER_HUB=y
>  CONFIG_FSI_MASTER_AST_CF=y
> +CONFIG_FSI_MASTER_ASPEED=y
>  CONFIG_FSI_SCOM=y
>  CONFIG_FSI_SBEFIFO=y
> +CONFIG_FSI_OCC=y
>  CONFIG_FANOTIFY=y
>  CONFIG_OVERLAY_FS=y
>  CONFIG_TMPFS=y
> 


_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup
  2019-11-12  6:28 ` [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup Joel Stanley
@ 2019-11-12  8:29   ` Cédric Le Goater
  0 siblings, 0 replies; 12+ messages in thread
From: Cédric Le Goater @ 2019-11-12  8:29 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

On 12/11/2019 07:28, Joel Stanley wrote:
> The PCA muxes now depend on I2C_MUX. SPI si now required by SPI-NOR.
> 
> Add the eMMC driver, and remove the FSI SBEFIFO which is not used on AST2400
> systems.
> 
> The remaining changes are cleanups from regenerating the defconfig.
> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>


Reviewed-by: Cédric Le Goater <clg@kaod.org>

> ---
>  arch/arm/configs/aspeed_g4_defconfig | 18 ++++++++++++------
>  1 file changed, 12 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/configs/aspeed_g4_defconfig b/arch/arm/configs/aspeed_g4_defconfig
> index 1857df992484..303f75a3baec 100644
> --- a/arch/arm/configs/aspeed_g4_defconfig
> +++ b/arch/arm/configs/aspeed_g4_defconfig
> @@ -132,10 +132,12 @@ CONFIG_ASPEED_BT_IPMI_BMC=y
>  CONFIG_HW_RANDOM_TIMERIOMEM=y
>  # CONFIG_I2C_COMPAT is not set
>  CONFIG_I2C_CHARDEV=y
> +CONFIG_I2C_MUX=y
>  CONFIG_I2C_MUX_PCA9541=y
>  CONFIG_I2C_MUX_PCA954x=y
>  CONFIG_I2C_ASPEED=y
>  CONFIG_I2C_FSI=y
> +CONFIG_SPI=y
>  CONFIG_GPIOLIB=y
>  CONFIG_GPIO_SYSFS=y
>  CONFIG_GPIO_ASPEED=y
> @@ -185,6 +187,12 @@ CONFIG_USB_CONFIGFS_F_LB_SS=y
>  CONFIG_USB_CONFIGFS_F_FS=y
>  CONFIG_USB_CONFIGFS_F_HID=y
>  CONFIG_USB_CONFIGFS_F_PRINTER=y
> +CONFIG_MMC=y
> +# CONFIG_PWRSEQ_EMMC is not set
> +# CONFIG_PWRSEQ_SIMPLE is not set
> +CONFIG_MMC_SDHCI=y
> +CONFIG_MMC_SDHCI_PLTFM=y
> +CONFIG_MMC_SDHCI_OF_ASPEED=y
>  CONFIG_NEW_LEDS=y
>  CONFIG_LEDS_CLASS=y
>  CONFIG_LEDS_CLASS_FLASH=y
> @@ -216,7 +224,6 @@ CONFIG_FSI_MASTER_GPIO=y
>  CONFIG_FSI_MASTER_HUB=y
>  CONFIG_FSI_MASTER_AST_CF=y
>  CONFIG_FSI_SCOM=y
> -CONFIG_FSI_SBEFIFO=y
>  CONFIG_FANOTIFY=y
>  CONFIG_OVERLAY_FS=y
>  CONFIG_TMPFS=y
> @@ -231,7 +238,6 @@ CONFIG_SQUASHFS_ZSTD=y
>  # CONFIG_NETWORK_FILESYSTEMS is not set
>  CONFIG_HARDENED_USERCOPY=y
>  CONFIG_FORTIFY_SOURCE=y
> -# CONFIG_CRYPTO_ECHAINIV is not set
>  CONFIG_CRYPTO_HMAC=y
>  CONFIG_CRYPTO_SHA256=y
>  CONFIG_CRYPTO_USER_API_HASH=y
> @@ -247,14 +253,14 @@ CONFIG_DEBUG_INFO_REDUCED=y
>  CONFIG_DEBUG_INFO_DWARF4=y
>  CONFIG_GDB_SCRIPTS=y
>  CONFIG_STRIP_ASM_SYMS=y
> +CONFIG_SCHED_STACK_END_CHECK=y
> +CONFIG_PANIC_ON_OOPS=y
> +CONFIG_PANIC_TIMEOUT=-1
>  CONFIG_SOFTLOCKUP_DETECTOR=y
>  # CONFIG_DETECT_HUNG_TASK is not set
>  CONFIG_WQ_WATCHDOG=y
> -CONFIG_PANIC_ON_OOPS=y
> -CONFIG_PANIC_TIMEOUT=-1
>  # CONFIG_SCHED_DEBUG is not set
> -CONFIG_SCHED_STACK_END_CHECK=y
>  CONFIG_FUNCTION_TRACER=y
> -# CONFIG_RUNTIME_TESTING_MENU is not set
>  CONFIG_DEBUG_WX=y
>  CONFIG_DEBUG_USER=y
> +# CONFIG_RUNTIME_TESTING_MENU is not set
> 


_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI
  2019-11-12  6:28 ` [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI Joel Stanley
@ 2019-11-12  8:29   ` Cédric Le Goater
  0 siblings, 0 replies; 12+ messages in thread
From: Cédric Le Goater @ 2019-11-12  8:29 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

On 12/11/2019 07:28, Joel Stanley wrote:
> Enable drivers used by the ASPEED SoCs so the multi v7 defconfig can run
> on those boards.
> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>

Reviewed-by: Cédric Le Goater <clg@kaod.org>

> ---
>  arch/arm/configs/multi_v7_defconfig | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
> index 13ba53286901..124f50dc9cc7 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -244,6 +244,7 @@ CONFIG_BGMAC_BCMA=y
>  CONFIG_SYSTEMPORT=m
>  CONFIG_MACB=y
>  CONFIG_NET_CALXEDA_XGMAC=y
> +CONFIG_FTGMAC100=m
>  CONFIG_GIANFAR=y
>  CONFIG_HIX5HD2_GMAC=y
>  CONFIG_E1000E=y
> @@ -437,6 +438,7 @@ CONFIG_PINCTRL_MSM8X74=y
>  CONFIG_PINCTRL_MSM8916=y
>  CONFIG_PINCTRL_QCOM_SPMI_PMIC=y
>  CONFIG_PINCTRL_QCOM_SSBI_PMIC=y
> +CONFIG_GPIO_ASPEED_SGPIO=y
>  CONFIG_GPIO_DAVINCI=y
>  CONFIG_GPIO_DWAPB=y
>  CONFIG_GPIO_EM=y
> @@ -1041,6 +1043,13 @@ CONFIG_ROCKCHIP_EFUSE=m
>  CONFIG_NVMEM_IMX_OCOTP=y
>  CONFIG_NVMEM_SUNXI_SID=y
>  CONFIG_NVMEM_VF610_OCOTP=y
> +CONFIG_FSI=m
> +CONFIG_FSI_MASTER_GPIO=m
> +CONFIG_FSI_MASTER_HUB=m
> +CONFIG_FSI_MASTER_ASPEED=m
> +CONFIG_FSI_SCOM=m
> +CONFIG_FSI_SBEFIFO=m
> +CONFIG_FSI_OCC=m
>  CONFIG_EXT4_FS=y
>  CONFIG_AUTOFS4_FS=y
>  CONFIG_MSDOS_FS=y
> 


_______________________________________________
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] 12+ messages in thread

* Re: [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO
  2019-11-12  6:28 ` [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO Joel Stanley
@ 2019-11-12  8:29   ` Cédric Le Goater
  0 siblings, 0 replies; 12+ messages in thread
From: Cédric Le Goater @ 2019-11-12  8:29 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery
  Cc: linux-aspeed, linux-arm-kernel, Arnd Bergmann

On 12/11/2019 07:28, Joel Stanley wrote:
> Enable drivers used by the ASPEED AST2400 SoC so the multi v5 defconfig
> can run on those boards.
> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>

Reviewed-by: Cédric Le Goater <clg@kaod.org>

> ---
>  arch/arm/configs/multi_v5_defconfig | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/arm/configs/multi_v5_defconfig b/arch/arm/configs/multi_v5_defconfig
> index bd018873e47a..56315e1f81ff 100644
> --- a/arch/arm/configs/multi_v5_defconfig
> +++ b/arch/arm/configs/multi_v5_defconfig
> @@ -165,6 +165,7 @@ CONFIG_SPI_ATMEL=y
>  CONFIG_SPI_IMX=y
>  CONFIG_SPI_ORION=y
>  CONFIG_GPIO_ASPEED=m
> +CONFIG_GPIO_ASPEED_SGPIO=y
>  CONFIG_POWER_RESET=y
>  CONFIG_POWER_RESET_GPIO=y
>  CONFIG_POWER_RESET_QNAP=y
> @@ -241,6 +242,9 @@ CONFIG_USB_ASPEED_VHUB=m
>  CONFIG_USB_CONFIGFS=m
>  CONFIG_MMC=y
>  CONFIG_SDIO_UART=y
> +CONFIG_MMC_SDHCI=m
> +CONFIG_MMC_SDHCI_PLTFM=m
> +CONFIG_MMC_SDHCI_OF_ASPEED=m
>  CONFIG_MMC_ATMELMCI=y
>  CONFIG_MMC_MVSDIO=y
>  CONFIG_NEW_LEDS=y
> 


_______________________________________________
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] 12+ messages in thread

end of thread, other threads:[~2019-11-12  8:30 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-12  6:28 [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Joel Stanley
2019-11-12  6:28 ` [PATCH 1/5] ARM: config: aspeed-g5: Enable 8250_DW quirks Joel Stanley
2019-11-12  8:26   ` Cédric Le Goater
2019-11-12  6:28 ` [PATCH 2/5] ARM: config: aspeed-g5: Add SGPIO and FSI drivers Joel Stanley
2019-11-12  8:28   ` Cédric Le Goater
2019-11-12  6:28 ` [PATCH 3/5] ARM: config: aspeed-g4: Add MMC, and cleanup Joel Stanley
2019-11-12  8:29   ` Cédric Le Goater
2019-11-12  6:28 ` [PATCH 4/5] ARM: configs: multi_v7: ASPEED network, gpio, FSI Joel Stanley
2019-11-12  8:29   ` Cédric Le Goater
2019-11-12  6:28 ` [PATCH 5/5] ARM: config: multi_v5: ASPEED SDHCI, SGPIO Joel Stanley
2019-11-12  8:29   ` Cédric Le Goater
2019-11-12  8:06 ` [PATCH 0/5] ARM: config: ASPEED updates for 5.5 Arnd Bergmann

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.