Re: [PATCH 1/2] phy: mxl-8611x: add driver for MaxLinear mxl-8611x PHYs

2023-07-12 Thread Nate Drude
Hi Marek, On 7/12/23 5:15 PM, Marek Vasut wrote: [You don't often get email from marek.va...@mailbox.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] On 7/12/23 22:48, Nate Drude wrote: The MxL86110 is a low power Ethernet PHY transceiver integrated circuit

Re: [PATCH 2/2] dt-bindings: add device tree bindings for mxl-8611x PHY

2023-07-12 Thread Nate Drude
Hi Marek, On 7/12/23 5:16 PM, Marek Vasut wrote: [You don't often get email from marek.va...@mailbox.org. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] On 7/12/23 22:50, Nate Drude wrote: The MXL8611X driver has custom bindings for configuring the LEDs

Re: [PATCH 2/2] dt-bindings: add device tree bindings for mxl-8611x PHY

2023-07-12 Thread Nate Drude
On 7/12/23 3:50 PM, Nate Drude wrote: The MXL8611X driver has custom bindings for configuring the LEDs and RGMII internal delays. This patch adds the documentation and defines necessary to configure it from the device tree. Signed-off-by: Nate Drude ---  .../net/phy/mxl-8611x.txt

[PATCH 2/2] dt-bindings: add device tree bindings for mxl-8611x PHY

2023-07-12 Thread Nate Drude
The MXL8611X driver has custom bindings for configuring the LEDs and RGMII internal delays. This patch adds the documentation and defines necessary to configure it from the device tree. Signed-off-by: Nate Drude --- .../net/phy/mxl-8611x.txt | 37

[PATCH 1/2] phy: mxl-8611x: add driver for MaxLinear mxl-8611x PHYs

2023-07-12 Thread Nate Drude
00c Reading from bus ethernet@428a PHY at address 0: 40972 - 0x2600 Signed-off-by: Nate Drude --- drivers/net/phy/Kconfig | 5 + drivers/net/phy/Makefile| 1 + drivers/net/phy/mxl-8611x.c | 271 3 files changed, 277 inserti

[PATCH] phy: adin: add readext and writeext support for mdio cmd

2023-07-11 Thread Nate Drude
s 0: 65315 - 0xe01 Signed-off-by: Nate Drude --- drivers/net/phy/adin.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/drivers/net/phy/adin.c b/drivers/net/phy/adin.c index fb9f1e4c70d..d29210adffc 100644 --- a/drivers/net/phy/adin.c +++ b/drivers/net/phy/adin.c @@ -15

Re: [PATCH] gpio: uclass: Introduce gpio-hog-optional property

2022-09-14 Thread Nate Drude
Hi All, On 9/14/22 9:16 AM, Tom Rini wrote: On Wed, Sep 14, 2022 at 08:59:52AM -0500, Nate Drude wrote: Hi Simon, On 9/14/22 7:49 AM, Simon Glass wrote: Hi Nate, On Mon, 12 Sept 2022 at 14:57, Nate Drude wrote: Hi Simon and Fabio, On 9/12/22 3:16 PM, Simon Glass wrote: Hi, On Mon, 12

Re: [PATCH] gpio: uclass: Introduce gpio-hog-optional property

2022-09-14 Thread Nate Drude
Hi Simon, On 9/14/22 7:49 AM, Simon Glass wrote: Hi Nate, On Mon, 12 Sept 2022 at 14:57, Nate Drude wrote: Hi Simon and Fabio, On 9/12/22 3:16 PM, Simon Glass wrote: Hi, On Mon, 12 Sept 2022 at 12:48, Fabio Estevam wrote: Hi Nate and Simon, On Mon, Sep 12, 2022 at 2:55 PM Nate Drude

Re: [PATCH] gpio: uclass: Introduce gpio-hog-optional property

2022-09-12 Thread Nate Drude
Hi Simon and Fabio, On 9/12/22 3:16 PM, Simon Glass wrote: Hi, On Mon, 12 Sept 2022 at 12:48, Fabio Estevam wrote: Hi Nate and Simon, On Mon, Sep 12, 2022 at 2:55 PM Nate Drude wrote: gpio_hog_probe_all is invoked by init_sequence_r in board_r.c. If device_probe fails for any gpio-hog

[PATCH] gpio: uclass: Introduce gpio-hog-optional property

2022-09-12 Thread Nate Drude
e boot sequence to continue if device_probe fails for optional gpio-hog(s). Signed-off-by: Nate Drude --- doc/device-tree-bindings/gpio/gpio.txt | 1 + drivers/gpio/gpio-uclass.c | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/device-tree-bindings/gpio/gp

[PATCH] phy: adin: fix broken support for adi,phy-mode-override

2022-05-06 Thread Nate Drude
for phy_get_interface_by_name: https://github.com/u-boot/u-boot/commit/123ca114e07ecf28aa2538748d733e2b22d8b8b5 This patch refactors adin_get_phy_mode_override, implementing the logic in the new function, ofnode_read_phy_mode, from the patch above. Signed-off-by: Nate Drude --- drivers/net/phy/adin.c | 22

Re: [PATCH 1/5] phy: adin: remove broken support for adi,phy-mode-override

2022-05-04 Thread Nate Drude
Hi Josua, On Wed, 2022-05-04 at 11:51 +0300, Josua Mayer wrote: > Hi Nate, > > Am 02.05.22 um 16:25 schrieb Nate Drude: > > Hi Josua, > > > > On Sun, 2022-05-01 at 15:41 +0300, Josua Mayer wrote: > > > The adin_get_phy_mode_overrid

Re: [PATCH 1/5] phy: adin: remove broken support for adi,phy-mode-override

2022-05-02 Thread Nate Drude
Hi Josua, On Sun, 2022-05-01 at 15:41 +0300, Josua Mayer wrote: > The adin_get_phy_mode_override function does not compile, because it > is > missing both declaration and implementation of > phy_get_interface_by_name. > > Remove the whole function for now, since the missing implementation > is >

[PATCH] phy: adin: add driver for Analog Devices ADIN1300 PHY

2022-04-08 Thread Nate Drude
The current implementation configures RGMII using device tree phy-mode property and then calls genphy_config adin_config_rgmii_mode is derived from: https://github.com/varigit/linux-imx/blob/lf-5.10.y_var04/drivers/net/phy/adin.c#L218-L262 Signed-off-by: Nate Drude --- doc/device-tree-bindings