ARM Sunxi Platform Development
 help / color / mirror / Atom feed
 messages from 2025-09-17 17:19:56 to 2025-10-02 20:57:00 UTC [more...]

[PATCH 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
 2025-10-02 20:47 UTC  (19+ messages)
` [PATCH 01/19 5.15.y] minmax: add in_range() macro
` [PATCH 02/19 5.15.y] minmax: Introduce {min,max}_array()
` [PATCH 03/19 5.15.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH 04/19 5.15.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` [PATCH 05/19 5.15.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 06/19 5.15.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 07/19 5.15.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 08/19 5.15.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 09/19 5.15.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 10/19 5.15.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 11/19 5.15.y] minmax: improve macro expansion and type checking
` [PATCH 12/19 5.15.y] minmax: fix up min3() and max3() too
` [PATCH 13/19 5.15.y] minmax.h: add whitespace around operators and after commas
` [PATCH 14/19 5.15.y] minmax.h: update some comments
` [PATCH 15/19 5.15.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 16/19 5.15.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 17/19 5.15.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 18/19 5.15.y] minmax.h: simplify the variants of clamp()

[PATCH v3 00/11 6.1.y] Backport minmax.h updates from v6.17-rc7
 2025-10-02 18:00 UTC  (12+ messages)
` [PATCH v3 01/11 6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v3 02/11 6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v3 03/11 6.1.y] minmax: improve macro expansion and type checking
` [PATCH v3 04/11 6.1.y] minmax: fix up min3() and max3() too
` [PATCH v3 05/11 6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH v3 06/11 6.1.y] minmax.h: update some comments
` [PATCH v3 07/11 6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH v3 08/11 6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH v3 09/11 6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH v3 10/11 6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH v3 11/11 6.1.y] minmax.h: remove some #defines that are only expanded once

[PATCH] ARM: dts: allwinner: Minor whitespace cleanup
 2025-10-02 16:27 UTC  (2+ messages)

[PATCH net-next v8 0/2] net: stmmac: Add support for Allwinner A523 GMAC200
 2025-10-01  8:05 UTC  (11+ messages)
` [PATCH net-next v8 1/2] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
` [PATCH net-next v8 2/2] net: stmmac: Add support for Allwinner A523 GMAC200

[PATCH v5 00/39] drm/atomic: Get rid of existing states (not really)
 2025-09-30 10:59 UTC  (2+ messages)
` [PATCH v5 28/39] drm/sun4i: Switch to drm_atomic_get_new_crtc_state()

[PATCH v3 00/11] drm/connector: hdmi: limit infoframes per driver capabilities
 2025-09-30  7:02 UTC  (13+ messages)

[PATCH 00/19 v6.1.y] Backport minmax.h updates from v6.17-rc7
 2025-09-29 18:39 UTC  (32+ messages)
` [PATCH 01/19 v6.1.y] minmax: add in_range() macro
  ` Patch "minmax: add in_range() macro" has been added to the 6.1-stable tree
` [PATCH 02/19 v6.1.y] minmax: Introduce {min,max}_array()
  ` Patch "minmax: Introduce {min,max}_array()" has been added to the 6.1-stable tree
` [PATCH 03/19 v6.1.y] minmax: deduplicate __unconst_integer_typeof()
  ` Patch "minmax: deduplicate __unconst_integer_typeof()" has been added to the 6.1-stable tree
` [PATCH 04/19 v6.1.y] minmax: fix indentation of __cmp_once() and __clamp_once()
  ` Patch "minmax: fix indentation of __cmp_once() and __clamp_once()" has been added to the 6.1-stable tree
` [PATCH 05/19 v6.1.y] minmax: avoid overly complicated constant expressions in VM code
  ` Patch "minmax: avoid overly complicated constant expressions in VM code" has been added to the 6.1-stable tree
` [PATCH 06/19 v6.1.y] minmax: simplify and clarify min_t()/max_t() implementation
  ` Patch "minmax: simplify and clarify min_t()/max_t() implementation" has been added to the 6.1-stable tree
` [PATCH 07/19 v6.1.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 08/19 v6.1.y] minmax: add a few more MIN_T/MAX_T users
  ` Patch "minmax: add a few more MIN_T/MAX_T users" has been added to the 6.1-stable tree
` [PATCH 09/19 v6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 10/19 v6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 11/19 v6.1.y] minmax: improve macro expansion and type checking
` [PATCH 12/19 v6.1.y] minmax: fix up min3() and max3() too
` [PATCH 13/19 v6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH 14/19 v6.1.y] minmax.h: update some comments
` [PATCH 15/19 v6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 16/19 v6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 17/19 v6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 18/19 v6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH 19/19 v6.1.y] minmax.h: remove some #defines that are only expanded once

[PATCH v2 0/9] drm/connector: hdmi: limit infoframes per driver capabilities, second approach
 2025-09-29  9:10 UTC  (13+ messages)
` [PATCH v2 1/9] drm/display: hdmi-state-helpers: warn on unsupported InfoFrame types
` [PATCH v2 2/9] drm/bridge: adv7511: handle unsupported InfoFrames
` [PATCH v2 3/9] drm/bridge: ite-it6263: "
` [PATCH v2 4/9] drm/bridge: lontium-lt9611: "
` [PATCH v2 5/9] drm/bridge: synopsys/dw-hdmi-qp: "
` [PATCH v2 6/9] drm/msm: hdmi: "
` [PATCH v2 7/9] drm/rockchip: rk3066_hdmi: "
` [PATCH v2 8/9] drm/rockchip: inno-hdmi: "
` [PATCH v2 9/9] drm/sun4i: hdmi: "

ASoC: sun4i-codec: Missing snd_soc_component_driver names causing NULL pointer dereference
 2025-09-27 18:52 UTC  (4+ messages)

[PATCH 0/9] drm/connector: hdmi: limit infoframes per driver capabilities, second approach
 2025-09-27 12:48 UTC  (12+ messages)
` [PATCH 1/9] drm/display: hdmi-state-helpers: warn on unsupported InfoFrame types
` [PATCH 2/9] drm/bridge: adv7511: handle unsupported InfoFrames
` [PATCH 3/9] drm/bridge: ite-it6263: "
` [PATCH 4/9] drm/bridge: lontium-lt9611: "
` [PATCH 5/9] drm/bridge: synopsys/dw-hdmi-qp: "
` [PATCH 6/9] drm/msm: hdmi: "
` [PATCH 7/9] drm/rockchip: rk3066_hdmi: "
` [PATCH 8/9] drm/rockchip: inno-hdmi: "
` [PATCH 9/9] drm/sun4i: hdmi: "

[RFC PATCH 0/5] mfd: axp20x: program poly-phased regulators
 2025-09-25 15:02 UTC  (11+ messages)
` [RFC PATCH 1/5] dt-bindings: mfd: x-powers,axp152: Add polyphased property
` [RFC PATCH 2/5] mfd: axp20x: Refactor axp20x_is_polyphase_slave()
` [RFC PATCH 3/5] mfd: axp20x: Allow programming dual-phase regulator pairs
` [RFC PATCH 4/5] mfd: axp20x: Support tri-phase setup
` [RFC PATCH 5/5] arm64: dts: allwinner: a523: Mark dual-phased regulators

[PATCH v4 00/10] drm/connector: hdmi: limit infoframes per driver capabilities
 2025-09-25 14:55 UTC  (6+ messages)
` [PATCH v4 01/10] drm/connector: let drivers declare infoframes as unsupported

[PATCH net-next v7 0/6] net: stmmac: Add support for Allwinner A523 GMAC200
 2025-09-25  0:53 UTC  (9+ messages)
` [PATCH net-next v7 1/6] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
` [PATCH net-next v7 2/6] net: stmmac: Add support for Allwinner A523 GMAC200
` [PATCH net-next v7 3/6] arm64: dts: allwinner: a523: Add GMAC200 ethernet controller
` [PATCH net-next v7 4/6] arm64: dts: allwinner: a527: cubie-a5e: Enable second Ethernet port
` [PATCH net-next v7 5/6] arm64: dts: allwinner: t527: avaota-a1: enable "
` [PATCH net-next v7 6/6] arm64: dts: allwinner: t527: orangepi-4a: Enable "

[PATCH v4 0/7] Disable ATS via iommu during PCI resets
 2025-09-24 21:02 UTC  (25+ messages)
` [PATCH v4 1/7] iommu/arm-smmu-v3: Add release_domain to attach prior to release_dev()
` [PATCH v4 4/7] iommu: Pass in old domain to attach_dev callback functions
` [PATCH v4 5/7] iommu: Add iommu_get_domain_for_dev_locked() helper
` [PATCH v4 6/7] iommu: Introduce iommu_dev_reset_prepare() and iommu_dev_reset_done()

[PATCH] Allwinner: fix booting on a number of devices
 2025-09-24  9:56 UTC 

[GIT PULL] Allwinner Device Tree changes for 6.18 part 2
 2025-09-22 14:45 UTC 

[PATCH 00/15 v6.6.y] Backport minmax.h updates from v6.17-rc7
 2025-09-22 12:40 UTC  (25+ messages)
` [PATCH 01/15 6.6.y] minmax: avoid overly complicated constant expressions in VM code
  ` Patch "minmax: avoid overly complicated constant expressions in VM code" has been added to the 6.6-stable tree
` [PATCH 02/15 6.6.y] minmax: simplify and clarify min_t()/max_t() implementation
  ` Patch "minmax: simplify and clarify min_t()/max_t() implementation" has been added to the 6.6-stable tree
` [PATCH 03/15 6.6.y] minmax: add a few more MIN_T/MAX_T users
  ` Patch "minmax: add a few more MIN_T/MAX_T users" has been added to the 6.6-stable tree
` [PATCH 04/15 6.6.y] minmax: make generic MIN() and MAX() macros available everywhere
  ` Patch "minmax: make generic MIN() and MAX() macros available everywhere" has been added to the 6.6-stable tree
` [PATCH 05/15 6.6.y] minmax: simplify min()/max()/clamp() implementation
  ` Patch "minmax: simplify min()/max()/clamp() implementation" has been added to the 6.6-stable tree
` [PATCH 06/15 6.6.y] minmax: don't use max() in situations that want a C constant expression
  ` Patch "minmax: don't use max() in situations that want a C constant expression" has been added to the 6.6-stable tree
` [PATCH 07/15 6.6.y] minmax: improve macro expansion and type checking
  ` Patch "minmax: improve macro expansion and type checking" has been added to the 6.6-stable tree
` [PATCH 08/15 6.6.y] minmax: fix up min3() and max3() too
  ` Patch "minmax: fix up min3() and max3() too" has been added to the 6.6-stable tree
` [PATCH 09/15 6.6.y] minmax.h: add whitespace around operators and after commas
` [PATCH 10/15 6.6.y] minmax.h: update some comments
` [PATCH 11/15 6.6.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 12/15 6.6.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 13/15 6.6.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 14/15 6.6.y] minmax.h: simplify the variants of clamp()
` [PATCH 15/15 6.6.y] minmax.h: remove some #defines that are only expanded once

[PATCH v2 00/10] media: Introduce video device state management
 2025-09-20 10:48 UTC  (3+ messages)
` [PATCH v2 06/10] media: Replace void * with video_device_state * in all driver ioctl implementations

[GIT PULL] Allwinner clock changes for 6.18
 2025-09-20  4:56 UTC  (2+ messages)

[GIT PULL] Allwinner clock fixes for 6.17
 2025-09-20  4:30 UTC  (2+ messages)

[PATCH net-next 00/10] net: stmmac: remove mac_interface
 2025-09-20  0:30 UTC  (4+ messages)
` [PATCH net-next 10/10] "

[PATCH 0/4] can: populate ndo_change_mtu() to prevent buffer overflow
 2025-09-19 17:04 UTC  (6+ messages)
` [PATCH 1/4] can: etas_es58x: "
` [PATCH 2/4] can: hi311x: "
` [PATCH 3/4] can: sun4i_can: "
` [PATCH 4/4] can: mcba_usb: "

[PATCH v2 0/2] Initial Amediatech X96Q support based on Allwinner H313
 2025-09-19  6:51 UTC  (6+ messages)
` [PATCH v2 1/2] dt-bindings: arm: sunxi: Add Amediatech X96Q
` [PATCH v2 2/2] arm64: dts: allwinner: h313: "

[PATCH net-next v6 2/6] net: stmmac: Add support for Allwinner A523 GMAC200
 2025-09-18  6:50 UTC  (2+ messages)

[PATCH v2] sunxi: extend R528/T113-s3/D1(s) DRAM initialisation
 2025-09-17 21:48 UTC  (2+ messages)

DTS fix/help needed
 2025-09-17 20:04 UTC 

[GIT PULL] Allwinner Device Tree changes for 6.18
 2025-09-17 17:19 UTC 


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