2021-02-10 13:52:34 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2014-01-04 12:47:51 +00:00
|
|
|
#
|
2016-01-09 16:19:21 +00:00
|
|
|
# Copyright (C) 2013-2016 OpenWrt.org
|
2014-01-04 12:47:51 +00:00
|
|
|
|
2021-01-17 22:26:33 +00:00
|
|
|
define KernelPackage/mfd-ac100
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=X-Powers AC100 MFD support
|
|
|
|
DEPENDS:=@TARGET_sunxi
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_MFD_AC100
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/mfd/ac100.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ac100)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/mfd-ac100/description
|
|
|
|
Support for the X-Powers AC100 RTC/audio chip
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mfd-ac100))
|
|
|
|
|
|
|
|
define KernelPackage/rtc-ac100
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=X-Powers AC100 RTC support
|
|
|
|
DEPENDS:=@TARGET_sunxi +kmod-mfd-ac100
|
|
|
|
$(call AddDepends/rtc)
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_RTC_DRV_AC100 \
|
|
|
|
CONFIG_RTC_CLASS=y
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/rtc/rtc-ac100.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,rtc-ac100)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/rtc-ac100/description
|
|
|
|
Support for the X-Powers AC100 RTC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,rtc-ac100))
|
|
|
|
|
2014-01-04 12:47:51 +00:00
|
|
|
define KernelPackage/rtc-sunxi
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Sunxi SoC built-in RTC support
|
2022-09-01 15:18:19 +00:00
|
|
|
DEPENDS:=@(TARGET_sunxi&&RTC_SUPPORT)
|
2014-01-04 12:47:51 +00:00
|
|
|
KCONFIG:= \
|
2017-07-15 20:51:25 +00:00
|
|
|
CONFIG_RTC_DRV_SUNXI \
|
|
|
|
CONFIG_RTC_CLASS=y
|
2014-01-04 12:47:51 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/rtc/rtc-sunxi.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,rtc-sunxi)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/rtc-sunxi/description
|
|
|
|
Support for the AllWinner sunXi SoC's onboard RTC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,rtc-sunxi))
|
|
|
|
|
2014-09-21 16:28:06 +00:00
|
|
|
define KernelPackage/sunxi-ir
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2022-09-02 15:18:10 +00:00
|
|
|
TITLE:=Sunxi SoC built-in IR support
|
2022-09-01 15:18:19 +00:00
|
|
|
DEPENDS:=@(TARGET_sunxi&&RTC_SUPPORT) +kmod-input-core
|
2014-09-21 16:28:06 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_MEDIA_SUPPORT=y \
|
|
|
|
CONFIG_MEDIA_RC_SUPPORT=y \
|
|
|
|
CONFIG_RC_DEVICES=y \
|
2022-09-02 15:18:10 +00:00
|
|
|
CONFIG_RC_CORE=y \
|
2014-09-21 16:28:06 +00:00
|
|
|
CONFIG_IR_SUNXI
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/media/rc/sunxi-cir.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,sunxi-cir)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sunxi-ir/description
|
2022-09-02 15:18:10 +00:00
|
|
|
Support for the AllWinner sunXi SoC's onboard IR
|
2014-09-21 16:28:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sunxi-ir))
|
|
|
|
|
2014-01-04 16:30:56 +00:00
|
|
|
define KernelPackage/ata-sunxi
|
|
|
|
TITLE:=AllWinner sunXi AHCI SATA support
|
|
|
|
SUBMENU:=$(BLOCK_MENU)
|
2015-08-21 10:08:07 +00:00
|
|
|
DEPENDS:=@TARGET_sunxi +kmod-ata-ahci-platform +kmod-scsi-core
|
|
|
|
KCONFIG:=CONFIG_AHCI_SUNXI
|
2014-01-04 16:30:56 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/ata/ahci_sunxi.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,ahci_sunxi,1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ata-sunxi/description
|
|
|
|
SATA support for the AllWinner sunXi SoC's onboard AHCI SATA
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ata-sunxi))
|
2014-01-04 17:33:44 +00:00
|
|
|
|
|
|
|
define KernelPackage/sun4i-emac
|
|
|
|
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
|
|
|
TITLE:=AllWinner EMAC Ethernet support
|
2017-05-04 05:00:06 +00:00
|
|
|
DEPENDS:=@TARGET_sunxi +kmod-of-mdio +kmod-libphy
|
2014-01-04 17:33:44 +00:00
|
|
|
KCONFIG:=CONFIG_SUN4I_EMAC
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/ethernet/allwinner/sun4i-emac.ko
|
|
|
|
AUTOLOAD:=$(call AutoProbe,sun4i-emac)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sun4i-emac))
|
|
|
|
|
2015-08-21 13:16:11 +00:00
|
|
|
define KernelPackage/sound-soc-sunxi
|
|
|
|
TITLE:=AllWinner built-in SoC sound support
|
2017-05-04 05:00:06 +00:00
|
|
|
KCONFIG:=CONFIG_SND_SUN4I_CODEC
|
2016-01-09 16:19:21 +00:00
|
|
|
FILES:=$(LINUX_DIR)/sound/soc/sunxi/sun4i-codec.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,sun4i-codec)
|
|
|
|
DEPENDS:=@TARGET_sunxi +kmod-sound-soc-core
|
2015-08-21 13:16:11 +00:00
|
|
|
$(call AddDepends/sound)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-soc-sunxi/description
|
|
|
|
Kernel support for AllWinner built-in SoC audio
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-soc-sunxi))
|
2019-10-08 13:42:18 +00:00
|
|
|
|
|
|
|
define KernelPackage/sound-soc-sunxi-spdif
|
|
|
|
TITLE:=Allwinner A10 SPDIF Support
|
|
|
|
KCONFIG:=CONFIG_SND_SUN4I_SPDIF
|
|
|
|
FILES:=$(LINUX_DIR)/sound/soc/sunxi/sun4i-spdif.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,65,sun4i-spdif)
|
|
|
|
DEPENDS:=@TARGET_sunxi +kmod-sound-soc-spdif
|
|
|
|
$(call AddDepends/sound)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sound-soc-sunxi-spdif/description
|
|
|
|
Kernel support for Allwinner A10 SPDIF Support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sound-soc-sunxi-spdif))
|