soc/intel/{tgl,jsl}: Use soc/intel/jasperlake for Jasper Lake SoC

Switch to using Jasper Lake SoC code from soc/intel/jasperlake and stop
referring from soc/intel/tigerlake.
Addtionally mainboard changes are done to support build.

BUG=b:150217037
TEST=Build and boot waddledoo. Build jasperlake_rvp  and volteer board.

Change-Id: I39f117bd66cb610a305bcdb8ea65332fd0ff4814
Signed-off-by: Aamir Bohra <aamir.bohra@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39825
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
This commit is contained in:
Aamir Bohra 2020-03-25 15:31:12 +05:30 committed by Furquan Shaikh
parent 51ce41c0e6
commit a23e0c9d74
16 changed files with 21 additions and 33 deletions

View File

@ -18,7 +18,7 @@ DefinitionBlock(
0x20110725 /* OEM revision */
)
{
#include <soc/intel/tigerlake/acpi/platform.asl>
#include <soc/intel/jasperlake/acpi/platform.asl>
/* global NVS and variables */
#include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
@ -30,7 +30,7 @@ DefinitionBlock(
Device (PCI0)
{
#include <soc/intel/common/block/acpi/acpi/northbridge.asl>
#include <soc/intel/tigerlake/acpi/southbridge.asl>
#include <soc/intel/jasperlake/acpi/southbridge.asl>
}
}

View File

@ -6,7 +6,7 @@
*/
#include <baseboard/variants.h>
#include <soc/meminit_jsl.h>
#include <soc/meminit.h>
#include <soc/romstage.h>
void mainboard_memory_init_params(FSPM_UPD *memupd)

View File

@ -1,4 +1,4 @@
chip soc/intel/tigerlake
chip soc/intel/jasperlake
device cpu_cluster 0 on
device lapic 0 on end
end

View File

@ -8,7 +8,7 @@
#include <baseboard/variants.h>
#include <baseboard/gpio.h>
#include <gpio.h>
#include <soc/meminit_jsl.h>
#include <soc/meminit.h>
#include <soc/romstage.h>
static const struct mb_cfg baseboard_memcfg_cfg = {

View File

@ -1,4 +1,4 @@
chip soc/intel/tigerlake
chip soc/intel/jasperlake
# Intel Common SoC Config
#+-------------------+---------------------------+

View File

@ -1,4 +1,4 @@
chip soc/intel/tigerlake
chip soc/intel/jasperlake
# Intel Common SoC Config
#+-------------------+---------------------------+

View File

@ -25,7 +25,7 @@ DefinitionBlock(
0x20110725 /* OEM revision */
)
{
#include <soc/intel/tigerlake/acpi/platform.asl>
#include <soc/intel/jasperlake/acpi/platform.asl>
/* global NVS and variables */
#include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
@ -37,7 +37,7 @@ DefinitionBlock(
Device (PCI0)
{
#include <soc/intel/common/block/acpi/acpi/northbridge.asl>
#include <soc/intel/tigerlake/acpi/southbridge.asl>
#include <soc/intel/jasperlake/acpi/southbridge.asl>
}
}

View File

@ -14,7 +14,7 @@
*/
#include <baseboard/variants.h>
#include <console/console.h>
#include <soc/meminit_jsl.h>
#include <soc/meminit.h>
#include <soc/romstage.h>
#include "board_id.h"

View File

@ -17,7 +17,7 @@
#define __BASEBOARD_VARIANTS_H__
#include <soc/gpio.h>
#include <soc/meminit_jsl.h>
#include <soc/meminit.h>
#include <stdint.h>
#include <vendorcode/google/chromeos/chromeos.h>

View File

@ -1,4 +1,4 @@
chip soc/intel/tigerlake
chip soc/intel/jasperlake
device cpu_cluster 0 on
device lapic 0 on end

View File

@ -16,7 +16,7 @@
#include <baseboard/variants.h>
#include <baseboard/gpio.h>
#include <gpio.h>
#include <soc/meminit_jsl.h>
#include <soc/meminit.h>
#include <soc/romstage.h>
static const struct mb_cfg jslrvp_ddr4_memcfg_cfg = {

View File

@ -1,9 +1,9 @@
config SOC_INTEL_JASPERLAKE_COPY
config SOC_INTEL_JASPERLAKE
bool
help
Intel Jasperlake support
if SOC_INTEL_JASPERLAKE_COPY
if SOC_INTEL_JASPERLAKE
config CPU_SPECIFIC_OPTIONS
def_bool y
@ -192,7 +192,7 @@ config FSP_FD_PATH
depends on FSP_USE_REPO
default "3rdparty/fsp/JasperLakeFspBinPkg/Fsp.fd"
config SOC_INTEL_JASPERLAKE_COPY_DEBUG_CONSENT
config SOC_INTEL_JASPERLAKE_DEBUG_CONSENT
int "Debug Consent for JSL"
# USB DBC is more common for developers so make this default to 3 if
# SOC_INTEL_DEBUG_CONSENT=y

View File

@ -1,4 +1,4 @@
ifeq ($(CONFIG_SOC_INTEL_JASPERLAKE_COPY),y)
ifeq ($(CONFIG_SOC_INTEL_JASPERLAKE),y)
subdirs-y += romstage
subdirs-y += ../../../cpu/intel/microcode

View File

@ -89,7 +89,7 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
m_cfg->SmbusEnable = config->SmbusEnable;
/* Set debug probe type */
m_cfg->PlatformDebugConsent = CONFIG_SOC_INTEL_JASPERLAKE_COPY_DEBUG_CONSENT;
m_cfg->PlatformDebugConsent = CONFIG_SOC_INTEL_JASPERLAKE_DEBUG_CONSENT;
/* VT-d config */
m_cfg->VtdDisable = 0;

View File

@ -1,22 +1,9 @@
config SOC_INTEL_TIGERLAKE_BASE
bool
config SOC_INTEL_TIGERLAKE
bool
select SOC_INTEL_TIGERLAKE_BASE
#TODO - Enable INTEL_CAR_NEM_ENHANCED
select INTEL_CAR_NEM
help
Intel Tigerlake support
config SOC_INTEL_JASPERLAKE
bool
select SOC_INTEL_TIGERLAKE_BASE
select INTEL_CAR_NEM
help
Intel Jasperlake support
if SOC_INTEL_TIGERLAKE_BASE
if SOC_INTEL_TIGERLAKE
config CPU_SPECIFIC_OPTIONS
def_bool y
@ -36,6 +23,7 @@ config CPU_SPECIFIC_OPTIONS
select INTEL_DESCRIPTOR_MODE_CAPABLE
select HAVE_SMI_HANDLER
select IDT_IN_EVERY_STAGE
select INTEL_CAR_NEM #TODO - Enable INTEL_CAR_NEM_ENHANCED
select INTEL_GMA_ACPI
select INTEL_GMA_ADD_VBT if RUN_FSP_GOP
select IOAPIC

View File

@ -1,4 +1,4 @@
ifeq ($(CONFIG_SOC_INTEL_TIGERLAKE_BASE),y)
ifeq ($(CONFIG_SOC_INTEL_TIGERLAKE),y)
subdirs-y += romstage
subdirs-y += ../../../cpu/intel/microcode