Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1369930 > unrolled thread

[PATCH v3 0/4] Enable configs for 96boards HiKey and general arm64

Started byGuodong Xu <guodong.xu@linaro.org>
First post2016-04-02 13:50 +0200
Last post2016-04-02 13:50 +0200
Articles 4 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v3 0/4] Enable configs for 96boards HiKey and general arm64 Guodong Xu <guodong.xu@linaro.org> - 2016-04-02 13:50 +0200
    [PATCH v3 2/4] arm64: defconfig: add CONFIG_SPI_SPIDEV as module Guodong Xu <guodong.xu@linaro.org> - 2016-04-02 13:50 +0200
    [PATCH v3 3/4] arm64: defconfig: enable several common USB network adapters Guodong Xu <guodong.xu@linaro.org> - 2016-04-02 13:50 +0200
    [PATCH v3 4/4] arm64: defconfig: enable configs for WLAN and TI WL1835 as modules Guodong Xu <guodong.xu@linaro.org> - 2016-04-02 13:50 +0200

#1369930 — [PATCH v3 0/4] Enable configs for 96boards HiKey and general arm64

FromGuodong Xu <guodong.xu@linaro.org>
Date2016-04-02 13:50 +0200
Subject[PATCH v3 0/4] Enable configs for 96boards HiKey and general arm64
Message-ID<rjsdX-37b-3@gated-at.bofh.it>
This patch enables a number of devices currently supported by the Hi6220
and 96boards HiKey. These include
a) Hi655x PMIC and regulator
b) Hi6220 I2C, USB, MMC, mailbox, and hisi-reset
c) CONFIG_PINCTRL_SINGLE, and CONFIG_LEDS_GPIO
d) WLAN, TI WL1835

Also added general features (built as modules) in arm64:
 - SPIDEV
 - USB network adapters

v3:
 - rebase to next-20160401
 - Enabled configs for WLAN and TI WL1835.

v2:
 - rebase to next-20160310, CONFIG_MMC_BLOCK_MINORS=16 is already in.
 - set CONFIG_I2C_DESIGNWARE_PLATFORM to be build as module
 - Enable general features (as modules) in arm64

Akira Tsukamoto (1):
  arm64: defconfig: enable several common USB network adapters

Guodong Xu (3):
  arm64: defconfig: Enable devices for Hi6220 and 96boards HiKey
  arm64: defconfig: add CONFIG_SPI_SPIDEV as module
  arm64: defconfig: enable configs for WLAN and TI WL1835 as modules

 arch/arm64/configs/defconfig | 30 ++++++++++++++++++++++++++++--
 1 file changed, 28 insertions(+), 2 deletions(-)

-- 
1.9.1

[toc] | [next] | [standalone]


#1369931 — [PATCH v3 2/4] arm64: defconfig: add CONFIG_SPI_SPIDEV as module

FromGuodong Xu <guodong.xu@linaro.org>
Date2016-04-02 13:50 +0200
Subject[PATCH v3 2/4] arm64: defconfig: add CONFIG_SPI_SPIDEV as module
Message-ID<rjsdY-37b-7@gated-at.bofh.it>
In reply to#1369930
add CONFIG_SPI_SPIDEV as module, for arm64.

Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 32b4f2d..e4952c5 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -154,6 +154,7 @@ CONFIG_I2C_RCAR=y
 CONFIG_SPI=y
 CONFIG_SPI_PL022=y
 CONFIG_SPI_QUP=y
+CONFIG_SPI_SPIDEV=m
 CONFIG_SPMI=y
 CONFIG_PINCTRL_SINGLE=y
 CONFIG_PINCTRL_MSM8916=y
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1369932 — [PATCH v3 3/4] arm64: defconfig: enable several common USB network adapters

FromGuodong Xu <guodong.xu@linaro.org>
Date2016-04-02 13:50 +0200
Subject[PATCH v3 3/4] arm64: defconfig: enable several common USB network adapters
Message-ID<rjsdY-37b-9@gated-at.bofh.it>
In reply to#1369930
From: Akira Tsukamoto <akira.tsukamoto@linaro.org>

The arm64 system is likely to be used as a host computer instead of
embedded devices and adding USB-Ethernet dongles to make it behave as
host PC is mandatory.

Changelog:
v2: Changed drivers to be as modules instead of built-in.

Signed-off-by: Akira Tsukamoto <akira.tsukamoto@linaro.org>
Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
---
 arch/arm64/configs/defconfig | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index e4952c5..f31a44f 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -117,6 +117,16 @@ CONFIG_RAVB=y
 CONFIG_SMC91X=y
 CONFIG_SMSC911X=y
 CONFIG_MICREL_PHY=y
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_RTL8152=m
+CONFIG_USB_USBNET=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_SR9800=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_MCS7830=m
 # CONFIG_WLAN is not set
 CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_GPIO=y
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1369933 — [PATCH v3 4/4] arm64: defconfig: enable configs for WLAN and TI WL1835 as modules

FromGuodong Xu <guodong.xu@linaro.org>
Date2016-04-02 13:50 +0200
Subject[PATCH v3 4/4] arm64: defconfig: enable configs for WLAN and TI WL1835 as modules
Message-ID<rjsdZ-37b-15@gated-at.bofh.it>
In reply to#1369930
This patch enables TI WL1835 and builds as module. It also enables
CFG80211, MAC80211, RFKILL and several CRYPTOs which are required
by WLAN.

96boards HiKey uses TI WLAN/BT combo module WL1835MOD.

Signed-off-by: Guodong Xu <guodong.xu@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
---
 arch/arm64/configs/defconfig | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index f31a44f..aa1909d 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -83,7 +83,10 @@ CONFIG_IP_PNP_BOOTP=y
 # CONFIG_INET_LRO is not set
 # CONFIG_IPV6 is not set
 CONFIG_BPF_JIT=y
-# CONFIG_WIRELESS is not set
+CONFIG_CFG80211=m
+CONFIG_MAC80211=m
+CONFIG_MAC80211_LEDS=y
+CONFIG_RFKILL=m
 CONFIG_NET_9P=y
 CONFIG_NET_9P_VIRTIO=y
 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
@@ -127,7 +130,8 @@ CONFIG_USB_NET_SMSC75XX=m
 CONFIG_USB_NET_SMSC95XX=m
 CONFIG_USB_NET_PLUSB=m
 CONFIG_USB_NET_MCS7830=m
-# CONFIG_WLAN is not set
+CONFIG_WL18XX=m
+CONFIG_WLCORE_SDIO=m
 CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_GPIO=y
 # CONFIG_SERIO_SERPORT is not set
-- 
1.9.1

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web