soc/intel/cannonlake: Fix GPIO reset mapping
According to document 337348-001 (Intel® 300 Series and Intel® C240 Series Chipset Family Platform Controller Hub Datasheet - Volume 2 of 2), the only GPIOs that support PWROK reset are those in the GPD group. The mappings themselves are correct, but they're assigned to the wrong communities. Change-Id: Ib586c987f768ddff31b053f4c108a8526326a7dc Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69214 Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <inforichland@gmail.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
6ec48057d0
commit
624bf72709
|
@ -11,7 +11,7 @@ static const struct reset_mapping rst_map[] = {
|
||||||
{ .logical = PAD_CFG0_LOGICAL_RESET_PLTRST, .chipset = 2U << 30 },
|
{ .logical = PAD_CFG0_LOGICAL_RESET_PLTRST, .chipset = 2U << 30 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct reset_mapping rst_map_com0[] = {
|
static const struct reset_mapping rst_map_gpd[] = {
|
||||||
{ .logical = PAD_CFG0_LOGICAL_RESET_PWROK, .chipset = 0U << 30 },
|
{ .logical = PAD_CFG0_LOGICAL_RESET_PWROK, .chipset = 0U << 30 },
|
||||||
{ .logical = PAD_CFG0_LOGICAL_RESET_DEEP, .chipset = 1U << 30 },
|
{ .logical = PAD_CFG0_LOGICAL_RESET_DEEP, .chipset = 1U << 30 },
|
||||||
{ .logical = PAD_CFG0_LOGICAL_RESET_PLTRST, .chipset = 2U << 30 },
|
{ .logical = PAD_CFG0_LOGICAL_RESET_PLTRST, .chipset = 2U << 30 },
|
||||||
|
@ -83,8 +83,8 @@ static const struct pad_community cnl_communities[] = {
|
||||||
.max_pads_per_group = GPIO_MAX_NUM_PER_GROUP,
|
.max_pads_per_group = GPIO_MAX_NUM_PER_GROUP,
|
||||||
.name = "GPP_AB",
|
.name = "GPP_AB",
|
||||||
.acpi_path = "\\_SB.PCI0.GPIO",
|
.acpi_path = "\\_SB.PCI0.GPIO",
|
||||||
.reset_map = rst_map_com0,
|
.reset_map = rst_map,
|
||||||
.num_reset_vals = ARRAY_SIZE(rst_map_com0),
|
.num_reset_vals = ARRAY_SIZE(rst_map),
|
||||||
.groups = cnl_community0_groups,
|
.groups = cnl_community0_groups,
|
||||||
.num_groups = ARRAY_SIZE(cnl_community0_groups),
|
.num_groups = ARRAY_SIZE(cnl_community0_groups),
|
||||||
},
|
},
|
||||||
|
@ -127,8 +127,8 @@ static const struct pad_community cnl_communities[] = {
|
||||||
.max_pads_per_group = GPIO_MAX_NUM_PER_GROUP,
|
.max_pads_per_group = GPIO_MAX_NUM_PER_GROUP,
|
||||||
.name = "GPD",
|
.name = "GPD",
|
||||||
.acpi_path = "\\_SB.PCI0.GPIO",
|
.acpi_path = "\\_SB.PCI0.GPIO",
|
||||||
.reset_map = rst_map,
|
.reset_map = rst_map_gpd,
|
||||||
.num_reset_vals = ARRAY_SIZE(rst_map),
|
.num_reset_vals = ARRAY_SIZE(rst_map_gpd),
|
||||||
.groups = cnl_community2_groups,
|
.groups = cnl_community2_groups,
|
||||||
.num_groups = ARRAY_SIZE(cnl_community2_groups),
|
.num_groups = ARRAY_SIZE(cnl_community2_groups),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue