Lines Matching refs:CDB
363 debug("cbw: ucOperCode=%x\n", cbw->CDB[0]); in printcbw()
364 debug("cbw: ucReserved=%x\n", cbw->CDB[1]); in printcbw()
365 debug("cbw: dwAddress:%x %x %x %x\n", cbw->CDB[5], cbw->CDB[4], in printcbw()
366 cbw->CDB[3], cbw->CDB[2]); in printcbw()
367 debug("cbw: ucReserved2=%x\n", cbw->CDB[6]); in printcbw()
368 debug("cbw: uslength:%x %x\n", cbw->CDB[8], cbw->CDB[7]); in printcbw()
628 sector_count = (int)get_unaligned_be16(&cbw->CDB[7]); in cb_read_lba()
645 f_rkusb->lba = get_unaligned_be32(&cbw->CDB[2]); in cb_read_lba()
670 sector_count = (int)get_unaligned_be16(&cbw->CDB[7]); in cb_write_lba()
687 f_rkusb->lba = get_unaligned_be32(&cbw->CDB[2]); in cb_write_lba()
711 sector_count = (int)get_unaligned_be16(&cbw->CDB[7]); in cb_erase_lba()
728 lba = get_unaligned_be32(&cbw->CDB[2]); in cb_erase_lba()
769 f_rkusb->reboot_flag = cbw->CDB[1]; in cb_reboot()
781 printf("Rockusb command %x not support yet\n", cbw->CDB[0]); in cb_not_support()
910 if (cmd_dispatch_info[i].cmd == cbw->CDB[0]) { in rx_handler_command()