Re: [PATCH v3 2/2] arm64: dts: qcom: Add Monaco EVK initial board support

From: Krzysztof Kozlowski
Date: Fri Aug 29 2025 - 04:03:03 EST


On Tue, Aug 26, 2025 at 11:45:06PM +0530, Umang Chheda wrote:
> +&i2c1 {
> + pinctrl-0 = <&qup_i2c1_default>;
> + pinctrl-names = "default";
> +
> + status = "okay";
> +
> + eeprom0: eeprom@50 {
> + compatible = "atmel,24c256";
> + reg = <0x50>;
> + pagesize = <64>;
> +
> + nvmem-layout {
> + compatible = "fixed-layout";
> + #address-cells = <1>;
> + #size-cells = <1>;
> +
> + mac_addr0: mac-addr@0 {
> + reg = <0x0 0x6>;
> + };
> + };
> + };
> +};
> +
> +&i2c15 {
> + pinctrl-0 = <&qup_i2c15_default>;
> + pinctrl-names = "default";
> +
> + status = "okay";
> +
> + expander0: pca953x@38 {

Same problem as in all other recent qcom boards.

I heard that some teams in qcom have weekly meetings and discuss what
did they learn from upstream review.

Please organize/join such meetings.

Node names should be generic. See also an explanation and list of
examples (not exhaustive) in DT specification:
https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation
If you cannot find a name matching your device, please check in kernel
sources for similar cases or you can grow the spec (via pull request to
DT spec repo).

Best regards,
Krzysztof