ALT Linux kernel packages development
 help / color / mirror / Atom feed
From: Alexey Sheplyakov <asheplyakov@basealt.ru>
To: devel-kernel@lists.altlinux.org
Cc: rst@basealt.ru, nir@basealt.ru, sin@basealt.ru
Subject: [d-kernel] [PATCH 7/7] config-aarch64: enabled Baikal-M specific drivers
Date: Tue, 23 Aug 2022 14:43:24 +0400
Message-ID: <20220823104318.2338489-8-asheplyakov@basealt.ru> (raw)
In-Reply-To: <20220823104318.2338489-1-asheplyakov@basealt.ru>

* PCI_BAIKAL: Baikal-M PCI-E controller driver.
* PCIE_DW_PLAT_HOST: required for PCI_BAIKAL.
* SND_HDA_BAIKAL_M: integrated HD audio controller.
* SND_DESIGNWARE_PCM: PCM extension for SND_DESIGNWARE_I2S
  Set to y, however this is a driver option. The driver is
  compiled as a module anyway.
* DRM_STDP4028: LVDS to display port bridge driver
  (for Elpitech ET101 boards).
* DRM_PANEL_LVDS: for TF307 boards with LVDS.
* SERDEV_SERIO, SERIOPS2MULT: Elpitech laptop keyboard
  (and touchpad). These drivers are compiled into
  the kernel so the keyboard works in early userspace.

Signed-off-by: Alexey Sheplyakov <asheplyakov@basealt.ru>
---
 config-aarch64 | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/config-aarch64 b/config-aarch64
index d91481b3711a..a23500fdf356 100644
--- a/config-aarch64
+++ b/config-aarch64
@@ -374,6 +374,8 @@ CONFIG_INPUT_PM8941_PWRKEY=m
 CONFIG_INPUT_RK805_PWRKEY=m
 CONFIG_INPUT_HISI_POWERKEY=y
 CONFIG_SERIO_AMBAKMI=y
+CONFIG_SERIO_PS2MULT=y
+CONFIG_SERDEV_SERIO=y
 # CONFIG_SERIO_APBPS2 is not set
 CONFIG_SERIO_SUN4I_PS2=m
 # CONFIG_SERIAL_8250_ASPEED_VUART is not set
@@ -749,7 +751,7 @@ CONFIG_DRM_TEGRA=m
 # CONFIG_DRM_TEGRA_DEBUG is not set
 # CONFIG_DRM_TEGRA_STAGING is not set
 # CONFIG_DRM_PANEL_ARM_VERSATILE is not set
-# CONFIG_DRM_PANEL_LVDS is not set
+CONFIG_DRM_PANEL_LVDS=m
 CONFIG_DRM_PANEL_SIMPLE=m
 # CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set
 # CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
@@ -789,6 +791,7 @@ CONFIG_DRM_PANEL_SIMPLE=m
 # CONFIG_DRM_CDNS_DSI is not set
 CONFIG_DRM_DUMB_VGA_DAC=m
 CONFIG_DRM_LVDS_ENCODER=m
+CONFIG_DRM_STDP4028=m
 # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
 # CONFIG_DRM_NXP_PTN3460 is not set
 # CONFIG_DRM_PARADE_PS8622 is not set
@@ -828,6 +831,8 @@ CONFIG_FB_ARMCLCD=y
 CONFIG_SND_BCM2835_SOC_I2S=m
 CONFIG_SND_KIRKWOOD_SOC=m
 CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB=m
+CONFIG_SND_DESIGNWARE_I2S=m
+CONFIG_SND_DESIGNWARE_PCM=y
 # CONFIG_SND_SOC_MT2701 is not set
 # CONFIG_SND_SOC_MT6797 is not set
 # CONFIG_SND_SOC_MT8173 is not set
@@ -864,7 +869,7 @@ CONFIG_SND_SOC_ES8328_I2C=m
 CONFIG_SND_SOC_ES8328_SPI=m
 CONFIG_SND_SOC_MAX98095=m
 CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m
-# CONFIG_SND_AUDIO_GRAPH_CARD is not set
+CONFIG_SND_AUDIO_GRAPH_CARD=m
 CONFIG_USB_COMMON=y
 # CONFIG_USB_XHCI_HISTB is not set
 # CONFIG_USB_XHCI_MTK is not set
@@ -1539,11 +1544,14 @@ CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY=m
 CONFIG_ROCKCHIP_OTP=m
 CONFIG_PCIE_ROCKCHIP_EP=y
 CONFIG_PCIE_BRCMSTB=y
+CONFIG_PCIE_DW_PLAT_HOST=y
 CONFIG_PCIE_DW_PLAT_EP=y
+CONFIG_PCI_BAIKAL=y
 CONFIG_DRM_LVDS_CODEC=m
 CONFIG_DRM_MEDIATEK=m
 CONFIG_DRM_MEDIATEK_HDMI=m
 CONFIG_SND_HDA_TEGRA=m
+CONFIG_SND_HDA_BAIKAL_M=m
 CONFIG_SND_MESON_AIU=m
 CONFIG_SND_MESON_AXG_FIFO=m
 CONFIG_SND_MESON_AXG_FRDDR=m
-- 
2.32.0



  parent reply	other threads:[~2022-08-23 10:43 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-23 10:43 [d-kernel] p10/un-def: поддержка ноутбука Элпитех (и SDK-M 5.5) Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 1/7] arm64: dts: wiped out obsolete Baikal-M device trees Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 2/7] net: stmmac: removed obsolete Baikal-M specific mdio reset Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 3/7] Added PCI-E driver for Baikal-M with SDK-M 5.5 firmware Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 4/7] input: new driver - serdev-serio Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 5/7] drm/bridge: dw-hdmi: refreshed hw revision 0x2a support patch Alexey Sheplyakov
2022-08-23 10:43 ` [d-kernel] [PATCH 6/7] arm64/configs: refreshed Baikal-M specific config Alexey Sheplyakov
2022-08-23 10:43 ` Alexey Sheplyakov [this message]
2022-08-23 15:50 ` [d-kernel] p10/un-def: поддержка ноутбука Элпитех (и SDK-M 5.5) Vitaly Chikunov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220823104318.2338489-8-asheplyakov@basealt.ru \
    --to=asheplyakov@basealt.ru \
    --cc=devel-kernel@lists.altlinux.org \
    --cc=nir@basealt.ru \
    --cc=rst@basealt.ru \
    --cc=sin@basealt.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux kernel packages development

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel-kernel/0 devel-kernel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel-kernel devel-kernel/ http://lore.altlinux.org/devel-kernel \
		devel-kernel@altlinux.org devel-kernel@altlinux.ru devel-kernel@altlinux.com
	public-inbox-index devel-kernel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel-kernel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git