linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs
@ 2015-10-01 12:57 Srinivas Kandagatla
  2015-10-05  4:18 ` Andy Gross
  2015-10-05  8:14 ` Arnd Bergmann
  0 siblings, 2 replies; 4+ messages in thread
From: Srinivas Kandagatla @ 2015-10-01 12:57 UTC (permalink / raw)
  To: linux-arm-kernel

This patch adds few missing essential configs in the multi_v7_defconf,
absense of some configs like PINCTRL_APQ8064 would prevent the board from
getting access to serial.

cc: Kevin Hilman <khilman@kernel.org>
cc: Tyler Baker <tyler.baker@linaro.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
 arch/arm/configs/multi_v7_defconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 03deb7f..ed76cd9 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -332,6 +332,7 @@ CONFIG_SPI_XILINX=y
 CONFIG_SPI_SPIDEV=y
 CONFIG_PINCTRL_AS3722=y
 CONFIG_PINCTRL_PALMAS=y
+CONFIG_PINCTRL_APQ8064=y
 CONFIG_PINCTRL_APQ8084=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_GENERIC_PLATFORM=y
@@ -391,6 +392,8 @@ CONFIG_MFD_MAX14577=y
 CONFIG_MFD_MAX77686=y
 CONFIG_MFD_MAX77693=y
 CONFIG_MFD_MAX8907=y
+CONFIG_MFD_PM8921_CORE=y
+CONFIG_MFD_QCOM_RPM=y
 CONFIG_MFD_SEC_CORE=y
 CONFIG_MFD_STMPE=y
 CONFIG_MFD_PALMAS=y
@@ -415,6 +418,7 @@ CONFIG_REGULATOR_MAX77802=m
 CONFIG_REGULATOR_PALMAS=y
 CONFIG_REGULATOR_PBIAS=y
 CONFIG_REGULATOR_PWM=m
+CONFIG_REGULATOR_QCOM_RPM=y
 CONFIG_REGULATOR_S2MPS11=y
 CONFIG_REGULATOR_S5M8767=y
 CONFIG_REGULATOR_TPS51632=y
@@ -494,6 +498,7 @@ CONFIG_USB=y
 CONFIG_USB_XHCI_HCD=y
 CONFIG_USB_XHCI_MVEBU=y
 CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_MSM=y
 CONFIG_USB_EHCI_EXYNOS=y
 CONFIG_USB_EHCI_TEGRA=y
 CONFIG_USB_EHCI_HCD_STI=y
@@ -514,6 +519,7 @@ CONFIG_KEYSTONE_USB_PHY=y
 CONFIG_OMAP_USB3=y
 CONFIG_USB_GPIO_VBUS=y
 CONFIG_USB_ISP1301=y
+CONFIG_USB_MSM_OTG=y
 CONFIG_USB_MXS_PHY=y
 CONFIG_USB_RCAR_PHY=m
 CONFIG_USB_GADGET=y
@@ -605,6 +611,7 @@ CONFIG_IMX_SDMA=y
 CONFIG_IMX_DMA=y
 CONFIG_MXS_DMA=y
 CONFIG_DMA_OMAP=y
+CONFIG_QCOM_BAM_DMA=y
 CONFIG_XILINX_VDMA=y
 CONFIG_DMA_SUN6I=y
 CONFIG_STAGING=y
@@ -651,6 +658,7 @@ CONFIG_PHY_HIX5HD2_SATA=y
 CONFIG_PWM_STI=m
 CONFIG_OMAP_USB2=y
 CONFIG_TI_PIPE3=y
+CONFIG_PHY_QCOM_APQ8064_SATA=y
 CONFIG_PHY_MIPHY28LP=y
 CONFIG_PHY_MIPHY365X=y
 CONFIG_PHY_RCAR_GEN2=m
-- 
1.9.1

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

* [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs
  2015-10-01 12:57 [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs Srinivas Kandagatla
@ 2015-10-05  4:18 ` Andy Gross
  2015-10-05  8:14 ` Arnd Bergmann
  1 sibling, 0 replies; 4+ messages in thread
From: Andy Gross @ 2015-10-05  4:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Oct 01, 2015 at 01:57:38PM +0100, Srinivas Kandagatla wrote:
> This patch adds few missing essential configs in the multi_v7_defconf,
> absense of some configs like PINCTRL_APQ8064 would prevent the board from
> getting access to serial.
> 
> cc: Kevin Hilman <khilman@kernel.org>
> cc: Tyler Baker <tyler.baker@linaro.org>
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
>  arch/arm/configs/multi_v7_defconfig | 8 ++++++++
>  1 file changed, 8 insertions(+)

Works like a charm.

Tested-by: Andy Gross <agross@codeaurora.org>

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs
  2015-10-01 12:57 [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs Srinivas Kandagatla
  2015-10-05  4:18 ` Andy Gross
@ 2015-10-05  8:14 ` Arnd Bergmann
  2015-10-05  8:59   ` Srinivas Kandagatla
  1 sibling, 1 reply; 4+ messages in thread
From: Arnd Bergmann @ 2015-10-05  8:14 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 01 October 2015 13:57:38 Srinivas Kandagatla wrote:
> This patch adds few missing essential configs in the multi_v7_defconf,
> absense of some configs like PINCTRL_APQ8064 would prevent the board from
> getting access to serial.
> 
> cc: Kevin Hilman <khilman@kernel.org>
> cc: Tyler Baker <tyler.baker@linaro.org>
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

Can you make some of these '=m' instead of '=y'? We try to have most things
that are not essential for booting as loadable modules, so the kernel
doesn't get too big.

	Arnd

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

* [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs
  2015-10-05  8:14 ` Arnd Bergmann
@ 2015-10-05  8:59   ` Srinivas Kandagatla
  0 siblings, 0 replies; 4+ messages in thread
From: Srinivas Kandagatla @ 2015-10-05  8:59 UTC (permalink / raw)
  To: linux-arm-kernel



On 05/10/15 09:14, Arnd Bergmann wrote:
> On Thursday 01 October 2015 13:57:38 Srinivas Kandagatla wrote:
>> This patch adds few missing essential configs in the multi_v7_defconf,
>> absense of some configs like PINCTRL_APQ8064 would prevent the board from
>> getting access to serial.
>>
>> cc: Kevin Hilman <khilman@kernel.org>
>> cc: Tyler Baker <tyler.baker@linaro.org>
>> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>
> Can you make some of these '=m' instead of '=y'? We try to have most things
> that are not essential for booting as loadable modules, so the kernel
> doesn't get too big.
Yes, I can make the USB and SATA as modules and other options are very 
essential to get the board booting with console.

Will send a new version.

--srini
>
> 	Arnd
>

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

end of thread, other threads:[~2015-10-05  8:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-01 12:57 [PATCH] ARM: multi_v7_defconfig: Add missing QCOM APQ8064 configs Srinivas Kandagatla
2015-10-05  4:18 ` Andy Gross
2015-10-05  8:14 ` Arnd Bergmann
2015-10-05  8:59   ` Srinivas Kandagatla

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