kernel: add missing module for mmc-spi
[openwrt/openwrt.git] / package / kernel / linux / modules / spi.mk
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 SPI_MENU:=SPI Support
9
10 define KernelPackage/mmc-spi
11 SUBMENU:=$(SPI_MENU)
12 TITLE:=MMC/SD over SPI Support
13 DEPENDS:=+kmod-mmc +kmod-lib-crc-itu-t +kmod-lib-crc7
14 KCONFIG:=CONFIG_MMC_SPI \
15 CONFIG_SPI=y \
16 CONFIG_SPI_MASTER=y
17 FILES:=\
18 $(if $(CONFIG_OF),$(LINUX_DIR)/drivers/mmc/host/of_mmc_spi.ko) \
19 $(LINUX_DIR)/drivers/mmc/host/mmc_spi.ko
20 AUTOLOAD:=$(call AutoLoad,90,$(if $(CONFIG_OF),of_mmc_spi) mmc_spi)
21 endef
22
23 define KernelPackage/mmc-spi/description
24 Kernel support for MMC/SD over SPI
25 endef
26
27 $(eval $(call KernelPackage,mmc-spi))
28
29
30 define KernelPackage/spi-bitbang
31 SUBMENU:=$(SPI_MENU)
32 TITLE:=Serial Peripheral Interface bitbanging library
33 KCONFIG:=CONFIG_SPI_BITBANG \
34 CONFIG_SPI=y \
35 CONFIG_SPI_MASTER=y
36 FILES:=$(LINUX_DIR)/drivers/spi/spi-bitbang.ko
37 AUTOLOAD:=$(call AutoLoad,91,spi-bitbang)
38 endef
39
40 define KernelPackage/spi-bitbang/description
41 This package contains the SPI bitbanging library
42 endef
43
44 $(eval $(call KernelPackage,spi-bitbang))
45
46
47 define KernelPackage/spi-gpio-old
48 SUBMENU:=$(SPI_MENU)
49 TITLE:=Old GPIO based bitbanging SPI controller (DEPRECATED)
50 DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
51 KCONFIG:=CONFIG_SPI_GPIO_OLD
52 FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio_old.ko
53 AUTOLOAD:=$(call AutoLoad,92,spi_gpio_old)
54 endef
55
56 define KernelPackage/spi-gpio-old/description
57 This package contains the GPIO based bitbanging SPI controller driver
58 endef
59
60 $(eval $(call KernelPackage,spi-gpio-old))
61
62 define KernelPackage/spi-gpio
63 SUBMENU:=$(SPI_MENU)
64 TITLE:=GPIO-based bitbanging SPI Master
65 DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
66 KCONFIG:=CONFIG_SPI_GPIO
67 FILES:=$(LINUX_DIR)/drivers/spi/spi-gpio.ko
68 AUTOLOAD:=$(call AutoLoad,92,spi-gpio)
69 endef
70
71 define KernelPackage/spi-gpio/description
72 This package contains the GPIO-based bitbanging SPI Master
73 endef
74
75 $(eval $(call KernelPackage,spi-gpio))
76
77 define KernelPackage/spi-dev
78 SUBMENU:=$(SPI_MENU)
79 TITLE:=User mode SPI device driver
80 KCONFIG:=CONFIG_SPI_SPIDEV \
81 CONFIG_SPI=y \
82 CONFIG_SPI_MASTER=y
83 FILES:=$(LINUX_DIR)/drivers/spi/spidev.ko
84 AUTOLOAD:=$(call AutoLoad,93,spidev)
85 endef
86
87 define KernelPackage/spi-dev/description
88 This package contains the user mode SPI device driver
89 endef
90
91 $(eval $(call KernelPackage,spi-dev))
92