2007-01-05 15:28:16 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-16 17:45:15 +00:00
|
|
|
I2C_MENU:=I2C support
|
2007-01-05 15:28:16 +00:00
|
|
|
|
|
|
|
define KernelPackage/i2c-core
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(I2C_MENU)
|
2007-01-05 15:28:16 +00:00
|
|
|
TITLE:=I2C support
|
2007-07-23 01:22:40 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_I2C \
|
|
|
|
CONFIG_I2C_CHARDEV
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/i2c/i2c-core.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/i2c/i2c-dev.$(LINUX_KMOD_SUFFIX)
|
2007-09-17 14:48:01 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,51,i2c-core i2c-dev)
|
2007-01-05 15:28:16 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/i2c-core/description
|
|
|
|
Kernel modules for I2C support
|
|
|
|
endef
|
|
|
|
|
2007-01-05 15:28:16 +00:00
|
|
|
$(eval $(call KernelPackage,i2c-core))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-17 14:48:01 +00:00
|
|
|
define KernelPackage/i2c-algo-bit
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(I2C_MENU)
|
2007-09-17 14:48:01 +00:00
|
|
|
TITLE:=I2C bit-banging interfaces
|
2007-04-01 14:36:24 +00:00
|
|
|
DEPENDS:=kmod-i2c-core
|
2007-09-17 14:48:01 +00:00
|
|
|
KCONFIG:=CONFIG_I2C_ALGOBIT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/algos/i2c-algo-bit.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,55,i2c-algo-bit)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-bit/description
|
|
|
|
Kernel modules for I2C bit-banging interfaces.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-algo-bit))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pca
|
|
|
|
SUBMENU:=$(I2C_MENU)
|
|
|
|
TITLE:=I2C PCA 9564 interfaces
|
|
|
|
DEPENDS:=kmod-i2c-core
|
|
|
|
KCONFIG:=CONFIG_I2C_ALGOPCA
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/algos/i2c-algo-pca.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,55,i2c-algo-pca)
|
2007-01-05 15:28:16 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-17 14:48:01 +00:00
|
|
|
define KernelPackage/i2c-algo-pca/description
|
|
|
|
Kernel modules for I2C PCA 9564 interfaces.
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-17 14:48:01 +00:00
|
|
|
$(eval $(call KernelPackage,i2c-algo-pca))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pcf
|
|
|
|
SUBMENU:=$(I2C_MENU)
|
|
|
|
TITLE:=I2C PCF 8584 interfaces
|
|
|
|
DEPENDS:=kmod-i2c-core
|
|
|
|
KCONFIG:=CONFIG_I2C_ALGOPCF
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/algos/i2c-algo-pcf.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,55,i2c-algo-pcf)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-algo-pcf/description
|
|
|
|
Kernel modules for I2C PCF 8584 interfaces
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-algo-pcf))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/i2c-gpio
|
|
|
|
SUBMENU:=$(I2C_MENU)
|
|
|
|
TITLE:=GPIO-based bitbanging I2C
|
2009-02-04 02:00:41 +00:00
|
|
|
DEPENDS:=@GPIO_SUPPORT +kmod-i2c-algo-bit
|
2007-09-17 14:48:01 +00:00
|
|
|
KCONFIG:=CONFIG_I2C_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/busses/i2c-gpio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,59,i2c-gpio)
|
|
|
|
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))
|
2007-01-05 15:28:16 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
define KernelPackage/i2c-scx200
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(I2C_MENU)
|
2007-09-22 04:27:35 +00:00
|
|
|
TITLE:=Geode SCx200 I2C using GPIO pins
|
2009-02-04 02:00:41 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT @TARGET_x86 +kmod-i2c-algo-bit
|
2009-03-05 21:45:59 +00:00
|
|
|
KCONFIG:=CONFIG_SCx200_I2C \
|
|
|
|
CONFIG_SCx200_I2C_SCL=12 \
|
|
|
|
CONFIG_SCx200_I2C_SDA=13
|
2007-09-22 04:27:35 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/busses/scx200_i2c.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,59,scx200_i2c)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/i2c-scx200/description
|
|
|
|
Kernel module for I2C using GPIO pins on the Geode SCx200 processors.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,i2c-scx200))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/i2c-scx200-acb
|
|
|
|
SUBMENU:=$(I2C_MENU)
|
|
|
|
TITLE:=Geode SCx200 ACCESS.bus support
|
2009-02-04 02:00:41 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT @TARGET_x86 +kmod-i2c-algo-bit
|
2007-09-17 14:48:01 +00:00
|
|
|
KCONFIG:=CONFIG_SCx200_ACB
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/i2c/busses/scx200_acb.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,59,scx200_acb)
|
2007-04-16 08:03:53 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-22 04:27:35 +00:00
|
|
|
define KernelPackage/i2c-scx200-acb/description
|
2008-04-29 17:18:21 +00:00
|
|
|
Kernel module for I2C using the ACCESS.bus controllers on the Geode SCx200
|
2007-09-17 14:48:01 +00:00
|
|
|
and SC1100 processors and the CS5535 and CS5536 Geode companion devices.
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-22 04:27:35 +00:00
|
|
|
$(eval $(call KernelPackage,i2c-scx200-acb))
|
|
|
|
|