linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey
@ 2016-08-24  2:42 Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 1/3] arm64: defconfig: Enable HiSilicon kirin drm, adv7533 " Guodong Xu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Guodong Xu @ 2016-08-24  2:42 UTC (permalink / raw)
  To: linux-arm-kernel

Enable various configs for HiKey, including:
1. HiSilicon Kirin DRM
2. ADV7533
3. HiSi Powerkey
4. Bluetooth

v2:
 - Removed CMA size 128M change. Leave that in bootloader as suggested by
   Thierry Reding <treding@nvidia.com>

Guodong Xu (3):
  arm64: defconfig: Enable HiSilicon kirin drm, adv7533 for HiKey
  arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY for HiKey
  arm64: defconfig: enable bluetooth supports as modules

 arch/arm64/configs/defconfig | 11 +++++++++++
 1 file changed, 11 insertions(+)

-- 
1.9.1

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

* [PATCH v2 1/3] arm64: defconfig: Enable HiSilicon kirin drm, adv7533 for HiKey
  2016-08-24  2:42 [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Guodong Xu
@ 2016-08-24  2:42 ` Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 2/3] arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY " Guodong Xu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Guodong Xu @ 2016-08-24  2:42 UTC (permalink / raw)
  To: linux-arm-kernel

Enable HiSilicon kirin drm driver for HiKey: CONFIG_DRM_HISI_KIRIN
Enable adv7511/adv7533 for HiKey: CONFIG_DRM_I2C_ADV7511

Build these components as modules.

Signed-off-by: Xinliang Liu <xinliang.liu@linaro.org>
Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
---
 arch/arm64/configs/defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 76bfaa7..e27f086 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -276,6 +276,8 @@ CONFIG_DRM=m
 CONFIG_DRM_NOUVEAU=m
 CONFIG_DRM_TEGRA=m
 CONFIG_DRM_PANEL_SIMPLE=m
+CONFIG_DRM_I2C_ADV7511=m
+CONFIG_DRM_HISI_KIRIN=m
 CONFIG_FB=y
 CONFIG_FB_ARMCLCD=y
 CONFIG_BACKLIGHT_GENERIC=m
-- 
1.9.1

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

* [PATCH v2 2/3] arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY for HiKey
  2016-08-24  2:42 [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 1/3] arm64: defconfig: Enable HiSilicon kirin drm, adv7533 " Guodong Xu
@ 2016-08-24  2:42 ` Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 3/3] arm64: defconfig: enable bluetooth supports as modules Guodong Xu
  2016-08-24 15:15 ` [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Wei Xu
  3 siblings, 0 replies; 5+ messages in thread
From: Guodong Xu @ 2016-08-24  2:42 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Guodong Xu <guodong.xu@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 e27f086..b4f714c 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -186,6 +186,7 @@ CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_GPIO=y
 CONFIG_INPUT_MISC=y
 CONFIG_INPUT_PM8941_PWRKEY=y
+CONFIG_INPUT_HISI_POWERKEY=y
 # CONFIG_SERIO_SERPORT is not set
 CONFIG_SERIO_AMBAKMI=y
 CONFIG_LEGACY_PTY_COUNT=16
-- 
1.9.1

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

* [PATCH v2 3/3] arm64: defconfig: enable bluetooth supports as modules
  2016-08-24  2:42 [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 1/3] arm64: defconfig: Enable HiSilicon kirin drm, adv7533 " Guodong Xu
  2016-08-24  2:42 ` [PATCH v2 2/3] arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY " Guodong Xu
@ 2016-08-24  2:42 ` Guodong Xu
  2016-08-24 15:15 ` [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Wei Xu
  3 siblings, 0 replies; 5+ messages in thread
From: Guodong Xu @ 2016-08-24  2:42 UTC (permalink / raw)
  To: linux-arm-kernel

Enable the following items for bluetooth mouse and speaker which base
on HCIUART.

a) CONFIG_BT_HCIUART
b) CONFIG_BT_HCIUART_LL
c) CONFIG_BT_HIDP

Enable bluetooth LED support.

d) CONFIG_BT_LEDS

Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
---
 arch/arm64/configs/defconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index b4f714c..0c7551d 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -120,6 +120,14 @@ CONFIG_VLAN_8021Q=m
 CONFIG_VLAN_8021Q_GVRP=y
 CONFIG_VLAN_8021Q_MVRP=y
 CONFIG_BPF_JIT=y
+CONFIG_BT=m
+CONFIG_BT_HIDP=m
+# CONFIG_BT_HS is not set
+# CONFIG_BT_LE is not set
+CONFIG_BT_LEDS=y
+# CONFIG_BT_DEBUGFS is not set
+CONFIG_BT_HCIUART=m
+CONFIG_BT_HCIUART_LL=y
 CONFIG_CFG80211=m
 CONFIG_MAC80211=m
 CONFIG_MAC80211_LEDS=y
-- 
1.9.1

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

* [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey
  2016-08-24  2:42 [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Guodong Xu
                   ` (2 preceding siblings ...)
  2016-08-24  2:42 ` [PATCH v2 3/3] arm64: defconfig: enable bluetooth supports as modules Guodong Xu
@ 2016-08-24 15:15 ` Wei Xu
  3 siblings, 0 replies; 5+ messages in thread
From: Wei Xu @ 2016-08-24 15:15 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Guodong,

On 24/08/2016 03:42, Guodong Xu wrote:
> Enable various configs for HiKey, including:
> 1. HiSilicon Kirin DRM
> 2. ADV7533
> 3. HiSi Powerkey
> 4. Bluetooth
> 

Series applied to the hisilicon soc tree.
Thanks!

Best Regards,
Wei

> v2:
>  - Removed CMA size 128M change. Leave that in bootloader as suggested by
>    Thierry Reding <treding@nvidia.com>
> 
> Guodong Xu (3):
>   arm64: defconfig: Enable HiSilicon kirin drm, adv7533 for HiKey
>   arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY for HiKey
>   arm64: defconfig: enable bluetooth supports as modules
> 
>  arch/arm64/configs/defconfig | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 

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

end of thread, other threads:[~2016-08-24 15:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-24  2:42 [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Guodong Xu
2016-08-24  2:42 ` [PATCH v2 1/3] arm64: defconfig: Enable HiSilicon kirin drm, adv7533 " Guodong Xu
2016-08-24  2:42 ` [PATCH v2 2/3] arm64: defconfig: enable CONFIG_INPUT_HISI_POWERKEY " Guodong Xu
2016-08-24  2:42 ` [PATCH v2 3/3] arm64: defconfig: enable bluetooth supports as modules Guodong Xu
2016-08-24 15:15 ` [PATCH v2 0/3] arm64: defconfig: enable various configs for HiKey Wei Xu

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