1// SPDX-License-Identifier: GPL-2.0
2
3/ {
4	compatible = "nvidia,p3737-0000";
5
6	bus@0 {
7		i2c@3160000 {
8			status = "okay";
9
10			eeprom@56 {
11				compatible = "atmel,24c02";
12				reg = <0x56>;
13
14				label = "system";
15				vcc-supply = <&vdd_1v8_sys>;
16				address-width = <8>;
17				pagesize = <8>;
18				size = <256>;
19				read-only;
20			};
21		};
22
23		pwm@3280000 {
24			status = "okay";
25		};
26
27		pwm@32c0000 {
28			status = "okay";
29		};
30
31		pwm@32f0000 {
32			status = "okay";
33		};
34	};
35
36	fan: pwm-fan {
37		compatible = "pwm-fan";
38		pwms = <&pwm3 0 45334>;
39		#cooling-cells = <2>;
40	};
41
42	vdd_1v8_sys: regulator-vdd-1v8-sys {
43		compatible = "regulator-fixed";
44		regulator-name = "VDD_1V8_SYS";
45		regulator-min-microvolt = <1800000>;
46		regulator-max-microvolt = <1800000>;
47		regulator-always-on;
48	};
49};
50