1 /* 2 * (C) Copyright 2000-2004 3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef BLK_H 9 #define BLK_H 10 11 #ifdef CONFIG_SYS_64BIT_LBA 12 typedef uint64_t lbaint_t; 13 #define LBAFlength "ll" 14 #else 15 typedef ulong lbaint_t; 16 #define LBAFlength "l" 17 #endif 18 #define LBAF "%" LBAFlength "x" 19 #define LBAFU "%" LBAFlength "u" 20 21 /* Interface types: */ 22 enum if_type { 23 IF_TYPE_UNKNOWN = 0, 24 IF_TYPE_IDE, 25 IF_TYPE_SCSI, 26 IF_TYPE_ATAPI, 27 IF_TYPE_USB, 28 IF_TYPE_DOC, 29 IF_TYPE_MMC, 30 IF_TYPE_SD, 31 IF_TYPE_SATA, 32 IF_TYPE_HOST, 33 IF_TYPE_SYSTEMACE, 34 35 IF_TYPE_COUNT, /* Number of interface types */ 36 }; 37 38 /* 39 * With driver model (CONFIG_BLK) this is uclass platform data, accessible 40 * with dev_get_uclass_platdata(dev) 41 */ 42 struct blk_desc { 43 /* 44 * TODO: With driver model we should be able to use the parent 45 * device's uclass instead. 46 */ 47 enum if_type if_type; /* type of the interface */ 48 int devnum; /* device number */ 49 unsigned char part_type; /* partition type */ 50 unsigned char target; /* target SCSI ID */ 51 unsigned char lun; /* target LUN */ 52 unsigned char hwpart; /* HW partition, e.g. for eMMC */ 53 unsigned char type; /* device type */ 54 unsigned char removable; /* removable device */ 55 #ifdef CONFIG_LBA48 56 /* device can use 48bit addr (ATA/ATAPI v7) */ 57 unsigned char lba48; 58 #endif 59 lbaint_t lba; /* number of blocks */ 60 unsigned long blksz; /* block size */ 61 int log2blksz; /* for convenience: log2(blksz) */ 62 char vendor[40+1]; /* IDE model, SCSI Vendor */ 63 char product[20+1]; /* IDE Serial no, SCSI product */ 64 char revision[8+1]; /* firmware revision */ 65 #ifdef CONFIG_BLK 66 struct udevice *bdev; 67 #else 68 unsigned long (*block_read)(struct blk_desc *block_dev, 69 lbaint_t start, 70 lbaint_t blkcnt, 71 void *buffer); 72 unsigned long (*block_write)(struct blk_desc *block_dev, 73 lbaint_t start, 74 lbaint_t blkcnt, 75 const void *buffer); 76 unsigned long (*block_erase)(struct blk_desc *block_dev, 77 lbaint_t start, 78 lbaint_t blkcnt); 79 void *priv; /* driver private struct pointer */ 80 #endif 81 }; 82 83 #define BLOCK_CNT(size, blk_desc) (PAD_COUNT(size, blk_desc->blksz)) 84 #define PAD_TO_BLOCKSIZE(size, blk_desc) \ 85 (PAD_SIZE(size, blk_desc->blksz)) 86 87 #ifdef CONFIG_BLOCK_CACHE 88 /** 89 * blkcache_read() - attempt to read a set of blocks from cache 90 * 91 * @param iftype - IF_TYPE_x for type of device 92 * @param dev - device index of particular type 93 * @param start - starting block number 94 * @param blkcnt - number of blocks to read 95 * @param blksz - size in bytes of each block 96 * @param buf - buffer to contain cached data 97 * 98 * @return - '1' if block returned from cache, '0' otherwise. 99 */ 100 int blkcache_read(int iftype, int dev, 101 lbaint_t start, lbaint_t blkcnt, 102 unsigned long blksz, void *buffer); 103 104 /** 105 * blkcache_fill() - make data read from a block device available 106 * to the block cache 107 * 108 * @param iftype - IF_TYPE_x for type of device 109 * @param dev - device index of particular type 110 * @param start - starting block number 111 * @param blkcnt - number of blocks available 112 * @param blksz - size in bytes of each block 113 * @param buf - buffer containing data to cache 114 * 115 */ 116 void blkcache_fill(int iftype, int dev, 117 lbaint_t start, lbaint_t blkcnt, 118 unsigned long blksz, void const *buffer); 119 120 /** 121 * blkcache_invalidate() - discard the cache for a set of blocks 122 * because of a write or device (re)initialization. 123 * 124 * @param iftype - IF_TYPE_x for type of device 125 * @param dev - device index of particular type 126 */ 127 void blkcache_invalidate(int iftype, int dev); 128 129 /** 130 * blkcache_configure() - configure block cache 131 * 132 * @param blocks - maximum blocks per entry 133 * @param entries - maximum entries in cache 134 */ 135 void blkcache_configure(unsigned blocks, unsigned entries); 136 137 /* 138 * statistics of the block cache 139 */ 140 struct block_cache_stats { 141 unsigned hits; 142 unsigned misses; 143 unsigned entries; /* current entry count */ 144 unsigned max_blocks_per_entry; 145 unsigned max_entries; 146 }; 147 148 /** 149 * get_blkcache_stats() - return statistics and reset 150 * 151 * @param stats - statistics are copied here 152 */ 153 void blkcache_stats(struct block_cache_stats *stats); 154 155 #else 156 157 static inline int blkcache_read(int iftype, int dev, 158 lbaint_t start, lbaint_t blkcnt, 159 unsigned long blksz, void *buffer) 160 { 161 return 0; 162 } 163 164 static inline void blkcache_fill(int iftype, int dev, 165 lbaint_t start, lbaint_t blkcnt, 166 unsigned long blksz, void const *buffer) {} 167 168 static inline void blkcache_invalidate(int iftype, int dev) {} 169 170 #endif 171 172 #ifdef CONFIG_BLK 173 struct udevice; 174 175 /* Operations on block devices */ 176 struct blk_ops { 177 /** 178 * read() - read from a block device 179 * 180 * @dev: Device to read from 181 * @start: Start block number to read (0=first) 182 * @blkcnt: Number of blocks to read 183 * @buffer: Destination buffer for data read 184 * @return number of blocks read, or -ve error number (see the 185 * IS_ERR_VALUE() macro 186 */ 187 unsigned long (*read)(struct udevice *dev, lbaint_t start, 188 lbaint_t blkcnt, void *buffer); 189 190 /** 191 * write() - write to a block device 192 * 193 * @dev: Device to write to 194 * @start: Start block number to write (0=first) 195 * @blkcnt: Number of blocks to write 196 * @buffer: Source buffer for data to write 197 * @return number of blocks written, or -ve error number (see the 198 * IS_ERR_VALUE() macro 199 */ 200 unsigned long (*write)(struct udevice *dev, lbaint_t start, 201 lbaint_t blkcnt, const void *buffer); 202 203 /** 204 * erase() - erase a section of a block device 205 * 206 * @dev: Device to (partially) erase 207 * @start: Start block number to erase (0=first) 208 * @blkcnt: Number of blocks to erase 209 * @return number of blocks erased, or -ve error number (see the 210 * IS_ERR_VALUE() macro 211 */ 212 unsigned long (*erase)(struct udevice *dev, lbaint_t start, 213 lbaint_t blkcnt); 214 }; 215 216 #define blk_get_ops(dev) ((struct blk_ops *)(dev)->driver->ops) 217 218 /* 219 * These functions should take struct udevice instead of struct blk_desc, 220 * but this is convenient for migration to driver model. Add a 'd' prefix 221 * to the function operations, so that blk_read(), etc. can be reserved for 222 * functions with the correct arguments. 223 */ 224 unsigned long blk_dread(struct blk_desc *block_dev, lbaint_t start, 225 lbaint_t blkcnt, void *buffer); 226 unsigned long blk_dwrite(struct blk_desc *block_dev, lbaint_t start, 227 lbaint_t blkcnt, const void *buffer); 228 unsigned long blk_derase(struct blk_desc *block_dev, lbaint_t start, 229 lbaint_t blkcnt); 230 231 /** 232 * blk_get_device() - Find and probe a block device ready for use 233 * 234 * @if_type: Interface type (enum if_type_t) 235 * @devnum: Device number (specific to each interface type) 236 * @devp: the device, if found 237 * @return - if found, -ENODEV if no device found, or other -ve error value 238 */ 239 int blk_get_device(int if_type, int devnum, struct udevice **devp); 240 241 /** 242 * blk_first_device() - Find the first device for a given interface 243 * 244 * The device is probed ready for use 245 * 246 * @devnum: Device number (specific to each interface type) 247 * @devp: the device, if found 248 * @return 0 if found, -ENODEV if no device, or other -ve error value 249 */ 250 int blk_first_device(int if_type, struct udevice **devp); 251 252 /** 253 * blk_next_device() - Find the next device for a given interface 254 * 255 * This can be called repeatedly after blk_first_device() to iterate through 256 * all devices of the given interface type. 257 * 258 * The device is probed ready for use 259 * 260 * @devp: On entry, the previous device returned. On exit, the next 261 * device, if found 262 * @return 0 if found, -ENODEV if no device, or other -ve error value 263 */ 264 int blk_next_device(struct udevice **devp); 265 266 /** 267 * blk_create_device() - Create a new block device 268 * 269 * @parent: Parent of the new device 270 * @drv_name: Driver name to use for the block device 271 * @name: Name for the device 272 * @if_type: Interface type (enum if_type_t) 273 * @devnum: Device number, specific to the interface type 274 * @blksz: Block size of the device in bytes (typically 512) 275 * @size: Total size of the device in bytes 276 * @devp: the new device (which has not been probed) 277 */ 278 int blk_create_device(struct udevice *parent, const char *drv_name, 279 const char *name, int if_type, int devnum, int blksz, 280 lbaint_t size, struct udevice **devp); 281 282 /** 283 * blk_prepare_device() - Prepare a block device for use 284 * 285 * This reads partition information from the device if supported. 286 * 287 * @dev: Device to prepare 288 * @return 0 if ok, -ve on error 289 */ 290 int blk_prepare_device(struct udevice *dev); 291 292 /** 293 * blk_unbind_all() - Unbind all device of the given interface type 294 * 295 * The devices are removed and then unbound. 296 * 297 * @if_type: Interface type to unbind 298 * @return 0 if OK, -ve on error 299 */ 300 int blk_unbind_all(int if_type); 301 302 #else 303 #include <errno.h> 304 /* 305 * These functions should take struct udevice instead of struct blk_desc, 306 * but this is convenient for migration to driver model. Add a 'd' prefix 307 * to the function operations, so that blk_read(), etc. can be reserved for 308 * functions with the correct arguments. 309 */ 310 static inline ulong blk_dread(struct blk_desc *block_dev, lbaint_t start, 311 lbaint_t blkcnt, void *buffer) 312 { 313 ulong blks_read; 314 if (blkcache_read(block_dev->if_type, block_dev->devnum, 315 start, blkcnt, block_dev->blksz, buffer)) 316 return blkcnt; 317 318 /* 319 * We could check if block_read is NULL and return -ENOSYS. But this 320 * bloats the code slightly (cause some board to fail to build), and 321 * it would be an error to try an operation that does not exist. 322 */ 323 blks_read = block_dev->block_read(block_dev, start, blkcnt, buffer); 324 if (blks_read == blkcnt) 325 blkcache_fill(block_dev->if_type, block_dev->devnum, 326 start, blkcnt, block_dev->blksz, buffer); 327 328 return blks_read; 329 } 330 331 static inline ulong blk_dwrite(struct blk_desc *block_dev, lbaint_t start, 332 lbaint_t blkcnt, const void *buffer) 333 { 334 blkcache_invalidate(block_dev->if_type, block_dev->devnum); 335 return block_dev->block_write(block_dev, start, blkcnt, buffer); 336 } 337 338 static inline ulong blk_derase(struct blk_desc *block_dev, lbaint_t start, 339 lbaint_t blkcnt) 340 { 341 blkcache_invalidate(block_dev->if_type, block_dev->devnum); 342 return block_dev->block_erase(block_dev, start, blkcnt); 343 } 344 345 /** 346 * struct blk_driver - Driver for block interface types 347 * 348 * This provides access to the block devices for each interface type. One 349 * driver should be provided using U_BOOT_LEGACY_BLK() for each interface 350 * type that is to be supported. 351 * 352 * @if_typename: Interface type name 353 * @if_type: Interface type 354 * @max_devs: Maximum number of devices supported 355 * @desc: Pointer to list of devices for this interface type, 356 * or NULL to use @get_dev() instead 357 */ 358 struct blk_driver { 359 const char *if_typename; 360 enum if_type if_type; 361 int max_devs; 362 struct blk_desc *desc; 363 /** 364 * get_dev() - get a pointer to a block device given its number 365 * 366 * Each interface allocates its own devices and typically 367 * struct blk_desc is contained with the interface's data structure. 368 * There is no global numbering for block devices. This method allows 369 * the device for an interface type to be obtained when @desc is NULL. 370 * 371 * @devnum: Device number (0 for first device on that interface, 372 * 1 for second, etc. 373 * @descp: Returns pointer to the block device on success 374 * @return 0 if OK, -ve on error 375 */ 376 int (*get_dev)(int devnum, struct blk_desc **descp); 377 378 /** 379 * select_hwpart() - Select a hardware partition 380 * 381 * Some devices (e.g. MMC) can support partitioning at the hardware 382 * level. This is quite separate from the normal idea of 383 * software-based partitions. MMC hardware partitions must be 384 * explicitly selected. Once selected only the region of the device 385 * covered by that partition is accessible. 386 * 387 * The MMC standard provides for two boot partitions (numbered 1 and 2), 388 * rpmb (3), and up to 4 addition general-purpose partitions (4-7). 389 * Partition 0 is the main user-data partition. 390 * 391 * @desc: Block device descriptor 392 * @hwpart: Hardware partition number to select. 0 means the main 393 * user-data partition, 1 is the first partition, 2 is 394 * the second, etc. 395 * @return 0 if OK, other value for an error 396 */ 397 int (*select_hwpart)(struct blk_desc *desc, int hwpart); 398 }; 399 400 /* 401 * Declare a new U-Boot legacy block driver. New drivers should use driver 402 * model (UCLASS_BLK). 403 */ 404 #define U_BOOT_LEGACY_BLK(__name) \ 405 ll_entry_declare(struct blk_driver, __name, blk_driver) 406 407 struct blk_driver *blk_driver_lookup_type(int if_type); 408 409 #endif /* !CONFIG_BLK */ 410 411 /** 412 * blk_get_devnum_by_typename() - Get a block device by type and number 413 * 414 * This looks through the available block devices of the given type, returning 415 * the one with the given @devnum. 416 * 417 * @if_type: Block device type 418 * @devnum: Device number 419 * @return point to block device descriptor, or NULL if not found 420 */ 421 struct blk_desc *blk_get_devnum_by_type(enum if_type if_type, int devnum); 422 423 /** 424 * blk_get_devnum_by_type() - Get a block device by type name, and number 425 * 426 * This looks up the block device type based on @if_typename, then calls 427 * blk_get_devnum_by_type(). 428 * 429 * @if_typename: Block device type name 430 * @devnum: Device number 431 * @return point to block device descriptor, or NULL if not found 432 */ 433 struct blk_desc *blk_get_devnum_by_typename(const char *if_typename, 434 int devnum); 435 436 /** 437 * blk_dselect_hwpart() - select a hardware partition 438 * 439 * This selects a hardware partition (such as is supported by MMC). The block 440 * device size may change as this effectively points the block device to a 441 * partition at the hardware level. See the select_hwpart() method above. 442 * 443 * @desc: Block device descriptor for the device to select 444 * @hwpart: Partition number to select 445 * @return 0 if OK, -ve on error 446 */ 447 int blk_dselect_hwpart(struct blk_desc *desc, int hwpart); 448 449 /** 450 * blk_list_part() - list the partitions for block devices of a given type 451 * 452 * This looks up the partition type for each block device of type @if_type, 453 * then displays a list of partitions. 454 * 455 * @if_type: Block device type 456 * @return 0 if OK, -ENODEV if there is none of that type 457 */ 458 int blk_list_part(enum if_type if_type); 459 460 /** 461 * blk_list_devices() - list the block devices of a given type 462 * 463 * This lists each block device of the type @if_type, showing the capacity 464 * as well as type-specific information. 465 * 466 * @if_type: Block device type 467 */ 468 void blk_list_devices(enum if_type if_type); 469 470 /** 471 * blk_show_device() - show information about a given block device 472 * 473 * This shows the block device capacity as well as type-specific information. 474 * 475 * @if_type: Block device type 476 * @devnum: Device number 477 * @return 0 if OK, -ENODEV for invalid device number 478 */ 479 int blk_show_device(enum if_type if_type, int devnum); 480 481 /** 482 * blk_print_device_num() - show information about a given block device 483 * 484 * This is similar to blk_show_device() but returns an error if the block 485 * device type is unknown. 486 * 487 * @if_type: Block device type 488 * @devnum: Device number 489 * @return 0 if OK, -ENODEV for invalid device number, -ENOENT if the block 490 * device is not connected 491 */ 492 int blk_print_device_num(enum if_type if_type, int devnum); 493 494 /** 495 * blk_print_part_devnum() - print the partition information for a device 496 * 497 * @if_type: Block device type 498 * @devnum: Device number 499 * @return 0 if OK, -ENOENT if the block device is not connected, -ENOSYS if 500 * the interface type is not supported, other -ve on other error 501 */ 502 int blk_print_part_devnum(enum if_type if_type, int devnum); 503 504 /** 505 * blk_read_devnum() - read blocks from a device 506 * 507 * @if_type: Block device type 508 * @devnum: Device number 509 * @blkcnt: Number of blocks to read 510 * @buffer: Address to write data to 511 * @return number of blocks read, or -ve error number on error 512 */ 513 ulong blk_read_devnum(enum if_type if_type, int devnum, lbaint_t start, 514 lbaint_t blkcnt, void *buffer); 515 516 /** 517 * blk_write_devnum() - write blocks to a device 518 * 519 * @if_type: Block device type 520 * @devnum: Device number 521 * @blkcnt: Number of blocks to write 522 * @buffer: Address to read data from 523 * @return number of blocks written, or -ve error number on error 524 */ 525 ulong blk_write_devnum(enum if_type if_type, int devnum, lbaint_t start, 526 lbaint_t blkcnt, const void *buffer); 527 528 /** 529 * blk_select_hwpart_devnum() - select a hardware partition 530 * 531 * This is similar to blk_dselect_hwpart() but it looks up the interface and 532 * device number. 533 * 534 * @if_type: Block device type 535 * @devnum: Device number 536 * @hwpart: Partition number to select 537 * @return 0 if OK, -ve on error 538 */ 539 int blk_select_hwpart_devnum(enum if_type if_type, int devnum, int hwpart); 540 541 #endif 542