|
20 | 20 |
|
21 | 21 | # set the final tdp value
|
22 | 22 | set_tdp() {
|
23 |
| - echo "Game ${2} requested setting AMD Mobile Processor TDP to ${1} Watts" >> $log |
24 |
| - /usr/bin/batocera-amd-tdp $1 |
| 23 | + local TDP_VALUE=$1 |
| 24 | + local ROM_NAME=$2 |
| 25 | + |
| 26 | + if [ -z "${ROM_NAME}" ]; then |
| 27 | + echo "Setting AMD Mobile Processor TDP to ${TDP_VALUE} Watts" >> $log |
| 28 | + else |
| 29 | + echo "Game ${ROM_NAME} requested setting AMD Mobile Processor TDP to ${TDP_VALUE} Watts" >> $log |
| 30 | + fi |
| 31 | + |
| 32 | + /usr/bin/batocera-amd-tdp "$TDP_VALUE" |
25 | 33 | }
|
26 | 34 |
|
27 | 35 | # determine the new TDP value based on max TDP
|
28 | 36 | handle_tdp() {
|
29 |
| - TDP_PERCENTAGE=$1 |
30 |
| - ROM_NAME=$2 |
31 |
| - MAX_TDP=$(/usr/bin/batocera-settings-get system.cpu.tdp) |
32 |
| - # Check if MAX_TDP is defined and non-empty |
33 |
| - if [ -n "$MAX_TDP" ]; then |
| 37 | + local TDP_PERCENTAGE=$1 |
| 38 | + local ROM_NAME=$2 |
| 39 | + |
| 40 | + # Check if TDP is defined and non-empty |
| 41 | + if [ -n "$CPU_TDP" ]; then |
34 | 42 | # round the value up or down to make bash happy
|
35 |
| - TDP_VALUE=$(awk -v max_tdp="$MAX_TDP" -v tdp_percentage="$TDP_PERCENTAGE" 'BEGIN { printf("%.0f\n", max_tdp * tdp_percentage / 100) }') |
| 43 | + TDP_VALUE=$(awk -v max_tdp="$CPU_TDP" -v tdp_percentage="$TDP_PERCENTAGE" 'BEGIN { printf("%.0f\n", max_tdp * tdp_percentage / 100) }') |
36 | 44 | set_tdp "${TDP_VALUE}" "${ROM_NAME}"
|
37 | 45 | else
|
38 | 46 | echo "A maximum TDP is not defined, cannot set TDP." >> $log
|
39 | 47 | exit 1
|
40 | 48 | fi
|
41 | 49 | }
|
42 | 50 |
|
43 |
| -# Check for events |
44 |
| -EVENT=$1 |
45 |
| -SYSTEM_NAME=$2 |
46 |
| -ROM_PATH=$5 |
| 51 | +handle_game_stop() { |
| 52 | + TDP_SETTING=$(printf "%.0f" "$(/usr/bin/batocera-settings-get global.tdp)") |
| 53 | + if [ -z "${TDP_SETTING}" ]; then |
| 54 | + local CURRENT_TDP=$(ryzenadj -i | grep 'PPT LIMIT FAST' | awk '{printf "%.0f\n", $6}') |
47 | 55 |
|
48 |
| -# Get the rom name from ROM_PATH |
49 |
| -ROM_NAME=$(basename "$ROM_PATH") |
| 56 | + if [[ "$CURRENT_TDP" =~ ^[0-9]+$ && "$CPU_TDP" =~ ^[0-9]+$ ]] && [ "$CURRENT_TDP" -ne "$CPU_TDP" ]; then |
| 57 | + set_tdp "${CPU_TDP}" |
| 58 | + fi |
| 59 | + else |
| 60 | + handle_tdp "${TDP_SETTING}" |
| 61 | + fi |
50 | 62 |
|
51 |
| -# exit accordingly if the event is neither gameStart nor gameStop |
52 |
| -if [ "$EVENT" != "gameStart" ] && [ "$EVENT" != "gameStop" ]; then |
53 | 63 | exit 0
|
54 |
| -fi |
| 64 | +} |
55 | 65 |
|
56 |
| -# handle gameStop event |
57 |
| -if [ "$EVENT" == "gameStop" ]; then |
58 |
| - # set either user global setting or default tdp |
59 |
| - TDP_SETTING=$(printf "%.0f" "$(/usr/bin/batocera-settings-get global.tdp)") |
60 |
| - if [ -z "${TDP_SETTING}" ]; then |
61 |
| - TDP_SETTING="$(/usr/bin/batocera-settings-get system.cpu.tdp)" |
62 |
| - |
63 |
| - if [ -n "$TDP_SETTING" ]; then |
64 |
| - set_tdp "${TDP_SETTING}" "STOP" |
65 |
| - else |
66 |
| - echo "No TDP setting defined, cannot set TDP." >> $log |
67 |
| - exit 1 |
| 66 | +handle_game_start() { |
| 67 | + local SYSTEM_NAME="$1" |
| 68 | + local ROM_PATH="$2" |
| 69 | + |
| 70 | + # Extract the base game name |
| 71 | + ROM_NAME="${ROM_PATH##*/}" |
| 72 | + |
| 73 | + # check for user set system specific setting |
| 74 | + if [ -n "${SYSTEM_NAME}" ]; then |
| 75 | + # check for rom specific config |
| 76 | + TDP_SETTING=$(/usr/bin/batocera-settings-get "${SYSTEM_NAME}[\"${ROM_NAME}\"].tdp") |
| 77 | + if [ -z "${TDP_SETTING}" ]; then |
| 78 | + TDP_SETTING="$(/usr/bin/batocera-settings-get ${SYSTEM_NAME}.tdp)" |
68 | 79 | fi
|
69 |
| - exit 0 |
70 | 80 | fi
|
71 |
| - handle_tdp "${TDP_SETTING}" "STOP" |
72 |
| - exit 0 |
73 |
| -fi |
74 | 81 |
|
75 |
| -# run through determining the desired TDP setting |
76 |
| -# check for user set system specific setting |
77 |
| -if [ -n "${SYSTEM_NAME}" ]; then |
78 |
| - # check for rom specific config |
79 |
| - TDP_SETTING=$(/usr/bin/batocera-settings-get "${SYSTEM_NAME}[\"${ROM_NAME}\"].tdp") |
| 82 | + # If no user set system specific setting check for user set global setting |
80 | 83 | if [ -z "${TDP_SETTING}" ]; then
|
81 |
| - TDP_SETTING="$(/usr/bin/batocera-settings-get ${SYSTEM_NAME}.tdp)" |
| 84 | + TDP_SETTING=$(printf "%.0f" "$(/usr/bin/batocera-settings-get global.tdp)") |
82 | 85 | fi
|
83 |
| -fi |
84 | 86 |
|
85 |
| -# If no user set system specific setting check for user set global setting |
86 |
| -if [ -z "${TDP_SETTING}" ]; then |
87 |
| - TDP_SETTING=$(printf "%.0f" "$(/usr/bin/batocera-settings-get global.tdp)") |
88 |
| -fi |
89 |
| - |
90 |
| -# If no value is found ensure tdp is default before exiting |
91 |
| -if [ -z "${TDP_SETTING}" ]; then |
92 |
| - TDP_SETTING="$(/usr/bin/batocera-settings-get-master system.cpu.tdp)" |
| 87 | + # now apply TDP percentage accordingly |
93 | 88 | if [ -n "${TDP_SETTING}" ]; then
|
94 |
| - set_tdp "${TDP_SETTING}" "${ROM_NAME}" |
| 89 | + handle_tdp "${TDP_SETTING}" "${ROM_NAME}" |
95 | 90 | else
|
96 | 91 | echo "No TDP setting defined, cannot set TDP." >> $log
|
97 | 92 | exit 1
|
98 |
| - fi |
99 |
| - exit 0 |
100 |
| -fi |
| 93 | + fi |
| 94 | +} |
101 | 95 |
|
102 |
| -# now apply TDP percentage accordingly |
103 |
| -if [ -n "${TDP_SETTING}" ]; then |
104 |
| - handle_tdp "${TDP_SETTING}" "${ROM_NAME}" |
105 |
| -else |
106 |
| - echo "No TDP setting defined, cannot set TDP." >> $log |
107 |
| - exit 1 |
108 |
| -fi |
| 96 | +# Check for events |
| 97 | +SYSTEM_NAME="$2" |
| 98 | +ROM_PATH="$5" |
| 99 | + |
| 100 | +case "$1" in |
| 101 | + gameStart) |
| 102 | + handle_game_start "$SYSTEM_NAME" "$ROM_PATH" |
| 103 | + ;; |
| 104 | + gameStop) |
| 105 | + handle_game_stop |
| 106 | + ;; |
| 107 | + *) |
| 108 | + exit 0 |
| 109 | + ;; |
| 110 | +esac |
| 111 | + |
| 112 | +exit 0 |
0 commit comments