2007-01-05 23:28:16 +08:00
|
|
|
#
|
2009-08-15 17:12:37 +08:00
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
2007-01-05 23:28:16 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-17 01:45:15 +08:00
|
|
|
I2C_MENU:=I2C support
|
2007-01-05 23:28:16 +08:00
|
|
|
|
2009-08-15 17:12:37 +08:00
|
|
|
ModuleConfVar=$(word 1,$(subst :,$(space),$(1)))
|
2013-02-23 19:30:30 +08:00
|
|
|
ModuleFullPath=$(LINUX_DIR)/$(word 2,$(subst :,$(space),$(1))).ko
|
2009-08-15 17:12:37 +08:00
|
|
|
ModuleKconfig=$(foreach mod,$(1),$(call ModuleConfVar,$(mod)))
|
|
|
|
ModuleFiles=$(foreach mod,$(1),$(call ModuleFullPath,$(mod)))
|
2009-08-16 20:39:47 +08:00
|
|
|
ModuleAuto=$(call AutoLoad,$(1),$(foreach mod,$(2),$(basename $(notdir $(call ModuleFullPath,$(mod))))),$(3))
|
2009-08-15 17:12:37 +08:00
|
|
|
|
|
|
|
define i2c_defaults
|
2007-09-17 01:45:15 +08:00
|
|
|
SUBMENU:=$(I2C_MENU)
|
2009-08-15 17:12:37 +08:00
|
|
|
KCONFIG:=$(call ModuleKconfig,$(1))
|
|
|
|
FILES:=$(call ModuleFiles,$(1))
|
|
|
|
AUTOLOAD:=$(call ModuleAuto,$(2),$(1),$(3))
|
|
|
|
endef
|
|
|
|
|
|
|
|
I2C_CORE_MODULES:= \
|
|
|
|
CONFIG_I2C:drivers/i2c/i2c-core \
|
|
|
|
CONFIG_I2C_CHARDEV:drivers/i2c/i2c-dev
|
|
|
|
|
2013-11-12 06:03:35 +08:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,3.12.0)),1)
|
|
|
|
ifeq ($(CONFIG_OF),y)
|
|
|
|
I2C_CORE_MODULES+=CONFIG_OF_I2C:drivers/of/of_i2c
|
|
|
|
endif
|
2013-04-07 00:55:25 +08:00
|
|
|
endif
|
|
|
|
|
2009-08-15 17:12:37 +08:00
|
|
|
define KernelPackage/i2c-core
|
|
|
|
$(call i2c_defaults,$(I2C_CORE_MODULES),51)
|
2013-09-18 05:45:17 +08:00
|
|
|
AUTOLOAD:=
|
2007-01-05 23:28:16 +08:00
|
|
|
TITLE:=I2C support
|
|
|
|
endef
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define KernelPackage/i2c-core/description
|
|
|
|
Kernel modules for I2C support
|
|
|
|
endef
|
|
|
|
|
2007-01-05 23:28:16 +08:00
|
|
|
$(eval $(call KernelPackage,i2c-core))
|
|
|
|
|
2007-08-28 19:44:15 +08:00
|
|
|
|
2009-08-15 17:12:37 +08:00
|
|
|
I2C_ALGOBIT_MODULES:= \
|
|
|
|
CONFIG_I2C_ALGOBIT:drivers/i2c/algos/i2c-algo-bit
|
|
|
|
|
2007-09-17 22:48:01 +08:00
|
|
|
define KernelPackage/i2c-algo-bit
|
2009-08-15 17:12:37 +08:00
|
|
|
$(call i2c_defaults,$(I2C_ALGOBIT_MODULES),55)
|
2007-09-17 22:48:01 +08:00
|
|
|
TITLE:=I2C bit-banging interfaces
|
2007-04-01 22:36:24 +08:00
|
|
|
DEPENDS:=kmod-i2c-core
|
2007-09-17 22:48:01 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-bit/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for I2C bit-banging interfaces
|
2007-09-17 22:48:01 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-algo-bit))
|
|
|
|
|
2012-07-29 21:20:47 +08:00
|
|
|
|
|
|
|
I2C_ALGOPCA_MODULES:= \
|
|
|
|
CONFIG_I2C_ALGOPCA:drivers/i2c/algos/i2c-algo-pca
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pca
|
|
|
|
$(call i2c_defaults,$(I2C_ALGOPCA_MODULES),55)
|
|
|
|
TITLE:=I2C PCA 9564 interfaces
|
|
|
|
DEPENDS:=kmod-i2c-core
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pca/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for I2C PCA 9564 interfaces
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-algo-pca))
|
|
|
|
|
|
|
|
|
|
|
|
I2C_ALGOPCF_MODULES:= \
|
|
|
|
CONFIG_I2C_ALGOPCF:drivers/i2c/algos/i2c-algo-pcf
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pcf
|
|
|
|
$(call i2c_defaults,$(I2C_ALGOPCF_MODULES),55)
|
|
|
|
TITLE:=I2C PCF 8584 interfaces
|
|
|
|
DEPENDS:=kmod-i2c-core
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pcf/description
|
|
|
|
Kernel modules for I2C PCF 8584 interfaces
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-algo-pcf))
|
|
|
|
|
|
|
|
|
|
|
|
I2C_GPIO_MODULES:= \
|
|
|
|
CONFIG_I2C_GPIO:drivers/i2c/busses/i2c-gpio
|
|
|
|
|
|
|
|
define KernelPackage/i2c-gpio
|
|
|
|
$(call i2c_defaults,$(I2C_GPIO_MODULES),59)
|
|
|
|
TITLE:=GPIO-based bitbanging I2C
|
|
|
|
DEPENDS:=@GPIO_SUPPORT +kmod-i2c-algo-bit
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-gpio/description
|
|
|
|
Kernel modules for a very simple bitbanging I2C driver utilizing the
|
|
|
|
arch-neutral GPIO API to control the SCL and SDA lines.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-gpio))
|
|
|
|
|
|
|
|
I2C_MPC_MODULES:=\
|
|
|
|
CONFIG_I2C_MPC:drivers/i2c/busses/i2c-mpc
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mpc
|
|
|
|
$(call i2c_defaults,$(I2C_MPC_MODULES),59)
|
|
|
|
TITLE:=MPC I2C accessors
|
2013-07-26 09:09:50 +08:00
|
|
|
DEPENDS:=@TARGET_mpc52xx||TARGET_mpc83xx||TARGET_mpc85xx +kmod-i2c-core
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mpc/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel module for Freescale MPC52xx MPC83xx MPC85xx I2C accessors
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mpc))
|
|
|
|
|
|
|
|
I2C_IBM_IIC_MODULES:=\
|
|
|
|
CONFIG_I2C_IBM_IIC:drivers/i2c/busses/i2c-ibm_iic
|
|
|
|
|
|
|
|
define KernelPackage/i2c-ibm-iic
|
|
|
|
$(call i2c_defaults,$(OF_I2C_MODULES),59)
|
|
|
|
TITLE:=IBM PPC 4xx on-chip I2C interface support
|
2013-04-03 20:51:12 +08:00
|
|
|
DEPENDS:=@TARGET_ppc40x||TARGET_ppc4xx +kmod-i2c-core
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-ibm-iic/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel module for IIC peripheral found on embedded IBM PPC4xx based systems
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-ibm-iic))
|
|
|
|
|
|
|
|
I2C_MV64XXX_MODULES:=\
|
|
|
|
CONFIG_I2C_MV64XXX:drivers/i2c/busses/i2c-mv64xxx
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mv64xxx
|
|
|
|
$(call i2c_defaults,$(I2C_MV64XXX_MODULES),59)
|
|
|
|
TITLE:=Orion Platform I2C interface support
|
2013-04-03 20:58:06 +08:00
|
|
|
DEPENDS:=@TARGET_kirkwood||TARGET_orion||TARGET_mvebu +kmod-i2c-core
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mv64xxx/description
|
2013-01-09 06:20:21 +08:00
|
|
|
Kernel module for I2C interface on the Kirkwood, Orion and Armada XP/370
|
2013-07-26 09:09:50 +08:00
|
|
|
family processors
|
2012-07-29 21:20:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mv64xxx))
|
|
|
|
|
|
|
|
|
2011-09-30 20:55:26 +08:00
|
|
|
I2C_TINY_USB_MODULES:= \
|
|
|
|
CONFIG_I2C_TINY_USB:drivers/i2c/busses/i2c-tiny-usb
|
|
|
|
|
|
|
|
define KernelPackage/i2c-tiny-usb
|
|
|
|
$(call i2c_defaults,$(I2C_TINY_USB_MODULES),59)
|
|
|
|
TITLE:=I2C Tiny USB adaptor
|
2013-07-18 21:57:40 +08:00
|
|
|
DEPENDS:=@USB_SUPPORT kmod-i2c-core +kmod-usb-core
|
2011-09-30 20:55:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-tiny-usb/description
|
|
|
|
Kernel module for the I2C Tiny USB adaptor developed
|
2013-07-26 09:09:50 +08:00
|
|
|
by Till Harbaum (http://www.harbaum.org/till/i2c_tiny_usb)
|
2011-09-30 20:55:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-tiny-usb))
|
|
|
|
|
|
|
|
I2C_MUX_MODULES:= \
|
|
|
|
CONFIG_I2C_MUX:drivers/i2c/i2c-mux
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mux
|
|
|
|
$(call i2c_defaults,$(I2C_MUX_MODULES),51)
|
|
|
|
TITLE:=I2C bus multiplexing support
|
|
|
|
DEPENDS:=kmod-i2c-core
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mux/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for I2C bus multiplexing support
|
2011-09-30 20:55:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mux))
|
|
|
|
|
2012-11-12 02:40:43 +08:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.6.0)),1)
|
|
|
|
I2C_MUX_GPIO_MODULES:= \
|
|
|
|
CONFIG_I2C_MUX_GPIO:drivers/i2c/muxes/i2c-mux-gpio
|
|
|
|
else
|
2011-10-02 06:36:47 +08:00
|
|
|
I2C_MUX_GPIO_MODULES:= \
|
|
|
|
CONFIG_I2C_MUX_GPIO:drivers/i2c/muxes/gpio-i2cmux
|
2012-11-12 02:40:43 +08:00
|
|
|
endif
|
2011-10-02 06:36:47 +08:00
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-gpio
|
|
|
|
$(call i2c_defaults,$(I2C_MUX_GPIO_MODULES),51)
|
|
|
|
TITLE:=GPIO-based I2C mux/switches
|
|
|
|
DEPENDS:=kmod-i2c-mux
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-gpio/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for GENERIC_GPIO I2C bus mux/switching devices
|
2011-10-02 06:36:47 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mux-gpio))
|
|
|
|
|
2012-10-24 21:04:57 +08:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.6.0)),1)
|
|
|
|
I2C_MUX_PREFIX:=i2c-mux-
|
|
|
|
endif
|
|
|
|
|
2011-09-30 20:55:26 +08:00
|
|
|
I2C_MUX_PCA954x_MODULES:= \
|
2012-10-24 21:04:57 +08:00
|
|
|
CONFIG_I2C_MUX_PCA954x:drivers/i2c/muxes/$(I2C_MUX_PREFIX)pca954x
|
2011-09-30 20:55:26 +08:00
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-pca954x
|
|
|
|
$(call i2c_defaults,$(I2C_MUX_PCA954x_MODULES),51)
|
|
|
|
TITLE:=Philips PCA954x I2C mux/switches
|
|
|
|
DEPENDS:=kmod-i2c-mux
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-pca954x/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for PCA954x I2C bus mux/switching devices
|
2011-09-30 20:55:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mux-pca954x))
|
2013-07-26 09:09:50 +08:00
|
|
|
|
2011-09-30 20:55:26 +08:00
|
|
|
|
|
|
|
I2C_MUX_PCA9541_MODULES:= \
|
2012-10-24 21:04:57 +08:00
|
|
|
CONFIG_I2C_MUX_PCA9541:drivers/i2c/muxes/$(I2C_MUX_PREFIX)pca9541
|
2011-09-30 20:55:26 +08:00
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-pca9541
|
|
|
|
$(call i2c_defaults,$(I2C_MUX_PCA9541_MODULES),51)
|
|
|
|
TITLE:=Philips PCA9541 I2C mux/switches
|
|
|
|
DEPENDS:=kmod-i2c-mux
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-mux-pca9541/description
|
2013-07-26 09:09:50 +08:00
|
|
|
Kernel modules for PCA9541 I2C bus mux/switching devices
|
2011-09-30 20:55:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-mux-pca9541))
|