soc/intel/denverton_ns: Add ACPI T-States and P-States

Also make soc_get_tss_table public and weak instead of static
in intelblock so it can be overridden in denverton.

Change-Id: Id9c7da474a81417a5cebd875023f7cd3d5a77796
Signed-off-by: Julien Viard de Galbert <jviarddegalbert@online.net>
Reviewed-on: https://review.coreboot.org/c/25430
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Vanny E <vanessa.f.eusebio@intel.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: David Guckian
Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com>
This commit is contained in:
Julien Viard de Galbert 2018-03-29 14:01:01 +02:00 committed by Patrick Georgi
parent 3b0667dd2a
commit 595202c304
3 changed files with 31 additions and 1 deletions

View File

@ -380,7 +380,7 @@ void generate_p_state_entries(int core, int cores_per_package)
acpigen_pop_len();
}
static acpi_tstate_t *soc_get_tss_table(int *entries)
__attribute__ ((weak)) acpi_tstate_t *soc_get_tss_table(int *entries)
{
*entries = 0;
return NULL;

View File

@ -65,6 +65,12 @@ void acpi_create_gnvs(struct global_nvs_t *gnvs);
*/
acpi_cstate_t *soc_get_cstate_map(size_t *num_entries);
/*
* get_tstate_map returns a table of processor specific acpi_tstate_t entries
* and number of entries in the table
*/
acpi_tstate_t *soc_get_tss_table(int *entries);
/*
* Chipset specific quirks for the wake enable bits.
* Returns wake events for the soc.

View File

@ -248,6 +248,30 @@ void soc_fill_fadt(acpi_fadt_t *fadt)
motherboard_fill_fadt(fadt);
}
static acpi_tstate_t denverton_tss_table[] = {
{ 100, 1000, 0, 0x00, 0 },
{ 88, 875, 0, 0x1e, 0 },
{ 75, 750, 0, 0x1c, 0 },
{ 63, 625, 0, 0x1a, 0 },
{ 50, 500, 0, 0x18, 0 },
{ 38, 375, 0, 0x16, 0 },
{ 25, 250, 0, 0x14, 0 },
{ 13, 125, 0, 0x12, 0 },
};
acpi_tstate_t *soc_get_tss_table(int *entries)
{
*entries = ARRAY_SIZE(denverton_tss_table);
return denverton_tss_table;
}
void soc_power_states_generation(int core_id, int cores_per_package)
{
generate_p_state_entries(core_id, cores_per_package);
generate_t_state_entries(core_id, cores_per_package);
}
int soc_madt_sci_irq_polarity(int sci)
{
if (sci >= 20)