soc/intel/common: Add support for GPIO group pad base
In some situations the GPIO pad numbers used by the OS are not contiguous and coreboot must provide a way for ACPI to provide the expected GPIO number to the OS. To do this each GPIO group can now have a pad base value, which will be used as the starting pin number for this group and it is added to the relative pin number of this GPIO to compute the ACPI pin number for a particular GPIO. By default this change has no effect because the existing uses of INTEL_GPP() will set the pad base to PAD_BASE_NONE and the GPIO number is used as the ACPI pin number without translation. BUG=b:120686247 TEST=tested on a sarien(cannonlake) board Change-Id: I25f73df45ffae18c5721a00ca230a6b07c250bab Signed-off-by: Duncan Laurie <dlaurie@google.com> Reviewed-on: https://review.coreboot.org/c/30131 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
1c88cd6c2b
commit
28e8ae5385
|
@ -397,10 +397,26 @@ void gpio_set(gpio_t gpio_num, int value)
|
||||||
|
|
||||||
uint16_t gpio_acpi_pin(gpio_t gpio_num)
|
uint16_t gpio_acpi_pin(gpio_t gpio_num)
|
||||||
{
|
{
|
||||||
if (!IS_ENABLED(CONFIG_SOC_INTEL_COMMON_BLOCK_GPIO_MULTI_ACPI_DEVICES))
|
const struct pad_community *comm;
|
||||||
|
size_t group, pin;
|
||||||
|
|
||||||
|
if (IS_ENABLED(CONFIG_SOC_INTEL_COMMON_BLOCK_GPIO_MULTI_ACPI_DEVICES))
|
||||||
|
return relative_pad_in_comm(gpio_get_community(gpio_num),
|
||||||
|
gpio_num);
|
||||||
|
|
||||||
|
comm = gpio_get_community(gpio_num);
|
||||||
|
pin = relative_pad_in_comm(comm, gpio_num);
|
||||||
|
group = gpio_group_index(comm, pin);
|
||||||
|
|
||||||
|
/* If pad base is not set then use GPIO number as ACPI pin number. */
|
||||||
|
if (comm->groups[group].acpi_pad_base == PAD_BASE_NONE)
|
||||||
return gpio_num;
|
return gpio_num;
|
||||||
|
|
||||||
return relative_pad_in_comm(gpio_get_community(gpio_num), gpio_num);
|
/*
|
||||||
|
* If this group has a non-zero pad base then compute the ACPI pin
|
||||||
|
* number from the pad base and the relative pad in the group.
|
||||||
|
*/
|
||||||
|
return comm->groups[group].acpi_pad_base + gpio_within_group(comm, pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_gpi_status(const struct gpi_status *sts)
|
static void print_gpi_status(const struct gpi_status *sts)
|
||||||
|
|
|
@ -23,12 +23,29 @@
|
||||||
#ifndef __ACPI__
|
#ifndef __ACPI__
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
||||||
#define INTEL_GPP(first_of_community, start_of_group, end_of_group) \
|
/*
|
||||||
{ \
|
* GPIO numbers may not be contiguous and instead will have a different
|
||||||
.first_pad = (start_of_group) - (first_of_community), \
|
* starting pin number for each pad group.
|
||||||
.size = (end_of_group) - (start_of_group) + 1, \
|
*/
|
||||||
|
#define INTEL_GPP_BASE(first_of_community, start_of_group, end_of_group,\
|
||||||
|
group_pad_base) \
|
||||||
|
{ \
|
||||||
|
.first_pad = (start_of_group) - (first_of_community), \
|
||||||
|
.size = (end_of_group) - (start_of_group) + 1, \
|
||||||
|
.acpi_pad_base = (group_pad_base), \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* A pad base of -1 indicates that this group uses contiguous numbering
|
||||||
|
* and a pad base should not be used for this group.
|
||||||
|
*/
|
||||||
|
#define PAD_BASE_NONE -1
|
||||||
|
|
||||||
|
/* The common/default group numbering is contiguous */
|
||||||
|
#define INTEL_GPP(first_of_community, start_of_group, end_of_group) \
|
||||||
|
INTEL_GPP_BASE(first_of_community, start_of_group, end_of_group,\
|
||||||
|
PAD_BASE_NONE)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Following should be defined in soc/gpio.h
|
* Following should be defined in soc/gpio.h
|
||||||
* GPIO_MISCCFG - offset to GPIO MISCCFG Register
|
* GPIO_MISCCFG - offset to GPIO MISCCFG Register
|
||||||
|
@ -67,6 +84,13 @@ struct pad_group {
|
||||||
int first_pad; /* offset of first pad of the group relative
|
int first_pad; /* offset of first pad of the group relative
|
||||||
to the community */
|
to the community */
|
||||||
unsigned int size; /* Size of the group */
|
unsigned int size; /* Size of the group */
|
||||||
|
/*
|
||||||
|
* This is the starting pin number for the pads in this group when
|
||||||
|
* they are used in ACPI. This is only needed if the pins are not
|
||||||
|
* contiguous across groups, most groups will have this set to
|
||||||
|
* PAD_BASE_NONE and use contiguous numbering for ACPI.
|
||||||
|
*/
|
||||||
|
int acpi_pad_base;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* This structure will be used to describe a community or each group within a
|
/* This structure will be used to describe a community or each group within a
|
||||||
|
|
Loading…
Reference in New Issue