* [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017] Calibrate PMIC IMON.
@ 2017-09-21 3:26 zwei4
0 siblings, 0 replies; 2+ messages in thread
From: zwei4 @ 2017-09-21 3:26 UTC (permalink / raw)
To: edk2-devel
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: zwei4 <david.wei@intel.com>
---
.../PlatformPostMemPei/PlatformInit.c | 49 ++++++++++++++++++++++
.../PlatformSettings/PlatformSetupDxe/UnCore.vfi | 6 +--
.../BroxtonSiPkg/NorthCluster/Include/SaRegs.h | 8 +++-
3 files changed, 59 insertions(+), 4 deletions(-)
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
index bfed3bf1a..7d003e466 100644
--- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
+++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
@@ -311,6 +311,53 @@ BXTPolicyInit (
return EFI_SUCCESS;
}
+VOID
+ConfigurePmicIMON (
+ VOID
+ )
+{
+ UINTN PciD0F0RegBase = 0;
+ UINTN MchBar = 0;
+ UINT32 Data;
+ UINT16 StallCount;
+ UINT64 PkgPwrSKU;
+
+ PciD0F0RegBase = MmPciAddress (0,SA_MC_BUS,SA_MC_DEV,SA_MC_FUN,0);
+ MchBar = MmioRead32 (PciD0F0RegBase + R_SA_MCHBAR_REG) &~BIT0;
+ PkgPwrSKU = AsmReadMsr64 (MSR_PACKAGE_POWER_SKU);
+
+ StallCount = 0;
+ while (StallCount < 1000) {
+ Data = MmioRead32 (MchBar + R_BIOS_MAILBOX_INTERFACE);
+ if ((Data & BIT31) == BIT31) {
+ MicroSecondDelay (1);
+ } else {
+ break;
+ }
+ StallCount++;
+ }
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xfa0d04a4);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000011d);
+
+ StallCount = 0;
+ while (StallCount < 1000) {
+ Data = MmioRead32 (MchBar + R_BIOS_MAILBOX_INTERFACE);
+ if ((Data & BIT31) == BIT31) {
+ MicroSecondDelay (1);
+ } else {
+ break;
+ }
+ StallCount++;
+ }
+
+ if ((PkgPwrSKU & 0x07FFF) >= 0x0903){
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xe8330466);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000001d);
+ } else {
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xed3303b3);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000001d);
+ }
+}
/**
Platform Init PEI module entry point
@@ -363,6 +410,8 @@ PlatformInitEntryPoint (
}
PWM_Fan_Start ();
+
+ ConfigurePmicIMON();
//
// Initialize PlatformInfo HOB
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
index 32eea2005..f8b4b47ec 100644
--- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
+++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
@@ -1,7 +1,7 @@
// /** @file
// UnCore Setup formset.
//
-// Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+// Copyright (c) 1999 - 2017, Intel Corporation. All rights reserved.<BR>
//
// This program and the accompanying materials
// are licensed and made available under the terms and conditions of the BSD License
@@ -104,8 +104,8 @@ form formid = UNCORE_FORM_ID,
oneof varid = Setup.EnableRenderStandby,
prompt = STRING_TOKEN(STR_VIDEO_RS2_PROMPT),
help = STRING_TOKEN(STR_VIDEO_RS2_HELP),
- option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
- option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
oneof varid = Setup.GTTSize,
diff --git a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h b/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
index 5dd844092..e985e75c4 100644
--- a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
+++ b/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
@@ -15,7 +15,7 @@
Registers / bits of new devices introduced in a SA generation will be just named
as "_SA_" without [generation_name] inserted.
- Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 1999 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -59,6 +59,12 @@
#define R_SA_MC_CAPID0_B 0xE8
#define R_SA_MCHBAR_REG 0x48
+//
+// IA-Punit Mailbox on MCH BAR
+//
+#define R_BIOS_MAILBOX_DATA 0x7080
+#define R_BIOS_MAILBOX_INTERFACE 0x7084
+
//
// Silicon Steppings
//
--
2.14.1.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017] Calibrate PMIC IMON.
@ 2017-09-20 15:08 zwei4
0 siblings, 0 replies; 2+ messages in thread
From: zwei4 @ 2017-09-20 15:08 UTC (permalink / raw)
To: edk2-devel
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: zwei4 <david.wei@intel.com>
---
.../PlatformPostMemPei/PlatformInit.c | 76 ++++++++++++++++++++++
.../PlatformSettings/PlatformSetupDxe/UnCore.vfi | 6 +-
.../BroxtonSiPkg/NorthCluster/Include/SaRegs.h | 8 ++-
3 files changed, 86 insertions(+), 4 deletions(-)
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
index bfed3bf1a..66b0e49f4 100644
--- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
+++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformPostMemPei/PlatformInit.c
@@ -311,6 +311,80 @@ BXTPolicyInit (
return EFI_SUCCESS;
}
+VOID
+ConfigurePmicIMON (
+ VOID
+ )
+{
+ UINTN PciD0F0RegBase = 0;
+ UINTN MchBar = 0;
+ UINT32 Data;
+ UINT16 StallCount;
+ UINT64 PkgPwrSKU;
+
+ PciD0F0RegBase = MmPciAddress (0,SA_MC_BUS,SA_MC_DEV,SA_MC_FUN,0);
+ MchBar = MmioRead32 (PciD0F0RegBase + R_SA_MCHBAR_REG) &~BIT0;
+ PkgPwrSKU = AsmReadMsr64 (MSR_PACKAGE_POWER_SKU);
+
+ StallCount = 0;
+ while (StallCount < 1000) {
+ Data = MmioRead32 (MchBar + R_BIOS_MAILBOX_INTERFACE);
+ if ((Data & BIT31) == BIT31) {
+ MicroSecondDelay (1);
+ } else {
+ break;
+ }
+ StallCount++;
+ }
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xfa0d04a4);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000011d);
+
+ StallCount = 0;
+ while (StallCount < 1000) {
+ Data = MmioRead32 (MchBar + R_BIOS_MAILBOX_INTERFACE);
+ if ((Data & BIT31) == BIT31) {
+ MicroSecondDelay (1);
+ } else {
+ break;
+ }
+ StallCount++;
+ }
+
+ if ((PkgPwrSKU & 0x07FFF) >= 0x0903){
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xe8330466);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000001d);
+ } else {
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_DATA), 0xed3303b3);
+ MmioWrite32 ( (MchBar + R_BIOS_MAILBOX_INTERFACE), 0x8000001d);
+ }
+
+}
/**
Platform Init PEI module entry point
@@ -363,6 +437,8 @@ PlatformInitEntryPoint (
}
PWM_Fan_Start ();
+
+ ConfigurePmicIMON();
//
// Initialize PlatformInfo HOB
diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
index 32eea2005..f8b4b47ec 100644
--- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
+++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/UnCore.vfi
@@ -1,7 +1,7 @@
// /** @file
// UnCore Setup formset.
//
-// Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+// Copyright (c) 1999 - 2017, Intel Corporation. All rights reserved.<BR>
//
// This program and the accompanying materials
// are licensed and made available under the terms and conditions of the BSD License
@@ -104,8 +104,8 @@ form formid = UNCORE_FORM_ID,
oneof varid = Setup.EnableRenderStandby,
prompt = STRING_TOKEN(STR_VIDEO_RS2_PROMPT),
help = STRING_TOKEN(STR_VIDEO_RS2_HELP),
- option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
- option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
+ option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
oneof varid = Setup.GTTSize,
diff --git a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h b/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
index 5dd844092..e985e75c4 100644
--- a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
+++ b/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Include/SaRegs.h
@@ -15,7 +15,7 @@
Registers / bits of new devices introduced in a SA generation will be just named
as "_SA_" without [generation_name] inserted.
- Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 1999 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -59,6 +59,12 @@
#define R_SA_MC_CAPID0_B 0xE8
#define R_SA_MCHBAR_REG 0x48
+//
+// IA-Punit Mailbox on MCH BAR
+//
+#define R_BIOS_MAILBOX_DATA 0x7080
+#define R_BIOS_MAILBOX_INTERFACE 0x7084
+
//
// Silicon Steppings
//
--
2.14.1.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-09-21 3:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-21 3:26 [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017] Calibrate PMIC IMON zwei4
-- strict thread matches above, loose matches on Subject: below --
2017-09-20 15:08 zwei4
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox