blob: fcc9ccdd7f85e159a8886ce258db80d54e7f3c44 [file] [log] [blame]
Simon Glass09d71aa2016-02-29 15:25:55 -07001config BLK
2 bool "Support block devices"
3 depends on DM
4 help
5 Enable support for block devices, such as SCSI, MMC and USB
6 flash sticks. These provide a block-level interface which permits
7 reading, writing and (in some cases) erasing blocks. Block
8 devices often have a partition table which allows the device to
9 be partitioned into several areas, called 'partitions' in U-Boot.
10 A filesystem can be placed in each partition.
11
Simon Glasse3b5f042016-01-17 16:11:34 -070012config DISK
13 bool "Support disk controllers with driver model"
14 depends on DM
15 default y if DM
16 help
17 This enables a uclass for disk controllers in U-Boot. Various driver
18 types can use this, such as AHCI/SATA. It does not provide any standard
19 operations at present. The block device interface has not been converted
20 to driver model.
Eric Nelsone40cf342016-03-28 10:05:44 -070021
22config BLOCK_CACHE
23 bool "Use block device cache"
24 default n
25 help
26 This option enables a disk-block cache for all block devices.
27 This is most useful when accessing filesystems under U-Boot since
28 it will prevent repeated reads from directory structures and other
29 filesystem data structures.