2010-04-24 13:34:51 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
define KernelPackage/mmc-at91
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=MMC/SD Card Support on AT91
|
|
|
|
DEPENDS:=@TARGET_at91 +kmod-mmc
|
|
|
|
KCONFIG:=CONFIG_MMC_AT91
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/mmc/host/at91_mci.ko
|
2010-04-24 13:34:51 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,at91_mci,1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/mmc-at91/description
|
|
|
|
Kernel support for MMC/SD cards on the AT91 target
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mmc-at91))
|
2010-06-18 22:12:33 +00:00
|
|
|
|
|
|
|
define KernelPackage/pwm-atmel
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=PWM on atmel SoC
|
|
|
|
DEPENDS:=@TARGET_at91
|
2012-07-28 20:47:08 +00:00
|
|
|
KCONFIG:=CONFIG_ATMEL_PWM
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/misc/atmel_pwm.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,51,atmel_pwm)
|
2010-06-18 22:12:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pwm-atmel/description
|
|
|
|
Kernel module to use the PWM channel on ATMEL SoC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pwm-atmel))
|
2010-12-23 15:20:26 +00:00
|
|
|
|
|
|
|
define KernelPackage/at91-adc
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=ADC on atmel SoC
|
2013-10-01 22:37:17 +00:00
|
|
|
DEPENDS:=@TARGET_at91 +kmod-iio-core
|
2010-12-23 15:20:26 +00:00
|
|
|
KCONFIG:=CONFIG_AT91_ADC
|
2013-10-01 22:37:17 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/iio/adc/at91_adc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,at91_adc)
|
2010-12-23 15:20:26 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/at91-adc/description
|
|
|
|
Kernel module to use the ADC channels of SoC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,at91-adc))
|
2012-07-29 13:20:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
I2C_AT91_MODULES:=\
|
|
|
|
CONFIG_I2C_AT91:drivers/i2c/busses/i2c-at91
|
|
|
|
|
|
|
|
define KernelPackage/at91-i2c
|
|
|
|
$(call i2c_defaults,$(I2C_AT91_MODULES),55)
|
|
|
|
TITLE:=I2C (TWI) master driver for Atmel AT91
|
|
|
|
DEPENDS:=@TARGET_at91 +kmod-i2c-core
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/at91-i2c/description
|
|
|
|
Kernel module to use the I2C (TWI) master driver for Atmel AT91
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,at91-i2c))
|
|
|
|
|