blob: f9502b36bacd56f52b3796969d03aeac3ccdd6cc [file] [log] [blame]
Simon Glasscceee552016-02-29 15:25:55 -07001config BLK
2 bool "Support block devices"
3 depends on DM
Simon Glass7b8492e2016-10-01 14:43:18 -06004 default y if DM_MMC
Simon Glasscceee552016-02-29 15:25:55 -07005 help
6 Enable support for block devices, such as SCSI, MMC and USB
7 flash sticks. These provide a block-level interface which permits
8 reading, writing and (in some cases) erasing blocks. Block
9 devices often have a partition table which allows the device to
10 be partitioned into several areas, called 'partitions' in U-Boot.
11 A filesystem can be placed in each partition.
12
Adam Fordb10ba902018-02-06 12:43:56 -060013config HAVE_BLOCK_DEVICE
14 bool "Enable Legacy Block Device"
15 help
16 Some devices require block support whether or not DM is enabled
17
Simon Glass5f4bd8c2017-07-04 13:31:19 -060018config SPL_BLK
19 bool "Support block devices in SPL"
20 depends on SPL_DM && BLK
21 default y
22 help
23 Enable support for block devices, such as SCSI, MMC and USB
24 flash sticks. These provide a block-level interface which permits
25 reading, writing and (in some cases) erasing blocks. Block
26 devices often have a partition table which allows the device to
27 be partitioned into several areas, called 'partitions' in U-Boot.
28 A filesystem can be placed in each partition.
29
Eric Nelsonfaf4f052016-03-28 10:05:44 -070030config BLOCK_CACHE
31 bool "Use block device cache"
Tom Rini587a09e2018-05-22 12:24:16 -040032 depends on BLK
33 default y
Eric Nelsonfaf4f052016-03-28 10:05:44 -070034 help
35 This option enables a disk-block cache for all block devices.
36 This is most useful when accessing filesystems under U-Boot since
37 it will prevent repeated reads from directory structures and other
38 filesystem data structures.
Michal Simekc886f352016-09-08 15:06:45 +020039
Adam Fordd693fb92018-06-11 17:17:48 -050040config SPL_BLOCK_CACHE
41 bool "Use block device cache in SPL"
42 depends on SPL_BLK
43 default n
44 help
45 This option enables the disk-block cache in SPL
46
Simon Glassb569a012017-05-17 03:25:30 -060047config IDE
48 bool "Support IDE controllers"
Adam Fordb10ba902018-02-06 12:43:56 -060049 select HAVE_BLOCK_DEVICE
Simon Glassb569a012017-05-17 03:25:30 -060050 help
51 Enables support for IDE (Integrated Drive Electronics) hard drives.
52 This allows access to raw blocks and filesystems on an IDE drive
53 from U-Boot. See also CMD_IDE which provides an 'ide' command for
54 performing various IDE operations.