2023-08-30 16:31:07 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
/ {
|
|
|
|
compatible = "nvidia,p3737-0000";
|
|
|
|
|
|
|
|
bus@0 {
|
|
|
|
i2c@3160000 {
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
eeprom@56 {
|
|
|
|
compatible = "atmel,24c02";
|
|
|
|
reg = <0x56>;
|
|
|
|
|
|
|
|
label = "system";
|
|
|
|
vcc-supply = <&vdd_1v8_sys>;
|
|
|
|
address-width = <8>;
|
|
|
|
pagesize = <8>;
|
|
|
|
size = <256>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
pwm@3280000 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
pwm@32c0000 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
pwm@32f0000 {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-10-24 11:59:35 +01:00
|
|
|
fan: pwm-fan {
|
|
|
|
compatible = "pwm-fan";
|
|
|
|
pwms = <&pwm3 0 45334>;
|
|
|
|
#cooling-cells = <2>;
|
|
|
|
};
|
|
|
|
|
2023-08-30 16:31:07 +01:00
|
|
|
vdd_1v8_sys: regulator-vdd-1v8-sys {
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
regulator-name = "VDD_1V8_SYS";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
};
|