> + 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