HomeSort by relevance Sort by last modified time
    Searched refs:sg_count (Results 1 - 2 of 2) sorted by null

  /external/u-boot/drivers/ata/
ahci.c 506 u32 sg_count; local
509 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
510 if (sg_count > AHCI_MAX_SG) {
515 for (i = 0; i < sg_count; i++) {
527 return sg_count;
640 int sg_count; local
657 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
658 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
dwc_ahsata.c 326 u32 sg_count, max_bytes; local
330 sg_count = ((buf_len - 1) / max_bytes) + 1;
331 if (sg_count > AHCI_MAX_SG) {
336 for (i = 0; i < sg_count; i++) {
348 return sg_count;
375 int sg_count = 0, cmd_slot = 0; local
392 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
393 opts = (sizeof(struct sata_fis_h2d) >> 2) | (sg_count << 16);

Completed in 684 milliseconds