Editing Syscon Thermal Configs/structs
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 32: | Line 32: | ||
struct fancon_40 { | struct fancon_40 { | ||
u8 duty[0xA]; | u8 duty[0xA]; | ||
u16 | u16 tempu[0xA]; | ||
u16 | u16 tempd[0xA]; | ||
fancon_footer; | fancon_footer; | ||
u8 reserved[0x9]; | u8 reserved[0x9]; | ||
Line 40: | Line 40: | ||
struct fancon_80 { | struct fancon_80 { | ||
u8 duty[0x14]; | u8 duty[0x14]; | ||
u16 | u16 tempu[0x14]; | ||
u16 | u16 tempd[0x14]; | ||
fancon_footer; | fancon_footer; | ||
u8 reserved[0x17]; | u8 reserved[0x17]; | ||
Line 48: | Line 48: | ||
struct fancon_sw { | struct fancon_sw { | ||
u8 duty; | u8 duty; | ||
u16 | u16 tempu; | ||
u16 | u16 tempd; | ||
}; | }; | ||
Line 60: | Line 60: | ||
struct config_footer_temps { | struct config_footer_temps { | ||
u16 trp; // Thermal Protection ?. Named "Alert Limits" in PS4 | u16 trp; // Thermal Protection ? (usually 1ºC lower than tshutdown). Named "Alert Limits" in PS4 | ||
u16 tshutdown; // Thermal Shutdown. Named "CriticalTempr Limits" in PS4 | u16 tshutdown; // Thermal Shutdown (usually the same temperature than the highest value of TempU). Named "CriticalTempr Limits" in PS4 | ||
u16 hyst; // Hysteresis ( | u16 hyst; // Hysteresis (usually 2ºC). Named "Alert Hysteresis" in PS4 | ||
}; | }; | ||
Line 139: | Line 139: | ||
config_footer_unk_3; | config_footer_unk_3; | ||
u8 reserved[0x4B]; | u8 reserved[0x4B]; | ||
u16 | u16 checksum; | ||
}; // 0x80 | }; // 0x80 | ||
Line 145: | Line 145: | ||
u16 tshutdown_time; // TShutdown Time:%d[s](0x%04x), or TShutdown Time:%d[s](default tshutdown time). Always 0xFFFF | u16 tshutdown_time; // TShutdown Time:%d[s](0x%04x), or TShutdown Time:%d[s](default tshutdown time). Always 0xFFFF | ||
u16 unk_0000; // Fan shutdown time ?, length increased to 2 bytes for sherwoods ? | u16 unk_0000; // Fan shutdown time ?, length increased to 2 bytes for sherwoods ? | ||
u8 fan_initial_duty; // Fan initial duty: %d%%(0x%02x). | u8 fan_initial_duty; // Fan initial duty: %d%%(0x%02x). 0x4D (sherwoods SW/SW2 with 65nm RSX), or 0x40 (sherwoods SW2 with 40nm RSX), or 0x41 (sherwoods SW3) | ||
u8 fan_initial_time; // Fan initial time: %d(ms), or Fan initial time: %d(ms) -> disable. Always 0x14 | u8 fan_initial_time; // Fan initial time: %d(ms), or Fan initial time: %d(ms) -> disable. Always 0x14 | ||
config_footer_unk_1; | config_footer_unk_1; | ||
Line 157: | Line 157: | ||
struct thermal_config { | struct thermal_config { | ||
#ifdef mullion_flash | #ifdef mullion_flash | ||
fancon_40 cell; // FanconNo= | fancon_40 cell; // FanconNo=0, TZoneNo=0x00 "1st BE Primary" | ||
fancon_40 rsx; // FanconNo= | fancon_40 rsx; // FanconNo=1, TZoneNo=0x01 "RSX Primary" | ||
fancon_40 unk_z20; // FanconNo= | fancon_40 unk_z20; // FanconNo=2, TZoneNo=0x20 unknown (BE VR ?) | ||
fancon_40 unk_z21; // FanconNo= | fancon_40 unk_z21; // FanconNo=3, TZoneNo=0x21 unknown (RSX VR ?) | ||
fancon_40 xdr; // FanconNo= | fancon_40 xdr; // FanconNo=4, TZoneNo=0x02 "XDR Primary" | ||
fancon_40 intake; // FanconNo= | fancon_40 intake; // FanconNo=7, TZoneNo=0x0A "Air Intake" | ||
fancon_40 gbe; // FanconNo= | fancon_40 gbe; // FanconNo=6, TZoneNo=0x0F "GbE" | ||
fancon_40 sb; // FanconNo= | fancon_40 sb; // FanconNo=5, TZoneNo=0x14 "SB" | ||
config_footer_mullionf; | config_footer_mullionf; | ||
#endif | #endif | ||
#ifdef mullion_32KB | #ifdef mullion_32KB | ||
fancon_40 cell; // FanconNo= | fancon_40 cell; // FanconNo=0, TZoneNo=0x00 "1st BE Primary" | ||
fancon_40 rsx; // FanconNo= | fancon_40 rsx; // FanconNo=1, TZoneNo=0x01 "RSX Primary" | ||
fancon_40 bevr; // FanconNo= | fancon_40 bevr; // FanconNo=?, TZoneNo=0x03 "BE VR" | ||
fancon_40 sb; // FanconNo= | fancon_40 sb; // FanconNo=3, TZoneNo=0x14 "SB" | ||
fancon_40 eegs; // FanconNo= | fancon_40 eegs; // FanconNo=?, TZoneNo=0x15 "EE+GS" | ||
fancon_40 reserved; | fancon_40 reserved; | ||
config_footer_mullion; | config_footer_mullion; | ||
#endif | #endif | ||
#ifdef mullion_20KB | #ifdef mullion_20KB | ||
fancon_80 cell; // FanconNo= | fancon_80 cell; // FanconNo=0, TZoneNo=0x00 "1st BE Primary" | ||
fancon_80 rsx; // FanconNo= | fancon_80 rsx; // FanconNo=1, TZoneNo=0x01 "RSX Primary" | ||
fancon_80 sb; // FanconNo= | fancon_80 sb; // FanconNo=2, TZoneNo=0x14 "SB" | ||
config_footer_mullion; | config_footer_mullion; | ||
#endif | #endif | ||
#ifdef sherwood | #ifdef sherwood | ||
fancon_70 cell; // FanconNo= | fancon_70 cell; // FanconNo=0, TZoneNo=0x00 "1st BE Primary" | ||
fancon_70 rsx; // FanconNo= | fancon_70 rsx; // FanconNo=1, TZoneNo=0x01 "RSX Primary" | ||
fancon_70 reserved; | fancon_70 reserved; | ||
config_footer_sherwood; | config_footer_sherwood; |