Re: [PATCH 4/6] dt-bindings: net: add hisilicon-femac

From: Andrew Lunn
Date: Thu Feb 15 2024 - 19:06:39 EST


> + clocks:
> + minItems: 3
> + maxItems: 3
> +
> + clock-names:
> + items:
> + - const: mac
> + - const: macif
> + - const: phy

The C code has:

+enum clk_type {
+ CLK_MAC,
+ CLK_BUS,
+ CLK_PHY,
+ CLK_NUM,
+};

Could you explain BUS vs macif?

Also, what exactly is the PHY clock?

Andrew