soc/intel/cannonlake: Fix DSX_CFG macro name for AC_PRESENT
DSX_CFG provides a config option to disable internal pull-down on AC_PRESENT. This change updates macro name to reflect this correctly. Change-Id: I620d7da4048178f86de41f3afd98543cf8efc5ce Signed-off-by: Furquan Shaikh <furquan@chromium.org> Reviewed-on: https://review.coreboot.org/22690 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
9d867af725
commit
02ce837674
|
@ -77,7 +77,7 @@ struct soc_intel_cannonlake_config {
|
|||
/* Deep Sx Configuration
|
||||
* DSX_EN_WAKE_PIN - Enable WAKE# pin
|
||||
* DSX_EN_LAN_WAKE_PIN - Enable LAN_WAKE# pin
|
||||
* DSX_EN_AC_PRESENT_PIN - Enable AC_PRESENT pin */
|
||||
* DSX_DIS_AC_PRESENT_PD - Disable pull-down on AC_PRESENT pin */
|
||||
uint32_t deep_sx_config;
|
||||
|
||||
/* TCC activation offset */
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
#define REQ_CNV_NOWAKE_DSX (1 << 4)
|
||||
#define REQ_BATLOW_DSX (1 << 3)
|
||||
#define DSX_EN_WAKE_PIN (1 << 2)
|
||||
#define DSX_EN_AC_PRESENT_PIN (1 << 1)
|
||||
#define DSX_DIS_AC_PRESENT_PD (1 << 1)
|
||||
#define DSX_EN_LAN_WAKE_PIN (1 << 0)
|
||||
#define DSX_CFG_MASK (0x1f << 0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue