Changeset 8d2dd7f2 in mainline for uspace/drv/bus
- Timestamp:
- 2017-05-13T19:03:14Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/drv/bus/usb
- Files:
-
- 31 edited
-
ehci/ehci_regs.h (modified) (1 diff)
-
ehci/ehci_rh.c (modified) (1 diff)
-
ehci/ehci_rh.h (modified) (1 diff)
-
ehci/endpoint_list.h (modified) (1 diff)
-
ehci/hc.c (modified) (1 diff)
-
ehci/hc.h (modified) (1 diff)
-
ehci/hw_struct/iso_transfer_descriptor.h (modified) (1 diff)
-
ehci/hw_struct/link_pointer.h (modified) (1 diff)
-
ehci/hw_struct/queue_head.h (modified) (1 diff)
-
ehci/hw_struct/split_iso_transfer_descriptor.h (modified) (1 diff)
-
ehci/hw_struct/transfer_descriptor.h (modified) (1 diff)
-
ohci/endpoint_list.h (modified) (1 diff)
-
ohci/hc.c (modified) (1 diff)
-
ohci/hc.h (modified) (1 diff)
-
ohci/hw_struct/endpoint_descriptor.h (modified) (1 diff)
-
ohci/hw_struct/hcca.h (modified) (1 diff)
-
ohci/hw_struct/iso_transfer_descriptor.h (modified) (1 diff)
-
ohci/ohci_rh.c (modified) (1 diff)
-
ohci/ohci_rh.h (modified) (1 diff)
-
uhci/hc.c (modified) (1 diff)
-
uhci/hw_struct/link_pointer.h (modified) (1 diff)
-
uhci/hw_struct/queue_head.h (modified) (1 diff)
-
uhci/hw_struct/transfer_descriptor.h (modified) (1 diff)
-
uhci/transfer_list.c (modified) (1 diff)
-
uhci/uhci_batch.h (modified) (1 diff)
-
usbhub/status.h (modified) (1 diff)
-
usbmast/bo_trans.h (modified) (1 diff)
-
usbmast/cmdw.c (modified) (1 diff)
-
usbmast/cmdw.h (modified) (1 diff)
-
usbmast/scsi_ms.h (modified) (1 diff)
-
usbmast/usbmast.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_regs.h
re48947e r8d2dd7f2 34 34 #ifndef DRV_EHCI_EHCI_REGS_H 35 35 #define DRV_EHCI_EHCI_REGS_H 36 36 37 #include <sys/types.h> 37 38 #include <byteorder.h> -
uspace/drv/bus/usb/ehci/ehci_rh.c
re48947e r8d2dd7f2 37 37 #include <mem.h> 38 38 #include <str_error.h> 39 #include <sys/types.h> 39 #include <stdint.h> 40 #include <stddef.h> 40 41 41 42 #include <usb/classes/hub.h> -
uspace/drv/bus/usb/ehci/ehci_rh.h
re48947e r8d2dd7f2 36 36 37 37 #include <assert.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 #include <usb/usb.h> -
uspace/drv/bus/usb/ehci/endpoint_list.h
re48947e r8d2dd7f2 38 38 #include <assert.h> 39 39 #include <fibril_synch.h> 40 #include <sys/types.h>41 40 #include <usb/host/utils/malloc32.h> 42 41 -
uspace/drv/bus/usb/ehci/hc.c
re48947e r8d2dd7f2 40 40 #include <mem.h> 41 41 #include <stdlib.h> 42 #include <stdint.h> 42 43 #include <str_error.h> 43 #include <sys/types.h>44 44 45 45 #include <usb/debug.h> -
uspace/drv/bus/usb/ehci/hc.h
re48947e r8d2dd7f2 42 42 #include <fibril_synch.h> 43 43 #include <stdbool.h> 44 #include <s ys/types.h>44 #include <stdint.h> 45 45 46 46 #include <usb/host/hcd.h> -
uspace/drv/bus/usb/ehci/hw_struct/iso_transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_ISO_TRANSFER_DESCRIPTOR_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include "link_pointer.h" 39 39 -
uspace/drv/bus/usb/ehci/hw_struct/link_pointer.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_LINK_POINTER_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 39 39 /** EHCI link pointer, used by many data structures */ -
uspace/drv/bus/usb/ehci/hw_struct/queue_head.h
re48947e r8d2dd7f2 36 36 37 37 #include <assert.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <usb/host/endpoint.h> 40 40 #include <usb/host/utils/malloc32.h> -
uspace/drv/bus/usb/ehci/hw_struct/split_iso_transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_SPLIT_ISO_TRANSFER_DESCRIPTOR_H 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include "link_pointer.h" 39 39 -
uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
re48947e r8d2dd7f2 35 35 #define DRV_EHCI_HW_STRUCT_TRANSFER_DESCRIPTOR_H 36 36 37 #include <sys/types.h> 37 #include <stddef.h> 38 #include <stdint.h> 38 39 #include "link_pointer.h" 39 40 #include "mem_access.h" -
uspace/drv/bus/usb/ohci/endpoint_list.h
re48947e r8d2dd7f2 38 38 #include <assert.h> 39 39 #include <fibril_synch.h> 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <usb/host/utils/malloc32.h> 42 42 -
uspace/drv/bus/usb/ohci/hc.c
re48947e r8d2dd7f2 41 41 #include <stdlib.h> 42 42 #include <str_error.h> 43 #include <sys/types.h> 43 #include <stddef.h> 44 #include <stdint.h> 44 45 45 46 #include <usb/debug.h> -
uspace/drv/bus/usb/ohci/hc.h
re48947e r8d2dd7f2 44 44 #include <fibril_synch.h> 45 45 #include <stdbool.h> 46 #include <s ys/types.h>46 #include <stdint.h> 47 47 48 48 #include <usb/host/hcd.h> -
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.h
re48947e r8d2dd7f2 37 37 #include <assert.h> 38 38 #include <stdbool.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #include <usb/host/endpoint.h> -
uspace/drv/bus/usb/ohci/hw_struct/hcca.h
re48947e r8d2dd7f2 38 38 39 39 #include <malloc.h> 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <macros.h> 42 42 #include <assert.h> -
uspace/drv/bus/usb/ohci/hw_struct/iso_transfer_descriptor.h
re48947e r8d2dd7f2 37 37 #define DRV_OHCI_HW_STRUCT_ISO_TRANSFER_DESCRIPTOR_H 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #include "completion_codes.h" -
uspace/drv/bus/usb/ohci/ohci_rh.c
re48947e r8d2dd7f2 36 36 #include <errno.h> 37 37 #include <mem.h> 38 #include <sys/types.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 #include <usb/classes/hub.h> -
uspace/drv/bus/usb/ohci/ohci_rh.h
re48947e r8d2dd7f2 36 36 37 37 #include <assert.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 40 40 #include <usb/usb.h> -
uspace/drv/bus/usb/uhci/hc.c
re48947e r8d2dd7f2 44 44 #include <mem.h> 45 45 #include <stdlib.h> 46 #include <stdint.h> 46 47 #include <str_error.h> 47 #include <sys/types.h>48 48 49 49 #include <usb/debug.h> -
uspace/drv/bus/usb/uhci/hw_struct/link_pointer.h
re48947e r8d2dd7f2 37 37 #define DRV_UHCI_HW_STRUCT_LINK_POINTER_H 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 /** UHCI link pointer, used by many data structures */ -
uspace/drv/bus/usb/uhci/hw_struct/queue_head.h
re48947e r8d2dd7f2 38 38 39 39 #include <assert.h> 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <usb/host/utils/malloc32.h> 42 42 -
uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h
re48947e r8d2dd7f2 40 40 #include <usb/usb.h> 41 41 #include <stdbool.h> 42 #include <sys/types.h> 42 #include <stddef.h> 43 #include <stdint.h> 43 44 44 45 #include "link_pointer.h" -
uspace/drv/bus/usb/uhci/transfer_list.c
re48947e r8d2dd7f2 37 37 #include <errno.h> 38 38 #include <libarch/barrier.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <usb/debug.h> 41 41 #include <usb/host/usb_transfer_batch.h> -
uspace/drv/bus/usb/uhci/uhci_batch.h
re48947e r8d2dd7f2 41 41 #include <errno.h> 42 42 #include <stdbool.h> 43 #include <s ys/types.h>43 #include <stddef.h> 44 44 #include <usb/host/usb_transfer_batch.h> 45 45 -
uspace/drv/bus/usb/usbhub/status.h
re48947e r8d2dd7f2 36 36 37 37 #include <stdbool.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <usb/dev/request.h> 40 40 -
uspace/drv/bus/usb/usbmast/bo_trans.h
re48947e r8d2dd7f2 38 38 39 39 #include <scsi/spc.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <usb/usb.h> 42 43 #include <usb/dev/pipes.h> -
uspace/drv/bus/usb/usbmast/cmdw.c
re48947e r8d2dd7f2 36 36 #include <byteorder.h> 37 37 #include <mem.h> 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <usb/usb.h> 40 40 #include "cmdw.h" -
uspace/drv/bus/usb/usbmast/cmdw.h
re48947e r8d2dd7f2 37 37 #define CMDW_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <usb/usb.h> 41 41 -
uspace/drv/bus/usb/usbmast/scsi_ms.h
re48947e r8d2dd7f2 38 38 39 39 #include <scsi/spc.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <usb/usb.h> 42 43 #include <usb/dev/driver.h> -
uspace/drv/bus/usb/usbmast/usbmast.h
re48947e r8d2dd7f2 38 38 39 39 #include <bd_srv.h> 40 #include <sys/types.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <usb/usb.h> 42 43
Note:
See TracChangeset
for help on using the changeset viewer.
