mainboards: Drop GNVS cmap and cmbp
Functionality depends of CMAP and CMBP references inside board specific ASL implementation. Only roda/rk9 and roda/rk886ex has that. Change-Id: I4da8292375cb589d67dc68496b1e81971bc2a61f Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49274 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
780e02d1a5
commit
cee844c957
|
@ -1,12 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <soc/nvs.h>
|
||||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
}
|
|
@ -6,5 +6,4 @@
|
|||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -7,5 +7,4 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->osys = 2002; /* At least WINXP SP2 (HPET fix) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -7,5 +7,4 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->osys = 2002; /* At least WINXP SP2 (HPET fix) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -6,5 +6,4 @@
|
|||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
#include <types.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <arch/ioapic.h>
|
||||
#include <arch/smp/mpspec.h>
|
||||
#include <device/device.h>
|
||||
|
@ -11,15 +10,6 @@
|
|||
|
||||
#include "../qemu-i440fx/fw_cfg.h"
|
||||
#include "../qemu-i440fx/acpi.h"
|
||||
#include <soc/nvs.h>
|
||||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
}
|
||||
|
||||
void mainboard_fill_fadt(acpi_fadt_t *fadt)
|
||||
{
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 1; /* COM 1 port */
|
||||
gnvs->cmap = 1; /* COM 2 port */
|
||||
gnvs->lptp = 0; /* LPT port */
|
||||
gnvs->fdcp = 0; /* Floppy Disk Controller */
|
||||
}
|
||||
|
|
|
@ -3,19 +3,10 @@
|
|||
#include <string.h>
|
||||
#include <console/console.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <soc/nvs.h>
|
||||
|
||||
#include "mainboard.h"
|
||||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable COM port(s) */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x00;
|
||||
}
|
||||
|
||||
static long acpi_create_ecdt(acpi_ecdt_t * ecdt)
|
||||
{
|
||||
/* Attention: Make sure these match the values from
|
||||
|
|
|
@ -9,5 +9,4 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
gnvs->lptp = 0; /* LPT port */
|
||||
gnvs->fdcp = 0; /* Floppy Disk Controller */
|
||||
gnvs->osys = 2002; /* At least WINXP SP2 (HPET fix) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <soc/nvs.h>
|
||||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
}
|
|
@ -6,5 +6,4 @@
|
|||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -7,5 +7,4 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->osys = 2002; /* At least WINXP SP2 (HPET fix) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <soc/nvs.h>
|
||||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
}
|
|
@ -9,11 +9,6 @@
|
|||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
/* Temperature at which OS will shutdown */
|
||||
gnvs->tcrt = 100;
|
||||
/* Temperature at which OS will throttle CPU */
|
||||
|
|
|
@ -5,10 +5,6 @@
|
|||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
/* Temperature at which OS will shutdown */
|
||||
gnvs->tcrt = 100;
|
||||
/* Temperature at which OS will throttle CPU */
|
||||
|
|
|
@ -6,5 +6,4 @@
|
|||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
gnvs->pwrs = 1; /* Power state (AC = 1) */
|
||||
gnvs->cmap = 0x01; /* Enable COM 1 port */
|
||||
}
|
||||
|
|
|
@ -9,11 +9,6 @@
|
|||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
/* Temperature at which OS will shutdown */
|
||||
gnvs->tcrt = 100;
|
||||
/* Temperature at which OS will throttle CPU */
|
||||
|
|
|
@ -5,10 +5,6 @@
|
|||
|
||||
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
||||
{
|
||||
/* Enable both COM ports */
|
||||
gnvs->cmap = 0x01;
|
||||
gnvs->cmbp = 0x01;
|
||||
|
||||
/* Temperature at which OS will shutdown */
|
||||
gnvs->tcrt = 100;
|
||||
/* Temperature at which OS will throttle CPU */
|
||||
|
|
Loading…
Reference in New Issue