<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/phy/apple/Makefile#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/phy/apple/Makefile</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9b725d5959a1d9bb670ccdb23add45f0eaafefb5 - Merge tag &apos;phy-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/phy/apple/Makefile#9b725d5959a1d9bb670ccdb23add45f0eaafefb5</link>
        <description>Merge tag &apos;phy-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phyPull phy updates from Vinod Koul: &quot;Core:   - Add suuport for &quot;rx-polarity&quot; and &quot;tx-polarity&quot; device tree     properties and phy common properties to manage this  New Support:   - Qualcomm Glymur PCIe Gen4 2-lanes PCIe phy, DP and edp phy, USB UNI     PHY and SMB2370 eUSB2 repeater. SC8280xp QMP UFS PHY, Kaanapali     PCIe phy and QMP PHY, QCS615 QMP USB3+DP PHY and driver support for     that.   - SpacemiT PCIe/combo PHY and K1 USB2 PHY driver.   - HDMI 2.1 FRL configuration support and driver enabling for rockchip     samsung-hdptx driver   - TI TCAN1046 phy   - Renesas RZ/V2H(P) and RZ/V2N usb3   - Mediatek MT8188 hdmi-phy   - Google Tensor SoC USB PHY driver   - Apple Type-C PHY  Updates:   - Subsystem conversion for clock round_rate() to determine_rate()   - TI USB3 DT schema conversion   - Samsung ExynosAutov920 usb3, combo hsphy and ssphy support&quot;* tag &apos;phy-for-7.0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy: (143 commits)  phy: ti: phy-j721e-wiz: convert from divider_round_rate() to divider_determine_rate()  dt-bindings: phy: ti,control-phy-otghs: convert to DT schema  dt-bindings: phy: ti,phy-usb3: convert to DT schema  phy: tegra: xusb: Remove unused powered_on variable  phy: renesas: rcar-gen3-usb2: add regulator dependency  phy: GOOGLE_USB: add TYPEC dependency  phy: enter drivers/phy/Makefile even without CONFIG_GENERIC_PHY  phy: renesas: rcar-gen3-usb2: Use mux-state for phyrst management  phy: renesas: rcar-gen3-usb2: Add regulator for OTG VBUS control  phy: renesas: rcar-gen3-usb2: Use devm_pm_runtime_enable()  phy: renesas: rcar-gen3-usb2: Factor out VBUS control logic  dt-bindings: phy: renesas,usb2-phy: Document RZ/G3E SoC  dt-bindings: phy: renesas,usb2-phy: Document mux-states property  dt-bindings: phy: renesas,usb2-phy: Document USB VBUS regulator  phy: rockchip: samsung-hdptx: Add HDMI 2.1 FRL support  phy: rockchip: samsung-hdptx: Extend rk_hdptx_phy_verify_hdmi_config() helper  phy: rockchip: samsung-hdptx: Switch to driver specific HDMI config  phy: rockchip: samsung-hdptx: Drop hw_rate driver data  phy: rockchip: samsung-hdptx: Compute clk rate from PLL config  phy: rockchip: samsung-hdptx: Cleanup *_cmn_init_seq lists  ...

            List of files:
            /linux/drivers/phy/apple/Makefile</description>
        <pubDate>Tue, 17 Feb 2026 20:40:04 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8e98ca1e74db2ae051c9b545d42b879efa5a2f6c - phy: apple: Add Apple Type-C PHY</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/phy/apple/Makefile#8e98ca1e74db2ae051c9b545d42b879efa5a2f6c</link>
        <description>phy: apple: Add Apple Type-C PHYThe Apple Type-C PHY (ATCPHY) is a PHY for USB 2.0, USB 3.x,USB4/Thunderbolt, and DisplayPort connectivity found in Apple Silicon SoCs.The PHY handles muxing between these different protocols and also providesthe reset controller for the attached dwc3 USB controller.There is no documentation available for this PHY and the entire sequenceof MMIO pokes has been figured out by tracing all MMIO access of Apple&apos;sdriver under a thin hypervisor and correlating the register reads/writesto their kernel&apos;s debug output to find their names. Deviations from thissequence generally results in the port not working or, especially whenthe mode is switched to USB4 or Thunderbolt, to some watchdog resettingthe entire SoC.This initial commit already introduces support for Display Port andUSB4/Thunderbolt but the drivers for these are not ready. We cannotcontrol the alternate mode negotiation and are stuck with whatever Apple&apos;sfirmware decides such that any DisplayPort or USB4/Thunderbolt device willresult in a correctly setup PHY but not be usable until the other driversare upstreamed as well.Co-developed-by: Janne Grunau &lt;j@jannau.net&gt;Signed-off-by: Janne Grunau &lt;j@jannau.net&gt;Co-developed-by: Hector Martin &lt;marcan@marcan.st&gt;Signed-off-by: Hector Martin &lt;marcan@marcan.st&gt;Reviewed-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt; # for reset controllerReviewed-by: Neal Gompa &lt;neal@gompa.dev&gt;Signed-off-by: Sven Peter &lt;sven@kernel.org&gt;Link: https://patch.msgid.link/20251214-b4-atcphy-v3-3-ba82b20e9459@kernel.orgSigned-off-by: Vinod Koul &lt;vkoul@kernel.org&gt;

            List of files:
            /linux/drivers/phy/apple/Makefile</description>
        <pubDate>Sun, 14 Dec 2025 12:51:36 +0100</pubDate>
        <dc:creator>Sven Peter &lt;sven@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
