Lines Matching refs:pio
39 bool pio; member
52 { .cmd = CMD_READ_PIO, .data = true, .pio = true,
54 { .cmd = CMD_WRITE_PIO, .data = true, .pio = true,
56 { .cmd = CMD_READ_PIO_EXT, .data = true, .pio = true,
58 { .cmd = CMD_WRITE_PIO_EXT, .data = true, .pio = true,
68 { .cmd = CMD_IDENTIFY, .data = true, .pio = true,
78 .atapi = true, .pio = true },
79 { .cmd = CMD_PACKET_ID, .data = true, .pio = true,
535 PIOSetupFIS *pio = g_malloc0(0x20); in ahci_port_check_pio_sanity() local
541 qtest_memread(ahci->parent->qts, ahci->port[port].fb + 0x20, pio, 0x20); in ahci_port_check_pio_sanity()
542 g_assert_cmphex(pio->fis_type, ==, 0x5f); in ahci_port_check_pio_sanity()
550 g_assert(le16_to_cpu(pio->tx_count) == 12 || in ahci_port_check_pio_sanity()
551 le16_to_cpu(pio->tx_count) == 16); in ahci_port_check_pio_sanity()
558 g_assert_cmphex(le16_to_cpu(pio->tx_count), ==, pio_len); in ahci_port_check_pio_sanity()
560 g_free(pio); in ahci_port_check_pio_sanity()
895 g_assert(cmd->props->pio); in ahci_command_enable_atapi_dma()
908 g_assert(!(props->dma && props->pio) || props->atapi); in ahci_command_create()
1160 if (cmd->props->pio && sect_count > (cmd->props->read ? 0 : 1)) { in ahci_command_set_sizes()
1290 if (cmd->props->pio) { in ahci_command_verify()