forked from radxa-pkg/radxa-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request radxa-pkg#317 from Radxa-Alvin/main
feat: add radxa zero3 poe overlay
- Loading branch information
Showing
3 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
arch/arm64/boot/dts/rockchip/overlays/radxa-zero3-poe-hat.dts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/dts-v1/; | ||
/plugin/; | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/pinctrl/rockchip.h> | ||
#include <dt-bindings/pwm/pwm.h> | ||
#include <dt-bindings/thermal/thermal.h> | ||
|
||
/ { | ||
metadata { | ||
title = "Enable Radxa ZERO 3E PoE HAT"; | ||
category = "misc"; | ||
compatible = "radxa,zero3"; | ||
description = "Enable Radxa ZERO 3E PoE HAT."; | ||
exclusive = "GPIO3_C3"; | ||
package = "rsetup-config-thermal-governor-step-wise"; | ||
}; | ||
}; | ||
|
||
&{/} { | ||
radxa_poe_pwm: radxa-poe-pwm { | ||
compatible = "pwm-gpio"; | ||
#pwm-cells = <3>; | ||
pwm-gpio = <&gpio3 RK_PC3 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
radxa_poe_fan: radxa-poe-fan { | ||
compatible = "pwm-fan"; | ||
#cooling-cells = <2>; | ||
cooling-min-state = <0>; | ||
cooling-max-state = <4>; | ||
cooling-levels = <0 64 128 192 255>; | ||
pwms = <&radxa_poe_pwm 0 40000 PWM_POLARITY_INVERTED>; | ||
}; | ||
}; | ||
|
||
&threshold { | ||
temperature = <60000>; | ||
}; | ||
|
||
&soc_thermal { | ||
sustainable-power = <5000>; /* milliwatts */ | ||
cooling-maps { | ||
map2 { | ||
trip = <&target>; | ||
cooling-device = <&radxa_poe_fan THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; | ||
contribution = <8192>; | ||
}; | ||
map3 { | ||
trip = <&threshold>; | ||
cooling-device = <&radxa_poe_fan THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; | ||
contribution = <8192>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/dts-v1/; | ||
/plugin/; | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/pinctrl/rockchip.h> | ||
#include <dt-bindings/pwm/pwm.h> | ||
#include <dt-bindings/thermal/thermal.h> | ||
|
||
/ { | ||
metadata { | ||
title = "Enable Radxa 25W PoE+ HAT"; | ||
category = "misc"; | ||
compatible = "radxa,rock-2a"; | ||
description = "Enable Radxa 25W PoE+ HAT."; | ||
exclusive = "GPIO1_B1", "GPIO4_A6"; | ||
package = "rsetup-config-thermal-governor-step-wise"; | ||
}; | ||
}; | ||
|
||
&{/} { | ||
radxa_pow_w1: radxa-poe-w1 { | ||
compatible = "w1-gpio"; | ||
gpios = <&gpio4 RK_PA6 GPIO_ACTIVE_HIGH>; | ||
status = "okay"; | ||
}; | ||
|
||
radxa_poe_pwm: radxa-poe-pwm { | ||
compatible = "pwm-gpio"; | ||
#pwm-cells = <3>; | ||
pwm-gpio = <&gpio1 RK_PB1 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
radxa_poe_fan: radxa-poe-fan { | ||
compatible = "pwm-fan"; | ||
#cooling-cells = <2>; | ||
cooling-min-state = <0>; | ||
cooling-max-state = <4>; | ||
cooling-levels = <0 64 128 192 255>; | ||
pwms = <&radxa_poe_pwm 0 40000 PWM_POLARITY_INVERTED>; | ||
}; | ||
}; | ||
|
||
&threshold { | ||
temperature = <60000>; | ||
}; | ||
|
||
&soc_thermal { | ||
sustainable-power = <5000>; /* milliwatts */ | ||
cooling-maps { | ||
map2 { | ||
trip = <&target>; | ||
cooling-device = <&radxa_poe_fan THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; | ||
contribution = <8192>; | ||
}; | ||
map3 { | ||
trip = <&threshold>; | ||
cooling-device = <&radxa_poe_fan THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; | ||
contribution = <8192>; | ||
}; | ||
}; | ||
}; |