• Home
  • Raw
  • Download

Lines Matching refs:uaa

810 umass_probe_proto(device_t dev, struct usb_attach_arg *uaa)  in umass_probe_proto()  argument
814 uint32_t proto = umass_get_proto(uaa->iface); in umass_probe_proto()
821 if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_BBB)) { in umass_probe_proto()
824 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_CBI)) { in umass_probe_proto()
827 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_WIRE_CBI_I)) { in umass_probe_proto()
832 if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_SCSI)) { in umass_probe_proto()
835 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_ATAPI)) { in umass_probe_proto()
838 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_UFI)) { in umass_probe_proto()
841 } else if (usb_test_quirk(uaa, UQ_MSC_FORCE_PROTO_RBC)) { in umass_probe_proto()
860 if (usb_test_quirk(uaa, UQ_MSC_NO_TEST_UNIT_READY)) in umass_probe_proto()
862 if (usb_test_quirk(uaa, UQ_MSC_NO_RS_CLEAR_UA)) in umass_probe_proto()
864 if (usb_test_quirk(uaa, UQ_MSC_NO_START_STOP)) in umass_probe_proto()
866 if (usb_test_quirk(uaa, UQ_MSC_NO_GETMAXLUN)) in umass_probe_proto()
868 if (usb_test_quirk(uaa, UQ_MSC_NO_INQUIRY)) in umass_probe_proto()
870 if (usb_test_quirk(uaa, UQ_MSC_NO_INQUIRY_EVPD)) in umass_probe_proto()
872 if (usb_test_quirk(uaa, UQ_MSC_NO_PREVENT_ALLOW)) in umass_probe_proto()
874 if (usb_test_quirk(uaa, UQ_MSC_NO_SYNC_CACHE)) in umass_probe_proto()
876 if (usb_test_quirk(uaa, UQ_MSC_SHUTTLE_INIT)) in umass_probe_proto()
878 if (usb_test_quirk(uaa, UQ_MSC_ALT_IFACE_1)) in umass_probe_proto()
880 if (usb_test_quirk(uaa, UQ_MSC_FLOPPY_SPEED)) in umass_probe_proto()
882 if (usb_test_quirk(uaa, UQ_MSC_IGNORE_RESIDUE)) in umass_probe_proto()
884 if (usb_test_quirk(uaa, UQ_MSC_WRONG_CSWSIG)) in umass_probe_proto()
886 if (usb_test_quirk(uaa, UQ_MSC_RBC_PAD_TO_12)) in umass_probe_proto()
888 if (usb_test_quirk(uaa, UQ_MSC_READ_CAP_OFFBY1)) in umass_probe_proto()
890 if (usb_test_quirk(uaa, UQ_MSC_FORCE_SHORT_INQ)) in umass_probe_proto()
902 struct usb_attach_arg *uaa = in umass_probe() local
906 if (uaa->usb_mode != USB_MODE_HOST) { in umass_probe()
909 temp = umass_probe_proto(dev, uaa); in umass_probe()
919 struct usb_attach_arg *uaa = in umass_attach() local
921 struct umass_probe_proto temp = umass_probe_proto(dev, uaa); in umass_attach()
932 sc->sc_udev = uaa->device; in umass_attach()
958 id = usbd_get_interface_descriptor(uaa->iface); in umass_attach()
1008 (uaa->device, uaa->info.bIfaceIndex, 1); in umass_attach()
1019 err = usbd_transfer_setup(uaa->device, in umass_attach()
1020 &uaa->info.bIfaceIndex, sc->sc_xfer, umass_bbb_config, in umass_attach()
1027 err = usbd_transfer_setup(uaa->device, in umass_attach()
1028 &uaa->info.bIfaceIndex, sc->sc_xfer, umass_cbi_config, in umass_attach()