Commit 07281a25 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull USB / Thunderbolt updates from Greg KH:
 "Here is the big set of USB and Thunderbolt patches for 5.15-rc1.

  Nothing huge in here, just lots of constant forward progress on a
  number of different drivers and hardware support:

   - more USB 4/Thunderbolt support added

   - dwc3 driver updates and additions

   - usb gadget fixes and addtions for new types

   - udc gadget driver updates

   - host controller updates

   - removal of obsolete drivers

   - other minor driver updates

  All of these have been in linux-next for a while with no reported
  issues"

* tag 'usb-5.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (148 commits)
  usb: isp1760: otg control register access
  usb: isp1760: use the right irq status bit
  usb: isp1760: write to status and address register
  usb: isp1760: fix qtd fill length
  usb: isp1760: fix memory pool initialization
  usb: typec: tcpm: Fix spelling mistake "atleast" -> "at least"
  usb: dwc2: Fix spelling mistake "was't" -> "wasn't"
  usb: renesas_usbhs: Fix spelling mistake "faile" -> "failed"
  usb: host: xhci-rcar: Don't reload firmware after the completion
  usb: xhci-mtk: allow bandwidth table rollover
  usb: mtu3: fix random remote wakeup
  usb: mtu3: return successful suspend status
  usb: xhci-mtk: Do not use xhci's virt_dev in drop_endpoint
  usb: xhci-mtk: modify the SOF/ITP interval for mt8195
  usb: xhci-mtk: add a member of num_esit
  usb: xhci-mtk: check boundary before check tt
  usb: xhci-mtk: update fs bus bandwidth by bw_budget_table
  usb: xhci-mtk: fix issue of out-of-bounds array access
  usb: xhci-mtk: support option to disable usb2 ports
  usb: xhci-mtk: fix use-after-free of mtk->hcd
  ...
parents 7c314bdf 9c1587d9
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -8,9 +8,19 @@ Description:
		c_chmask	capture channel mask
		c_srate		capture sampling rate
		c_ssize		capture sample size (bytes)
		c_mute_present	capture mute control enable
		c_volume_present	capture volume control enable
		c_volume_min	capture volume control min value (in 1/256 dB)
		c_volume_max	capture volume control max value (in 1/256 dB)
		c_volume_res	capture volume control resolution (in 1/256 dB)
		p_chmask	playback channel mask
		p_srate		playback sampling rate
		p_ssize		playback sample size (bytes)
		p_mute_present	playback mute control enable
		p_volume_present	playback volume control enable
		p_volume_min	playback volume control min value (in 1/256 dB)
		p_volume_max	playback volume control max value (in 1/256 dB)
		p_volume_res	playback volume control resolution (in 1/256 dB)
		req_number	the number of pre-allocated request
				for both capture and playback
		==========	===================================
+10 −0
Original line number Diff line number Diff line
@@ -9,8 +9,18 @@ Description:
		c_srate    capture sampling rate
		c_ssize    capture sample size (bytes)
		c_sync     capture synchronization type (async/adaptive)
		c_mute_present	capture mute control enable
		c_volume_present	capture volume control enable
		c_volume_min	capture volume control min value (in 1/256 dB)
		c_volume_max	capture volume control max value (in 1/256 dB)
		c_volume_res	capture volume control resolution (in 1/256 dB)
		fb_max     maximum extra bandwidth in async mode
		p_chmask   playback channel mask
		p_srate    playback sampling rate
		p_ssize    playback sample size (bytes)
		p_mute_present	playback mute control enable
		p_volume_present	playback volume control enable
		p_volume_min	playback volume control min value (in 1/256 dB)
		p_volume_max	playback volume control max value (in 1/256 dB)
		p_volume_res	playback volume control resolution (in 1/256 dB)
		=========  ============================
+4 −0
Original line number Diff line number Diff line
@@ -111,6 +111,10 @@ properties:
      - 1.5A
      - 3.0A

  pd-disable:
    description: Set this property if the Type-C connector has no power delivery support.
    type: boolean

  # The following are optional properties for "usb-c-connector" with power
  # delivery support.
  source-pdos:
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ properties:
  compatible:
    enum:
      - qcom,sc7180-qmp-usb3-dp-phy
      - qcom,sc7280-qmp-usb3-dp-phy
      - qcom,sc8180x-qmp-usb3-dp-phy
      - qcom,sdm845-qmp-usb3-dp-phy
      - qcom,sm8250-qmp-usb3-dp-phy
+6 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ properties:
              - allwinner,sun6i-a31-ehci
              - allwinner,sun7i-a20-ehci
              - allwinner,sun8i-a23-ehci
              - allwinner,sun8i-a83t-ehci
              - allwinner,sun8i-h3-ehci
              - allwinner,sun8i-r40-ehci
              - allwinner,sun9i-a80-ehci
@@ -142,6 +143,11 @@ properties:
  iommus:
    maxItems: 1

  dr_mode:
    enum:
      - host
      - otg

required:
  - compatible
  - reg
Loading