Home
last modified time | relevance | path

Searched refs:dbc (Results 1 – 2 of 2) sorted by relevance

/DragonOS-0.1.2/kernel/src/driver/disk/ahci/
Dahci.c362 …cmdtbl->prdt_entry[i].dbc = 8 * 1024 - 1; // 8K bytes (this value should always be set to 1 less t… in ahci_read()
370 cmdtbl->prdt_entry[i].dbc = (count << 9) - 1; // 512 bytes per sector in ahci_read()
458 cmdtbl->prdt_entry[i].dbc = 8 * 1024 - 1; // 8K bytes in ahci_write()
465 cmdtbl->prdt_entry[i].dbc = count << 9; // 512 bytes per sector in ahci_write()
Dahci.h314 uint32_t dbc : 22; // Byte count, 4M max member