kernel: remove LINUX_4_9 dependency of kmod-dax
[openwrt/openwrt.git] / package / kernel / linux / modules / block.mk
1 #
2 # Copyright (C) 2006-2012 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 BLOCK_MENU:=Block Devices
9
10 define KernelPackage/aoe
11 SUBMENU:=$(BLOCK_MENU)
12 TITLE:=ATA over Ethernet support
13 KCONFIG:=CONFIG_ATA_OVER_ETH
14 FILES:=$(LINUX_DIR)/drivers/block/aoe/aoe.ko
15 AUTOLOAD:=$(call AutoLoad,30,aoe)
16 endef
17
18 define KernelPackage/aoe/description
19 Kernel support for ATA over Ethernet
20 endef
21
22 $(eval $(call KernelPackage,aoe))
23
24
25 define KernelPackage/ata-core
26 SUBMENU:=$(BLOCK_MENU)
27 TITLE:=Serial and Parallel ATA support
28 DEPENDS:=@PCI_SUPPORT||TARGET_sunxi +kmod-scsi-core
29 KCONFIG:=CONFIG_ATA
30 FILES:=$(LINUX_DIR)/drivers/ata/libata.ko
31 ifneq ($(wildcard $(LINUX_DIR)/drivers/ata/libahci.ko),)
32 FILES+=$(LINUX_DIR)/drivers/ata/libahci.ko
33 endif
34 endef
35
36 $(eval $(call KernelPackage,ata-core))
37
38
39 define AddDepends/ata
40 SUBMENU:=$(BLOCK_MENU)
41 DEPENDS+=kmod-ata-core $(1)
42 endef
43
44
45 define KernelPackage/ata-ahci
46 TITLE:=AHCI Serial ATA support
47 KCONFIG:=CONFIG_SATA_AHCI
48 FILES:= \
49 $(LINUX_DIR)/drivers/ata/ahci.ko
50 AUTOLOAD:=$(call AutoLoad,41,libahci ahci,1)
51 $(call AddDepends/ata)
52 endef
53
54 define KernelPackage/ata-ahci/description
55 Support for AHCI Serial ATA controllers
56 endef
57
58 $(eval $(call KernelPackage,ata-ahci))
59
60
61 define KernelPackage/ata-ahci-platform
62 TITLE:=AHCI Serial ATA Platform support
63 KCONFIG:=CONFIG_SATA_AHCI_PLATFORM
64 FILES:= \
65 $(LINUX_DIR)/drivers/ata/ahci_platform.ko \
66 $(LINUX_DIR)/drivers/ata/libahci_platform.ko
67 AUTOLOAD:=$(call AutoLoad,40,libahci libahci_platform ahci_platform,1)
68 $(call AddDepends/ata,@TARGET_ipq806x||TARGET_sunxi)
69 endef
70
71 define KernelPackage/ata-ahci-platform/description
72 Platform support for AHCI Serial ATA controllers
73 endef
74
75 $(eval $(call KernelPackage,ata-ahci-platform))
76
77
78 define KernelPackage/ata-artop
79 TITLE:=ARTOP 6210/6260 PATA support
80 KCONFIG:=CONFIG_PATA_ARTOP
81 FILES:=$(LINUX_DIR)/drivers/ata/pata_artop.ko
82 AUTOLOAD:=$(call AutoLoad,41,pata_artop,1)
83 $(call AddDepends/ata)
84 endef
85
86 define KernelPackage/ata-artop/description
87 PATA support for ARTOP 6210/6260 host controllers
88 endef
89
90 $(eval $(call KernelPackage,ata-artop))
91
92
93 define KernelPackage/ata-marvell-sata
94 TITLE:=Marvell Serial ATA support
95 KCONFIG:=CONFIG_SATA_MV
96 FILES:=$(LINUX_DIR)/drivers/ata/sata_mv.ko
97 AUTOLOAD:=$(call AutoLoad,41,sata_mv,1)
98 $(call AddDepends/ata)
99 endef
100
101 define KernelPackage/ata-marvell-sata/description
102 SATA support for marvell chipsets
103 endef
104
105 $(eval $(call KernelPackage,ata-marvell-sata))
106
107
108 define KernelPackage/ata-nvidia-sata
109 TITLE:=Nvidia Serial ATA support
110 KCONFIG:=CONFIG_SATA_NV
111 FILES:=$(LINUX_DIR)/drivers/ata/sata_nv.ko
112 AUTOLOAD:=$(call AutoLoad,41,sata_nv,1)
113 $(call AddDepends/ata)
114 endef
115
116 $(eval $(call KernelPackage,ata-nvidia-sata))
117
118
119 define KernelPackage/ata-pdc202xx-old
120 SUBMENU:=$(BLOCK_MENU)
121 TITLE:=Older Promise PATA controller support
122 DEPENDS:=kmod-ata-core
123 KCONFIG:= \
124 CONFIG_ATA_SFF=y \
125 CONFIG_PATA_PDC_OLD
126 FILES:=$(LINUX_DIR)/drivers/ata/pata_pdc202xx_old.ko
127 AUTOLOAD:=$(call AutoLoad,41,pata_pdc202xx_old,1)
128 endef
129
130 define KernelPackage/ata-pdc202xx-old/description
131 This option enables support for the Promise 20246, 20262, 20263,
132 20265 and 20267 adapters
133 endef
134
135 $(eval $(call KernelPackage,ata-pdc202xx-old))
136
137
138 define KernelPackage/ata-piix
139 TITLE:=Intel PIIX PATA/SATA support
140 KCONFIG:=CONFIG_ATA_PIIX
141 FILES:=$(LINUX_DIR)/drivers/ata/ata_piix.ko
142 AUTOLOAD:=$(call AutoLoad,41,ata_piix,1)
143 $(call AddDepends/ata)
144 endef
145
146 define KernelPackage/ata-piix/description
147 SATA support for Intel ICH5/6/7/8 series host controllers and
148 PATA support for Intel ESB/ICH/PIIX3/PIIX4 series host controllers
149 endef
150
151 $(eval $(call KernelPackage,ata-piix))
152
153
154 define KernelPackage/ata-sil
155 TITLE:=Silicon Image SATA support
156 KCONFIG:=CONFIG_SATA_SIL
157 FILES:=$(LINUX_DIR)/drivers/ata/sata_sil.ko
158 AUTOLOAD:=$(call AutoLoad,41,sata_sil,1)
159 $(call AddDepends/ata)
160 endef
161
162 define KernelPackage/ata-sil/description
163 Support for Silicon Image Serial ATA controllers
164 endef
165
166 $(eval $(call KernelPackage,ata-sil))
167
168
169 define KernelPackage/ata-sil24
170 TITLE:=Silicon Image 3124/3132 SATA support
171 KCONFIG:=CONFIG_SATA_SIL24
172 FILES:=$(LINUX_DIR)/drivers/ata/sata_sil24.ko
173 AUTOLOAD:=$(call AutoLoad,41,sata_sil24,1)
174 $(call AddDepends/ata)
175 endef
176
177 define KernelPackage/ata-sil24/description
178 Support for Silicon Image 3124/3132 Serial ATA controllers
179 endef
180
181 $(eval $(call KernelPackage,ata-sil24))
182
183
184 define KernelPackage/ata-via-sata
185 TITLE:=VIA SATA support
186 KCONFIG:=CONFIG_SATA_VIA
187 FILES:=$(LINUX_DIR)/drivers/ata/sata_via.ko
188 AUTOLOAD:=$(call AutoLoad,41,sata_via,1)
189 $(call AddDepends/ata)
190 endef
191
192 define KernelPackage/ata-via-sata/description
193 This option enables support for VIA Serial ATA
194 endef
195
196 $(eval $(call KernelPackage,ata-via-sata))
197
198
199 define KernelPackage/block2mtd
200 SUBMENU:=$(BLOCK_MENU)
201 TITLE:=Block device MTD emulation
202 KCONFIG:=CONFIG_MTD_BLOCK2MTD
203 FILES:=$(LINUX_DIR)/drivers/mtd/devices/block2mtd.ko
204 endef
205
206 $(eval $(call KernelPackage,block2mtd))
207
208
209 define KernelPackage/dax
210 SUBMENU:=$(BLOCK_MENU)
211 TITLE:=DAX: direct access to differentiated memory
212 KCONFIG:=CONFIG_DAX
213 FILES:=$(LINUX_DIR)/drivers/dax/dax.ko
214 endef
215
216 $(eval $(call KernelPackage,dax))
217
218
219 define KernelPackage/dm
220 SUBMENU:=$(BLOCK_MENU)
221 TITLE:=Device Mapper
222 DEPENDS:=+kmod-crypto-manager +kmod-dax
223 # All the "=n" are unnecessary, they're only there
224 # to stop the config from asking the question.
225 # MIRROR is M because I've needed it for pvmove.
226 KCONFIG:= \
227 CONFIG_BLK_DEV_MD=n \
228 CONFIG_DM_DEBUG=n \
229 CONFIG_DM_UEVENT=n \
230 CONFIG_DM_DELAY=n \
231 CONFIG_DM_LOG_WRITES=n \
232 CONFIG_DM_MQ_DEFAULT=n \
233 CONFIG_DM_MULTIPATH=n \
234 CONFIG_DM_ZERO=n \
235 CONFIG_DM_SNAPSHOT=n \
236 CONFIG_DM_LOG_USERSPACE=n \
237 CONFIG_MD=y \
238 CONFIG_BLK_DEV_DM \
239 CONFIG_DM_CRYPT \
240 CONFIG_DM_MIRROR
241 FILES:=$(LINUX_DIR)/drivers/md/dm-*.ko
242 AUTOLOAD:=$(call AutoLoad,30,dm-mod dm-log dm-region-hash dm-mirror dm-crypt)
243 endef
244
245 define KernelPackage/dm/description
246 Kernel module necessary for LVM2 support
247 endef
248
249 $(eval $(call KernelPackage,dm))
250
251
252 define KernelPackage/md-mod
253 SUBMENU:=$(BLOCK_MENU)
254 TITLE:=MD RAID
255 KCONFIG:= \
256 CONFIG_MD=y \
257 CONFIG_BLK_DEV_MD=m \
258 CONFIG_MD_AUTODETECT=y \
259 CONFIG_MD_FAULTY=n
260 FILES:=$(LINUX_DIR)/drivers/md/md-mod.ko
261 AUTOLOAD:=$(call AutoLoad,27,md-mod)
262 endef
263
264 define KernelPackage/md-mod/description
265 Kernel RAID md module (md-mod.ko).
266 You will need to select at least one RAID level module below.
267 endef
268
269 $(eval $(call KernelPackage,md-mod))
270
271
272 define KernelPackage/md/Depends
273 SUBMENU:=$(BLOCK_MENU)
274 DEPENDS:=kmod-md-mod $(1)
275 endef
276
277
278 define KernelPackage/md-linear
279 $(call KernelPackage/md/Depends,)
280 TITLE:=RAID Linear Module
281 KCONFIG:=CONFIG_MD_LINEAR
282 FILES:=$(LINUX_DIR)/drivers/md/linear.ko
283 AUTOLOAD:=$(call AutoLoad,28,linear)
284 endef
285
286 define KernelPackage/md-linear/description
287 RAID "Linear" or "Append" driver module (linear.ko)
288 endef
289
290 $(eval $(call KernelPackage,md-linear))
291
292
293 define KernelPackage/md-raid0
294 $(call KernelPackage/md/Depends,)
295 TITLE:=RAID0 Module
296 KCONFIG:=CONFIG_MD_RAID0
297 FILES:=$(LINUX_DIR)/drivers/md/raid0.ko
298 AUTOLOAD:=$(call AutoLoad,28,raid0)
299 endef
300
301 define KernelPackage/md-raid0/description
302 RAID Level 0 (Striping) driver module (raid0.ko)
303 endef
304
305 $(eval $(call KernelPackage,md-raid0))
306
307
308 define KernelPackage/md-raid1
309 $(call KernelPackage/md/Depends,)
310 TITLE:=RAID1 Module
311 KCONFIG:=CONFIG_MD_RAID1
312 FILES:=$(LINUX_DIR)/drivers/md/raid1.ko
313 AUTOLOAD:=$(call AutoLoad,28,raid1)
314 endef
315
316 define KernelPackage/md-raid1/description
317 RAID Level 1 (Mirroring) driver (raid1.ko)
318 endef
319
320 $(eval $(call KernelPackage,md-raid1))
321
322
323 define KernelPackage/md-raid10
324 $(call KernelPackage/md/Depends,)
325 TITLE:=RAID10 Module
326 KCONFIG:=CONFIG_MD_RAID10
327 FILES:=$(LINUX_DIR)/drivers/md/raid10.ko
328 AUTOLOAD:=$(call AutoLoad,28,raid10)
329 endef
330
331 define KernelPackage/md-raid10/description
332 RAID Level 10 (Mirroring+Striping) driver module (raid10.ko)
333 endef
334
335 $(eval $(call KernelPackage,md-raid10))
336
337
338 define KernelPackage/md-raid456
339 $(call KernelPackage/md/Depends,+kmod-lib-raid6 +kmod-lib-xor +kmod-lib-crc32c)
340 TITLE:=RAID Level 456 Driver
341 KCONFIG:= \
342 CONFIG_ASYNC_CORE \
343 CONFIG_ASYNC_MEMCPY \
344 CONFIG_ASYNC_XOR \
345 CONFIG_ASYNC_PQ \
346 CONFIG_ASYNC_RAID6_RECOV \
347 CONFIG_ASYNC_RAID6_TEST=n \
348 CONFIG_MD_RAID456 \
349 CONFIG_MULTICORE_RAID456=n
350 FILES:= \
351 $(LINUX_DIR)/crypto/async_tx/async_tx.ko \
352 $(LINUX_DIR)/crypto/async_tx/async_memcpy.ko \
353 $(LINUX_DIR)/crypto/async_tx/async_xor.ko \
354 $(LINUX_DIR)/crypto/async_tx/async_pq.ko \
355 $(LINUX_DIR)/crypto/async_tx/async_raid6_recov.ko \
356 $(LINUX_DIR)/drivers/md/raid456.ko
357 AUTOLOAD:=$(call AutoLoad,28, async_tx async_memcpy async_xor async_pq async_raid6_recov raid456)
358 endef
359
360 define KernelPackage/md-raid456/description
361 RAID Level 4,5,6 kernel module (raid456.ko)
362
363 Includes the following modules required by
364 raid456.ko:
365 xor.ko
366 async_tx.ko
367 async_xor.ko
368 async_memcpy.ko
369 async_pq.ko
370 async_raid5_recov.ko
371 raid6_pq.ko
372 endef
373
374 $(eval $(call KernelPackage,md-raid456))
375
376
377 define KernelPackage/md-multipath
378 $(call KernelPackage/md/Depends,)
379 TITLE:=MD Multipath Module
380 KCONFIG:=CONFIG_MD_MULTIPATH
381 FILES:=$(LINUX_DIR)/drivers/md/multipath.ko
382 AUTOLOAD:=$(call AutoLoad,29,multipath)
383 endef
384
385 define KernelPackage/md-multipath/description
386 Multipath driver module (multipath.ko)
387 endef
388
389 $(eval $(call KernelPackage,md-multipath))
390
391
392 define KernelPackage/libsas
393 SUBMENU:=$(BLOCK_MENU)
394 DEPENDS:=@TARGET_x86
395 TITLE:=SAS Domain Transport Attributes
396 KCONFIG:=CONFIG_SCSI_SAS_LIBSAS \
397 CONFIG_SCSI_SAS_ATTRS \
398 CONFIG_SCSI_SAS_ATA=y \
399 CONFIG_SCSI_SAS_HOST_SMP=y \
400 CONFIG_SCSI_SAS_LIBSAS_DEBUG=y
401 FILES:= \
402 $(LINUX_DIR)/drivers/scsi/scsi_transport_sas.ko \
403 $(LINUX_DIR)/drivers/scsi/libsas/libsas.ko
404 AUTOLOAD:=$(call AutoLoad,29,scsi_transport_sas libsas,1)
405 endef
406
407 define KernelPackage/libsas/description
408 SAS Domain Transport Attributes support
409 endef
410
411 $(eval $(call KernelPackage,libsas,1))
412
413
414 define KernelPackage/loop
415 SUBMENU:=$(BLOCK_MENU)
416 TITLE:=Loopback device support
417 KCONFIG:= \
418 CONFIG_BLK_DEV_LOOP \
419 CONFIG_BLK_DEV_CRYPTOLOOP=n
420 FILES:=$(LINUX_DIR)/drivers/block/loop.ko
421 AUTOLOAD:=$(call AutoLoad,30,loop)
422 endef
423
424 define KernelPackage/loop/description
425 Kernel module for loopback device support
426 endef
427
428 $(eval $(call KernelPackage,loop))
429
430
431 define KernelPackage/mvsas
432 SUBMENU:=$(BLOCK_MENU)
433 TITLE:=Marvell 88SE6440 SAS/SATA driver
434 DEPENDS:=@TARGET_x86 +kmod-libsas
435 KCONFIG:= \
436 CONFIG_SCSI_MVSAS \
437 CONFIG_SCSI_MVSAS_TASKLET=n
438 FILES:=$(LINUX_DIR)/drivers/scsi/mvsas/mvsas.ko
439 AUTOLOAD:=$(call AutoLoad,40,mvsas,1)
440 endef
441
442 define KernelPackage/mvsas/description
443 Kernel support for the Marvell SAS SCSI adapters
444 endef
445
446 $(eval $(call KernelPackage,mvsas))
447
448
449 define KernelPackage/nbd
450 SUBMENU:=$(BLOCK_MENU)
451 TITLE:=Network block device support
452 KCONFIG:=CONFIG_BLK_DEV_NBD
453 FILES:=$(LINUX_DIR)/drivers/block/nbd.ko
454 AUTOLOAD:=$(call AutoLoad,30,nbd)
455 endef
456
457 define KernelPackage/nbd/description
458 Kernel module for network block device support
459 endef
460
461 $(eval $(call KernelPackage,nbd))
462
463
464 define KernelPackage/scsi-core
465 SUBMENU:=$(BLOCK_MENU)
466 TITLE:=SCSI device support
467 KCONFIG:= \
468 CONFIG_SCSI \
469 CONFIG_BLK_DEV_SD
470 FILES:= \
471 $(LINUX_DIR)/drivers/scsi/scsi_mod.ko \
472 $(LINUX_DIR)/drivers/scsi/sd_mod.ko
473 AUTOLOAD:=$(call AutoLoad,40,scsi_mod sd_mod,1)
474 endef
475
476 $(eval $(call KernelPackage,scsi-core))
477
478
479 define KernelPackage/scsi-generic
480 SUBMENU:=$(BLOCK_MENU)
481 TITLE:=Kernel support for SCSI generic
482 DEPENDS:=+kmod-scsi-core
483 KCONFIG:= \
484 CONFIG_CHR_DEV_SG
485 FILES:= \
486 $(LINUX_DIR)/drivers/scsi/sg.ko
487 AUTOLOAD:=$(call AutoLoad,65,sg)
488 endef
489
490 $(eval $(call KernelPackage,scsi-generic))
491
492
493 define KernelPackage/scsi-cdrom
494 SUBMENU:=$(BLOCK_MENU)
495 TITLE:=Kernel support for CD / DVD drives
496 DEPENDS:=+kmod-scsi-core
497 KCONFIG:= \
498 CONFIG_BLK_DEV_SR \
499 CONFIG_BLK_DEV_SR_VENDOR=n
500 FILES:= \
501 $(LINUX_DIR)/drivers/cdrom/cdrom.ko \
502 $(LINUX_DIR)/drivers/scsi/sr_mod.ko
503 AUTOLOAD:=$(call AutoLoad,45,sr_mod)
504 endef
505
506 $(eval $(call KernelPackage,scsi-cdrom))
507
508
509 define KernelPackage/scsi-tape
510 SUBMENU:=$(BLOCK_MENU)
511 TITLE:=Kernel support for scsi tape drives
512 DEPENDS:=+kmod-scsi-core
513 KCONFIG:= \
514 CONFIG_CHR_DEV_ST
515 FILES:= \
516 $(LINUX_DIR)/drivers/scsi/st.ko
517 AUTOLOAD:=$(call AutoLoad,45,st)
518 endef
519
520 $(eval $(call KernelPackage,scsi-tape))