summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2016-09-11 22:54:17 +1000
committerDamien Zammit <damien@zamaudio.com>2016-09-11 22:54:17 +1000
commitfe8cef41e786e1bbc004205b02632c965da452f1 (patch)
tree3d47bc393359b15e6d74523c8ac7451163c85343
parentee6d67565039f0269cc63b93f5ef853d40623b54 (diff)
Don't use service requests that are buggy, boots with AGESA at 69 degrees C
Signed-off-by: Damien Zammit <damien@zamaudio.com>
-rw-r--r--firmware/servicereq.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/firmware/servicereq.c b/firmware/servicereq.c
index ebd5929..8f8f8a3 100644
--- a/firmware/servicereq.c
+++ b/firmware/servicereq.c
@@ -5627,16 +5627,15 @@ void smu_service_request(unsigned int e3)
requestid &= 0x1fffe;
requestid >>= 1;
- // Instead of servicing the request, just dump the request number
+ // Dump the request number and service the request
SMU_POST(requestid);
- return;
switch(requestid) {
case SMC_MSG_HALT:
halt();
break;
case SMC_MSG_PHY_LN_OFF:
- set_phyln(OFF, &ddiphy);
+ //set_phyln(OFF, &ddiphy);
break;
case SMC_MSG_PHY_LN_ON:
set_phyln(ON, &ddiphy);
@@ -5657,7 +5656,7 @@ void smu_service_request(unsigned int e3)
set_x16off();
break;
case SMC_MSG_CONFIG_LCLK_DPM:
- config_lclkdpm();
+ //config_lclkdpm();
break;
case SMC_MSG_FLUSH_DATA_CACHE:
flush_datacache();
@@ -5705,7 +5704,7 @@ void smu_service_request(unsigned int e3)
adjust_loadline();
break;
case SMC_MSG_RECONFIGURE:
- reconfigure();
+ //reconfigure();
break;
case SMC_MSG_PCIE_PLLSWITCH:
pciepllswitch();