Linux Remote Processor Subsystem development
 help / color / mirror / Atom feed
 messages from 2022-07-15 06:34:03 to 2022-07-28 08:18:25 UTC [more...]

[PATCH v13 00/42] virtio pci support VIRTIO_F_RING_RESET
 2022-07-28  8:09 UTC  (62+ messages)
` [PATCH v13 01/42] virtio: record the maximum queue num supported by the device
` [PATCH v13 02/42] virtio: struct virtio_config_ops add callbacks for queue_reset
` [PATCH v13 03/42] virtio_ring: update the document of the virtqueue_detach_unused_buf for queue reset
` [PATCH v13 04/42] virtio_ring: extract the logic of freeing vring
` [PATCH v13 05/42] virtio_ring: split vring_virtqueue
` [PATCH v13 06/42] virtio_ring: introduce virtqueue_init()
` [PATCH v13 07/42] virtio_ring: split: stop __vring_new_virtqueue as export symbol
` [PATCH v13 08/42] virtio_ring: split: __vring_new_virtqueue() accept struct vring_virtqueue_split
` [PATCH v13 09/42] virtio_ring: split: introduce vring_free_split()
` [PATCH v13 10/42] virtio_ring: split: extract the logic of alloc queue
` [PATCH v13 11/42] virtio_ring: split: extract the logic of alloc state and extra
` [PATCH v13 12/42] virtio_ring: split: extract the logic of vring init
` [PATCH v13 13/42] virtio_ring: split: extract the logic of attach vring
` [PATCH v13 14/42] virtio_ring: split: introduce virtqueue_reinit_split()
` [PATCH v13 15/42] virtio_ring: split: reserve vring_align, may_reduce_num
` [PATCH v13 16/42] virtio_ring: split: introduce virtqueue_resize_split()
` [PATCH v13 17/42] virtio_ring: packed: introduce vring_free_packed
` [PATCH v13 18/42] virtio_ring: packed: extract the logic of alloc queue
` [PATCH v13 19/42] virtio_ring: packed: extract the logic of alloc state and extra
` [PATCH v13 20/42] virtio_ring: packed: extract the logic of vring init
` [PATCH v13 21/42] virtio_ring: packed: extract the logic of attach vring
` [PATCH v13 22/42] virtio_ring: packed: introduce virtqueue_reinit_packed()
` [PATCH v13 23/42] virtio_ring: packed: introduce virtqueue_resize_packed()
` [PATCH v13 24/42] virtio_ring: introduce virtqueue_resize()
` [PATCH v13 25/42] virtio_pci: struct virtio_pci_common_cfg add queue_notify_data
` [PATCH v13 26/42] virtio: allow to unbreak/break virtqueue individually
` [PATCH v13 27/42] virtio: queue_reset: add VIRTIO_F_RING_RESET
` [PATCH v13 28/42] virtio_ring: struct virtqueue introduce reset
` [PATCH v13 29/42] virtio_pci: struct virtio_pci_common_cfg add queue_reset
` [PATCH v13 30/42] virtio_pci: introduce helper to get/set queue reset
` [PATCH v13 31/42] virtio_pci: extract the logic of active vq for modern pci
` [PATCH v13 32/42] virtio_pci: support VIRTIO_F_RING_RESET
` [PATCH v13 33/42] virtio: find_vqs() add arg sizes
` [PATCH v13 34/42] virtio_pci: support the arg sizes of find_vqs()
` [PATCH v13 35/42] virtio_mmio: "
` [PATCH v13 36/42] virtio: add helper virtio_find_vqs_ctx_size()
` [PATCH v13 37/42] virtio_net: set the default max ring size by find_vqs()
` [PATCH v13 38/42] virtio_net: get ringparam by virtqueue_get_vring_max_size()
` [PATCH v13 39/42] virtio_net: split free_unused_bufs()
` [PATCH v13 40/42] virtio_net: support rx queue resize
` [PATCH v13 41/42] virtio_net: support tx "
` [PATCH v13 42/42] virtio_net: support set_ringparam

[INFO] Remoteproc/RPMSG patchset review order for July 27th 2022
 2022-07-27 17:47 UTC 

[PATCH 0/4] Introduction of rpmsg_rx_done
 2022-07-27 17:25 UTC  (12+ messages)
` [PATCH 1/4] rpmsg: core: Add rx done hooks
` [PATCH 2/4] rpmsg: char: Add support to use rpmsg_rx_done
` [PATCH 4/4] rpmsg: glink: Add support for rpmsg_rx_done

[PATCH v2 0/5] remoteproc: qcom_q6v5_mss: Add MSM8909
 2022-07-26 17:19 UTC  (11+ messages)
` [PATCH v2 1/5] arm64: dts: qcom: msm8916: Drop MSS fallback compatible
` [PATCH v2 2/5] dt-bindings: remoteproc: qcom,q6v5: Move MSM8916 to schema
` [PATCH v2 3/5] dt-bindings: remoteproc: qcom,msm8916-mss-pil: Add MSM8974
` [PATCH v2 4/5] dt-bindings: remoteproc: qcom,msm8916-mss-pil: Add MSM8909
` [PATCH v2 5/5] remoteproc: qcom_q6v5_mss: Add support for MSM8909

[PATCH v7 0/4] remoteproc: restructure the remoteproc VirtIO device
 2022-07-26 16:48 UTC  (7+ messages)
` [PATCH v7 1/4] remoteproc: core: Introduce rproc_rvdev_add_device function
` [PATCH v7 3/4] remoteproc: Move rproc_vdev management to remoteproc_virtio.c
` [PATCH v7 4/4] remoteproc: virtio: Create platform device for the remoteproc_virtio

[PATCH] drivers/remoteproc: fix repeated words in comments
 2022-07-25 15:55 UTC  (2+ messages)

[PATCH v12 00/40] virtio pci support VIRTIO_F_RING_RESET
 2022-07-25  7:28 UTC  (60+ messages)
` [PATCH v12 01/40] virtio: record the maximum queue num supported by the device
` [PATCH v12 02/40] virtio: struct virtio_config_ops add callbacks for queue_reset
` [PATCH v12 03/40] virtio_ring: update the document of the virtqueue_detach_unused_buf for queue reset
` [PATCH v12 04/40] virtio_ring: extract the logic of freeing vring
` [PATCH v12 05/40] virtio_ring: split vring_virtqueue
` [PATCH v12 06/40] virtio_ring: introduce virtqueue_init()
` [PATCH v12 07/40] virtio_ring: split: introduce vring_free_split()
` [PATCH v12 08/40] virtio_ring: split: extract the logic of alloc queue
` [PATCH v12 09/40] virtio_ring: split: extract the logic of alloc state and extra
` [PATCH v12 10/40] virtio_ring: split: extract the logic of attach vring
` [PATCH v12 11/40] virtio_ring: split: extract the logic of vring init
` [PATCH v12 12/40] virtio_ring: split: introduce virtqueue_reinit_split()
` [PATCH v12 13/40] virtio_ring: split: reserve vring_align, may_reduce_num
` [PATCH v12 14/40] virtio_ring: split: introduce virtqueue_resize_split()
` [PATCH v12 15/40] virtio_ring: packed: introduce vring_free_packed
` [PATCH v12 16/40] virtio_ring: packed: extract the logic of alloc queue
` [PATCH v12 17/40] virtio_ring: packed: extract the logic of alloc state and extra
` [PATCH v12 18/40] virtio_ring: packed: extract the logic of attach vring
` [PATCH v12 19/40] virtio_ring: packed: extract the logic of vring init
` [PATCH v12 20/40] virtio_ring: packed: introduce virtqueue_reinit_packed()
` [PATCH v12 21/40] virtio_ring: packed: introduce virtqueue_resize_packed()
` [PATCH v12 22/40] virtio_ring: introduce virtqueue_resize()
` [PATCH v12 23/40] virtio_pci: struct virtio_pci_common_cfg add queue_notify_data
` [PATCH v12 24/40] virtio: allow to unbreak/break virtqueue individually
` [PATCH v12 25/40] virtio: queue_reset: add VIRTIO_F_RING_RESET
` [PATCH v12 26/40] virtio_ring: struct virtqueue introduce reset
` [PATCH v12 27/40] virtio_pci: struct virtio_pci_common_cfg add queue_reset
` [PATCH v12 28/40] virtio_pci: introduce helper to get/set queue reset
` [PATCH v12 29/40] virtio_pci: extract the logic of active vq for modern pci
` [PATCH v12 30/40] virtio_pci: support VIRTIO_F_RING_RESET
` [PATCH v12 31/40] virtio: find_vqs() add arg sizes
` [PATCH v12 32/40] virtio_pci: support the arg sizes of find_vqs()
` [PATCH v12 33/40] virtio_mmio: "
` [PATCH v12 34/40] virtio: add helper virtio_find_vqs_ctx_size()
` [PATCH v12 35/40] virtio_net: set the default max ring size by find_vqs()
` [PATCH v12 36/40] virtio_net: get ringparam by virtqueue_get_vring_max_size()
` [PATCH v12 37/40] virtio_net: split free_unused_bufs()
` [PATCH v12 38/40] virtio_net: support rx queue resize
` [PATCH v12 39/40] virtio_net: support tx "
` [PATCH v12 40/40] virtio_net: support set_ringparam

[INFO] Remoteproc/RPMSG patchset review order for July 14th 2022
 2022-07-24 12:57 UTC  (2+ messages)

[PATCH 1/2] dt-bindings: soc: qcom: smd: reference SMD edge schema
 2022-07-23  8:23 UTC  (2+ messages)
` [PATCH 2/2] dt-bindings: soc: qcom: smd-rpm: extend example

[PATCH v4 0/3] Add support for WASP SoC on AVM router boards
 2022-07-23  7:42 UTC  (4+ messages)
` [PATCH v4 1/3] dt-bindings: vendor-prefixes: Add AVM
` [PATCH v4 2/3] dt-bindings: remoteproc: Add AVM WASP
` [PATCH v4 3/3] remoteproc: Add AVM WASP driver

[PATCH v3 0/3] Add support for WASP SoC on AVM router boards
 2022-07-22 15:44 UTC  (5+ messages)
` [PATCH v3 1/3] dt-bindings: vendor-prefixes: Add AVM
` [PATCH v3 2/3] dt-bindings: remoteproc: Add AVM WASP
` [PATCH v3 3/3] remoteproc: Add AVM WASP driver

[PATCH] remoteproc: core: check state in rproc_boot
 2022-07-20  0:48 UTC  (3+ messages)

[PATCH v5 0/6] Introduce PRU remoteproc consumer API
 2022-07-19 16:17 UTC  (7+ messages)
` [PATCH v5 1/6] dt-bindings: remoteproc: Add PRU consumer bindings
` [PATCH v5 4/6] remoteproc: pru: Add pru_rproc_set_ctable() function
` [PATCH v5 6/6] remoteproc: pru: add support for configuring GPMUX based on client setup

[PATCH] rpmsg: convert sysfs snprintf to sysfs_emit
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[V4 0/2] Add modem debug features
 2022-07-18 22:59 UTC  (2+ messages)

[V3 0/7] Miscellaneous PAS fixes
 2022-07-18 22:59 UTC  (2+ messages)

[PATCH v2] remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after use
 2022-07-18 22:59 UTC  (3+ messages)
` (subset) "

[PATCH v4 ] remoteproc: Use unbounded workqueue for recovery work
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH] remoteproc: Directly use ida_alloc()/free()
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH] rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH v2] remoteproc: qcom: correct kerneldoc
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH v2 1/3] rpmsg: qcom: glink: replace strncpy() with strscpy_pad()
 2022-07-18 22:59 UTC  (2+ messages)

[PATCH] remoteproc: using pm_runtime_resume_and_get instead of pm_runtime_get_sync
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH 1/8] clk: qcom: alpha-pll: correct kerneldoc
 2022-07-18 22:59 UTC  (3+ messages)
` [PATCH 4/8] rpmsg: qcom: glink: replace strncpy() with strscpy_pad()
  ` (subset) "

[PATCH] remoteproc: qcom: q6v5-mss: add powerdomains to MSM8996 config
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH] remoteproc: qcom: using pm_runtime_resume_and_get to simplify the code
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH] remoteproc: qcom_q6v5_pas: Deal silently with optional px and cx regulators
 2022-07-18 22:59 UTC  (2+ messages)
` (subset) "

[PATCH v1 0/2] Add support for MT8188 SCP
 2022-07-18 17:19 UTC  (6+ messages)
` [PATCH v1 1/2] dt-bindings: remoteproc: mediatek: Add binding for mt8188 scp
` [PATCH v1 2/2] remoteproc: mediatek: Support MT8188 SCP

[PATCH v2] remoteproc: qcom: q6v5: Use _clk_get_optional for aggre2_clk
 2022-07-18 12:15 UTC 

[PATCH v11 00/40] virtio pci support VIRTIO_F_RING_RESET
 2022-07-18  9:11 UTC  (15+ messages)
` [PATCH v11 38/40] virtio_net: support rx queue resize
` [PATCH v11 39/40] virtio_net: support tx "

[PATCH] remoteproc: qcom: q6v5: Use _clk_get_optional for aggre2_clk
 2022-07-18  7:06 UTC  (3+ messages)

[PATCH v2 1/3] hwspinlock: qcom: Add support for mmio usage to sfpb-mutex
 2022-07-17  9:23 UTC  (5+ messages)
` [PATCH v2 2/3] ARM: dts: qcom: add missing hwlock for ipq8064 dtsi
` (subset) [PATCH v2 1/3] hwspinlock: qcom: Add support for mmio usage to sfpb-mutex

[PATCH 0/6] remoteproc: qcom_q6v5_mss: Add MSM8909
 2022-07-17  3:08 UTC  (12+ messages)
` [PATCH 2/6] dt-bindings: remoteproc: qcom,q6v5: Move MSM8916 to schema
` [PATCH 3/6] ARM: dts: qcom: msm8974: Disable remoteprocs by default
  ` (subset) "

[V5 0/2] Add support for proxy interconnect bandwidth votes
 2022-07-15 19:44 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox