linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A
@ 2015-12-09  8:41 Alison Wang
  2015-12-09  8:57 ` Arnd Bergmann
  2015-12-15 16:46 ` Arnd Bergmann
  0 siblings, 2 replies; 5+ messages in thread
From: Alison Wang @ 2015-12-09  8:41 UTC (permalink / raw)
  To: linux-arm-kernel

This patch enables some drivers for LS1021A, such as
GIANFAR, WATCHDOG, AUDIO, QSPI, I2C, ESDHC, EDMA, FTM.
QorIQ Clock Framework and Ramdisk support is also enabled.

Signed-off-by: Alison Wang <alison.wang@freescale.com>
---
Changes since v1:
- Make some drivers as loadable modules.

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

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index f6a2557..fb2159d 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -128,6 +128,7 @@ CONFIG_KEXEC=y
 CONFIG_CPU_FREQ=y
 CONFIG_CPU_FREQ_STAT_DETAILS=y
 CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
+CONFIG_QORIQ_CPUFREQ=y
 CONFIG_CPU_IDLE=y
 CONFIG_ARM_CPUIDLE=y
 CONFIG_NEON=y
@@ -182,8 +183,11 @@ CONFIG_MTD_NAND_ATMEL=y
 CONFIG_MTD_NAND_BRCMNAND=y
 CONFIG_MTD_NAND_DAVINCI=y
 CONFIG_MTD_SPI_NOR=y
+CONFIG_SPI_FSL_QUADSPI=m
 CONFIG_MTD_UBI=y
 CONFIG_BLK_DEV_LOOP=y
+CONFIG_BLK_DEV_RAM=y
+CONFIG_BLK_DEV_RAM_SIZEe536
 CONFIG_AD525X_DPOT=y
 CONFIG_AD525X_DPOT_I2C=y
 CONFIG_ATMEL_TCLIB=y
@@ -210,6 +214,7 @@ CONFIG_HIX5HD2_GMAC=y
 CONFIG_SUN4I_EMAC=y
 CONFIG_MACB=y
 CONFIG_NET_CALXEDA_XGMAC=y
+CONFIG_GIANFAR=y
 CONFIG_IGB=y
 CONFIG_MV643XX_ETH=y
 CONFIG_MVNETA=y
@@ -226,6 +231,7 @@ CONFIG_MARVELL_PHY=y
 CONFIG_SMSC_PHY=y
 CONFIG_BROADCOM_PHY=y
 CONFIG_ICPLUS_PHY=y
+CONFIG_REALTEK_PHY=y
 CONFIG_MICREL_PHY=y
 CONFIG_FIXED_PHY=y
 CONFIG_USB_PEGASUS=y
@@ -312,6 +318,7 @@ CONFIG_I2C_DESIGNWARE_PLATFORM=y
 CONFIG_I2C_DIGICOLOR=m
 CONFIG_I2C_GPIO=m
 CONFIG_I2C_EXYNOS5=y
+CONFIG_I2C_IMX=m
 CONFIG_I2C_MV64XXX=y
 CONFIG_I2C_RIIC=y
 CONFIG_I2C_RK3X=y
@@ -330,6 +337,7 @@ CONFIG_SPI=y
 CONFIG_SPI_ATMEL=m
 CONFIG_SPI_CADENCE=y
 CONFIG_SPI_DAVINCI=y
+CONFIG_SPI_FSL_DSPI=m
 CONFIG_SPI_OMAP24XX=y
 CONFIG_SPI_ORION=y
 CONFIG_SPI_PL022=y
@@ -405,6 +413,7 @@ CONFIG_ARM_SP805_WATCHDOG=y
 CONFIG_ORION_WATCHDOG=y
 CONFIG_ST_LPC_WATCHDOG=y
 CONFIG_SUNXI_WATCHDOG=y
+CONFIG_IMX2_WDT=y
 CONFIG_TEGRA_WATCHDOG=m
 CONFIG_MESON_WATCHDOG=y
 CONFIG_DIGICOLOR_WATCHDOG=y
@@ -525,6 +534,7 @@ CONFIG_SND_USB_AUDIO=y
 CONFIG_SND_SOC=m
 CONFIG_SND_ATMEL_SOC=m
 CONFIG_SND_ATMEL_SOC_WM8904=m
+CONFIG_SND_SOC_FSL_SAI=m
 CONFIG_SND_SOC_SH4_FSI=m
 CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_RSRC_CARD=m
@@ -537,6 +547,7 @@ CONFIG_SND_SOC_TEGRA_TRIMSLICE=m
 CONFIG_SND_SOC_TEGRA_ALC5632=m
 CONFIG_SND_SOC_TEGRA_MAX98090=m
 CONFIG_SND_SOC_AK4642=m
+CONFIG_SND_SOC_SGTL5000=m
 CONFIG_SND_SOC_WM8978=m
 CONFIG_USB=y
 CONFIG_USB_XHCI_HCD=y
@@ -577,6 +588,7 @@ CONFIG_MMC_SDHCI=y
 CONFIG_MMC_SDHCI_PLTFM=y
 CONFIG_MMC_SDHCI_OF_ARASAN=y
 CONFIG_MMC_SDHCI_OF_AT91=y
+CONFIG_MMC_SDHCI_OF_ESDHC=m
 CONFIG_MMC_SDHCI_ESDHC_IMX=y
 CONFIG_MMC_SDHCI_DOVE=y
 CONFIG_MMC_SDHCI_TEGRA=y
@@ -653,6 +665,7 @@ CONFIG_DMADEVICES=y
 CONFIG_DW_DMAC=y
 CONFIG_AT_HDMAC=y
 CONFIG_AT_XDMAC=y
+CONFIG_FSL_EDMA=m
 CONFIG_MV_XOR=y
 CONFIG_TEGRA20_APB_DMA=y
 CONFIG_SH_DMAE=y
@@ -712,6 +725,7 @@ CONFIG_AK8975=y
 CONFIG_PWM=y
 CONFIG_PWM_ATMEL=m
 CONFIG_PWM_ATMEL_TCB=m
+CONFIG_PWM_FSL_FTM=m
 CONFIG_PWM_RENESAS_TPU=y
 CONFIG_PWM_ROCKCHIP=m
 CONFIG_PWM_SAMSUNG=m
-- 
2.1.0.27.g96db324


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

* Re: [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A
  2015-12-09  8:41 [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A Alison Wang
@ 2015-12-09  8:57 ` Arnd Bergmann
  2015-12-11 11:42   ` Shawn Guo
  2015-12-15 16:46 ` Arnd Bergmann
  1 sibling, 1 reply; 5+ messages in thread
From: Arnd Bergmann @ 2015-12-09  8:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Wednesday 09 December 2015 16:41:39 Alison Wang wrote:
> This patch enables some drivers for LS1021A, such as
> GIANFAR, WATCHDOG, AUDIO, QSPI, I2C, ESDHC, EDMA, FTM.
> QorIQ Clock Framework and Ramdisk support is also enabled.
> 
> Signed-off-by: Alison Wang <alison.wang@freescale.com>
> ---
> Changes since v1:
> - Make some drivers as loadable modules.
> 

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

Shawn, do you want to pick this up and send it back through the
imx tree?

If you have no other defconfig changes for 4.5, we can also just
add it to arm-soc.

	Arnd

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

* Re: [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A
  2015-12-09  8:57 ` Arnd Bergmann
@ 2015-12-11 11:42   ` Shawn Guo
  2015-12-11 13:02     ` Arnd Bergmann
  0 siblings, 1 reply; 5+ messages in thread
From: Shawn Guo @ 2015-12-11 11:42 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 09, 2015 at 09:57:26AM +0100, Arnd Bergmann wrote:
> On Wednesday 09 December 2015 16:41:39 Alison Wang wrote:
> > This patch enables some drivers for LS1021A, such as
> > GIANFAR, WATCHDOG, AUDIO, QSPI, I2C, ESDHC, EDMA, FTM.
> > QorIQ Clock Framework and Ramdisk support is also enabled.
> > 
> > Signed-off-by: Alison Wang <alison.wang@freescale.com>
> > ---
> > Changes since v1:
> > - Make some drivers as loadable modules.
> > 
> 
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> 
> Shawn, do you want to pick this up and send it back through the
> imx tree?
> 
> If you have no other defconfig changes for 4.5, we can also just
> add it to arm-soc.

Arnd,

I was told by Olof to stay away from multi_v7_defconfig as it's not i.MX
specific.  So please apply it directly to arm-soc.

Shawn

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

* Re: [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A
  2015-12-11 11:42   ` Shawn Guo
@ 2015-12-11 13:02     ` Arnd Bergmann
  0 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2015-12-11 13:02 UTC (permalink / raw)
  To: linux-arm-kernel

On Friday 11 December 2015 19:42:33 Shawn Guo wrote:
> On Wed, Dec 09, 2015 at 09:57:26AM +0100, Arnd Bergmann wrote:
> > On Wednesday 09 December 2015 16:41:39 Alison Wang wrote:
> > > This patch enables some drivers for LS1021A, such as
> > > GIANFAR, WATCHDOG, AUDIO, QSPI, I2C, ESDHC, EDMA, FTM.
> > > QorIQ Clock Framework and Ramdisk support is also enabled.
> > > 
> > > Signed-off-by: Alison Wang <alison.wang@freescale.com>
> > > ---
> > > Changes since v1:
> > > - Make some drivers as loadable modules.
> > > 
> > 
> > Acked-by: Arnd Bergmann <arnd@arndb.de>
> > 
> > Shawn, do you want to pick this up and send it back through the
> > imx tree?
> > 
> > If you have no other defconfig changes for 4.5, we can also just
> > add it to arm-soc.
> 
> Arnd,
> 
> I was told by Olof to stay away from multi_v7_defconfig as it's not i.MX
> specific.  So please apply it directly to arm-soc.

Ok, I should discuss this with Olof, as I've been giving the opposite
advice in the past. ;-)

	Arnd

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

* Re: [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A
  2015-12-09  8:41 [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A Alison Wang
  2015-12-09  8:57 ` Arnd Bergmann
@ 2015-12-15 16:46 ` Arnd Bergmann
  1 sibling, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2015-12-15 16:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Wednesday 09 December 2015 16:41:39 Alison Wang wrote:
> This patch enables some drivers for LS1021A, such as
> GIANFAR, WATCHDOG, AUDIO, QSPI, I2C, ESDHC, EDMA, FTM.
> QorIQ Clock Framework and Ramdisk support is also enabled.
> 
> Signed-off-by: Alison Wang <alison.wang@freescale.com>
> 

Applied to next/defconfig, thanks!

	Arnd

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

end of thread, other threads:[~2015-12-15 16:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-09  8:41 [PATCH v2] ARM: multi_v7_defconfig: Enable some drivers for LS1021A Alison Wang
2015-12-09  8:57 ` Arnd Bergmann
2015-12-11 11:42   ` Shawn Guo
2015-12-11 13:02     ` Arnd Bergmann
2015-12-15 16:46 ` Arnd Bergmann

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