mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	Before the culprit patch (see BugLink for the details): => acpi list Name Base Size Detail ---- -------- ----- ------ RSDP 000e4500 24 v02 U-BOOT RSDT 000e4530 38 v01 U-BOOT U-BOOTBL 20220401 INTL 0 XSDT 000e45e0 4c v01 U-BOOT U-BOOTBL 20220401 INTL 0 CSRT 000e5490 58 v00 U-BOOT U-BOOTBL 20220401 INTL 0 FACP 000e54f0 114 v06 U-BOOT U-BOOTBL 20220401 INTL 0 DSDT 000e4780 c06 v02 U-BOOT U-BOOTBL 10000 INTL 20200925 FACS 000e4740 40 MCFG 000e5610 3c v01 U-BOOT U-BOOTBL 20220401 INTL 0 SPCR 000e5650 50 v02 U-BOOT U-BOOTBL 20220401 INTL 0 APIC 000e56a0 48 v02 U-BOOT U-BOOTBL 20220401 INTL 0 After the culprit patch: => acpi list Name Base Size Detail ---- -------- ----- ------ RSDP 000e4500 24 v02 U-BOOT RSDT 000e4530 34 v01 U-BOOT U-BOOTBL 20220401 INTL 0 XSDT 000e45e0 44 v01 U-BOOT U-BOOTBL 20220401 INTL 0 CSRT 000e53a0 58 v00 U-BOOT U-BOOTBL 20220401 INTL 0 MCFG 000e5520 3c v01 U-BOOT U-BOOTBL 20220401 INTL 0 SPCR 000e5560 50 v02 U-BOOT U-BOOTBL 20220401 INTL 0 APIC 000e55b0 48 v02 U-BOOT U-BOOTBL 20220401 INTL 0 As a result Linux kernel can't find mandatory tables and fails to boot. Hence, revert it for good. This reverts commit 379d3c1fd6aa490b1ad5697525cfc89b615cf25a. BugLink: https://lore.kernel.org/all/20220131225930.GJ7515@bill-the-cat/ Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
		
			
				
	
	
		
			227 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright (C) 2016 Intel Corp.
 | 
						|
 * Copyright (C) 2017-2019 Siemens AG
 | 
						|
 * (Written by Lance Zhao <lijian.zhao@intel.com> for Intel Corp.)
 | 
						|
 * Copyright 2019 Google LLC
 | 
						|
 *
 | 
						|
 * Modified from coreboot apollolake/acpi.c
 | 
						|
 */
 | 
						|
 | 
						|
#define LOG_CATEGORY LOGC_ACPI
 | 
						|
 | 
						|
#include <common.h>
 | 
						|
#include <cpu.h>
 | 
						|
#include <dm.h>
 | 
						|
#include <log.h>
 | 
						|
#include <p2sb.h>
 | 
						|
#include <pci.h>
 | 
						|
#include <acpi/acpigen.h>
 | 
						|
#include <acpi/acpi_s3.h>
 | 
						|
#include <asm/acpi_table.h>
 | 
						|
#include <asm/cpu_common.h>
 | 
						|
#include <asm/intel_acpi.h>
 | 
						|
#include <asm/intel_gnvs.h>
 | 
						|
#include <asm/intel_pinctrl.h>
 | 
						|
#include <asm/intel_pinctrl_defs.h>
 | 
						|
#include <asm/intel_regs.h>
 | 
						|
#include <asm/io.h>
 | 
						|
#include <asm/mpspec.h>
 | 
						|
#include <asm/tables.h>
 | 
						|
#include <asm/arch/iomap.h>
 | 
						|
#include <asm/arch/gpio.h>
 | 
						|
#include <asm/arch/pm.h>
 | 
						|
#include <asm/arch/systemagent.h>
 | 
						|
#include <dm/acpi.h>
 | 
						|
#include <dm/uclass-internal.h>
 | 
						|
#include <power/acpi_pmc.h>
 | 
						|
 | 
						|
int arch_read_sci_irq_select(void)
 | 
						|
{
 | 
						|
	struct acpi_pmc_upriv *upriv;
 | 
						|
	struct udevice *dev;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	ret = uclass_first_device_err(UCLASS_ACPI_PMC, &dev);
 | 
						|
	if (ret)
 | 
						|
		return log_msg_ret("pmc", ret);
 | 
						|
	upriv = dev_get_uclass_priv(dev);
 | 
						|
 | 
						|
	return readl(upriv->pmc_bar0 + IRQ_REG);
 | 
						|
}
 | 
						|
 | 
						|
int arch_write_sci_irq_select(uint scis)
 | 
						|
{
 | 
						|
	struct acpi_pmc_upriv *upriv;
 | 
						|
	struct udevice *dev;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	ret = uclass_first_device_err(UCLASS_ACPI_PMC, &dev);
 | 
						|
	if (ret)
 | 
						|
		return log_msg_ret("pmc", ret);
 | 
						|
	upriv = dev_get_uclass_priv(dev);
 | 
						|
	writel(scis, upriv->pmc_bar0 + IRQ_REG);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * chromeos_init_acpi() - Initialise basic data to boot Chrome OS
 | 
						|
 *
 | 
						|
 * This tells Chrome OS to boot in developer mode
 | 
						|
 *
 | 
						|
 * @cros: Structure to initialise
 | 
						|
 */
 | 
						|
static void chromeos_init_acpi(struct chromeos_acpi_gnvs *cros)
 | 
						|
{
 | 
						|
	cros->active_main_fw = 1;
 | 
						|
	cros->active_main_fw = 1; /* A */
 | 
						|
	cros->switches = CHSW_DEVELOPER_SWITCH;
 | 
						|
	cros->main_fw_type = 2; /* Developer */
 | 
						|
}
 | 
						|
 | 
						|
int acpi_create_gnvs(struct acpi_global_nvs *gnvs)
 | 
						|
{
 | 
						|
	struct udevice *cpu;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	/* Clear out GNV */
 | 
						|
	memset(gnvs, '\0', sizeof(*gnvs));
 | 
						|
 | 
						|
	/* TODO(sjg@chromium.org): Add the console log to gnvs->cbmc */
 | 
						|
 | 
						|
	if (IS_ENABLED(CONFIG_CHROMEOS))
 | 
						|
		chromeos_init_acpi(&gnvs->chromeos);
 | 
						|
 | 
						|
	/* Set unknown wake source */
 | 
						|
	gnvs->pm1i = ~0ULL;
 | 
						|
 | 
						|
	/* CPU core count */
 | 
						|
	gnvs->pcnt = 1;
 | 
						|
	ret = uclass_find_first_device(UCLASS_CPU, &cpu);
 | 
						|
	if (cpu) {
 | 
						|
		ret = cpu_get_count(cpu);
 | 
						|
		if (ret > 0)
 | 
						|
			gnvs->pcnt = ret;
 | 
						|
	}
 | 
						|
 | 
						|
	gnvs->dpte = 1;
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en)
 | 
						|
{
 | 
						|
	/*
 | 
						|
	 * WAK_STS bit is set when the system is in one of the sleep states
 | 
						|
	 * (via the SLP_EN bit) and an enabled wake event occurs. Upon setting
 | 
						|
	 * this bit, the PMC will transition the system to the ON state and
 | 
						|
	 * can only be set by hardware and can only be cleared by writing a one
 | 
						|
	 * to this bit position.
 | 
						|
	 */
 | 
						|
	generic_pm1_en |= WAK_STS | RTC_EN | PWRBTN_EN;
 | 
						|
 | 
						|
	return generic_pm1_en;
 | 
						|
}
 | 
						|
 | 
						|
int arch_madt_sci_irq_polarity(int sci)
 | 
						|
{
 | 
						|
	return MP_IRQ_POLARITY_LOW;
 | 
						|
}
 | 
						|
 | 
						|
void fill_fadt(struct acpi_fadt *fadt)
 | 
						|
{
 | 
						|
	fadt->pm_tmr_blk = IOMAP_ACPI_BASE + PM1_TMR;
 | 
						|
 | 
						|
	fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
 | 
						|
	fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
 | 
						|
 | 
						|
	fadt->pm_tmr_len = 4;
 | 
						|
	fadt->duty_width = 3;
 | 
						|
 | 
						|
	fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042;
 | 
						|
 | 
						|
	fadt->x_pm_tmr_blk.space_id = 1;
 | 
						|
	fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
 | 
						|
	fadt->x_pm_tmr_blk.addrl = IOMAP_ACPI_BASE + PM1_TMR;
 | 
						|
}
 | 
						|
 | 
						|
void acpi_create_fadt(struct acpi_fadt *fadt, struct acpi_facs *facs,
 | 
						|
		      void *dsdt)
 | 
						|
{
 | 
						|
	struct acpi_table_header *header = &fadt->header;
 | 
						|
 | 
						|
	acpi_fadt_common(fadt, facs, dsdt);
 | 
						|
	intel_acpi_fill_fadt(fadt);
 | 
						|
	fill_fadt(fadt);
 | 
						|
	header->checksum = table_compute_checksum(fadt, header->length);
 | 
						|
}
 | 
						|
 | 
						|
int apl_acpi_fill_dmar(struct acpi_ctx *ctx)
 | 
						|
{
 | 
						|
	struct udevice *dev, *sa_dev;
 | 
						|
	u64 gfxvtbar = readq(MCHBAR_REG(GFXVTBAR)) & VTBAR_MASK;
 | 
						|
	u64 defvtbar = readq(MCHBAR_REG(DEFVTBAR)) & VTBAR_MASK;
 | 
						|
	bool gfxvten = readl(MCHBAR_REG(GFXVTBAR)) & VTBAR_ENABLED;
 | 
						|
	bool defvten = readl(MCHBAR_REG(DEFVTBAR)) & VTBAR_ENABLED;
 | 
						|
	void *tmp;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	uclass_find_first_device(UCLASS_VIDEO, &dev);
 | 
						|
	ret = uclass_first_device_err(UCLASS_NORTHBRIDGE, &sa_dev);
 | 
						|
	if (ret)
 | 
						|
		return log_msg_ret("no sa", ret);
 | 
						|
 | 
						|
	/* IGD has to be enabled, GFXVTBAR set and enabled */
 | 
						|
	if (dev && device_active(dev) && gfxvtbar && gfxvten) {
 | 
						|
		tmp = ctx->current;
 | 
						|
 | 
						|
		acpi_create_dmar_drhd(ctx, 0, 0, gfxvtbar);
 | 
						|
		ret = acpi_create_dmar_ds_pci(ctx, PCI_BDF(0, 2, 0));
 | 
						|
		if (ret)
 | 
						|
			return log_msg_ret("ds_pci", ret);
 | 
						|
		acpi_dmar_drhd_fixup(ctx, tmp);
 | 
						|
 | 
						|
		/* Add RMRR entry */
 | 
						|
		tmp = ctx->current;
 | 
						|
		acpi_create_dmar_rmrr(ctx->current, 0, sa_get_gsm_base(sa_dev),
 | 
						|
				      sa_get_tolud_base(sa_dev) - 1);
 | 
						|
		acpi_create_dmar_ds_pci(ctx->current, PCI_BDF(0, 2, 0));
 | 
						|
		acpi_dmar_rmrr_fixup(ctx, tmp);
 | 
						|
	}
 | 
						|
 | 
						|
	/* DEFVTBAR has to be set and enabled */
 | 
						|
	if (defvtbar && defvten) {
 | 
						|
		struct udevice *p2sb_dev;
 | 
						|
		u16 ibdf, hbdf;
 | 
						|
		uint ioapic, hpet;
 | 
						|
		int ret;
 | 
						|
 | 
						|
		tmp = ctx->current;
 | 
						|
		/*
 | 
						|
		 * P2SB may already be hidden. There's no clear rule, when.
 | 
						|
		 * It is needed to get bus, device and function for IOAPIC and
 | 
						|
		 * HPET device which is stored in P2SB device. So unhide it to
 | 
						|
		 * get the info and hide it again when done.
 | 
						|
		 *
 | 
						|
		 * TODO(sjg@chromium.org): p2sb_unhide() ?
 | 
						|
		 */
 | 
						|
		ret = uclass_first_device_err(UCLASS_P2SB, &p2sb_dev);
 | 
						|
		if (ret)
 | 
						|
			return log_msg_ret("p2sb", ret);
 | 
						|
 | 
						|
		dm_pci_read_config16(p2sb_dev, PCH_P2SB_IBDF, &ibdf);
 | 
						|
		ioapic = PCI_TO_BDF(ibdf);
 | 
						|
		dm_pci_read_config16(p2sb_dev, PCH_P2SB_HBDF, &hbdf);
 | 
						|
		hpet = PCI_TO_BDF(hbdf);
 | 
						|
		/* TODO(sjg@chromium.org): p2sb_hide() ? */
 | 
						|
 | 
						|
		acpi_create_dmar_drhd(ctx, DRHD_INCLUDE_PCI_ALL, 0, defvtbar);
 | 
						|
		acpi_create_dmar_ds_ioapic(ctx, 2, ioapic);
 | 
						|
		acpi_create_dmar_ds_msi_hpet(ctx, 0, hpet);
 | 
						|
		acpi_dmar_drhd_fixup(tmp, ctx->current);
 | 
						|
	}
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |