- Fixed broken ICH SPI driver in software sequencer mode - Added "m25p,fast-read" to SPI flash node for x86 boards - Drop ROM_NEEDS_BLOBS and BUILD_ROM for x86 ROM builds - Define a default TSC timer frequency for all x86 boards - x86 MTRR MSR programming codes bug fixes - x86 "hob" command bug fixes - Don't program MTRR for DRAM for FSP1 - Move INIT_PHASE_END_FIRMWARE to FSP2 - Use external graphics card by default on Intel Crown Bay - tangier: Fix DMA controller IRQ polarity in CSRT
This commit is contained in:
commit
3b64774323
21
Kconfig
21
Kconfig
@ -343,27 +343,6 @@ config HAS_ROM
|
|||||||
Enables building of a u-boot.rom target. This collects U-Boot and
|
Enables building of a u-boot.rom target. This collects U-Boot and
|
||||||
any necessary binary blobs.
|
any necessary binary blobs.
|
||||||
|
|
||||||
config ROM_NEEDS_BLOBS
|
|
||||||
bool
|
|
||||||
depends on HAS_ROM
|
|
||||||
help
|
|
||||||
Enable this if building the u-boot.rom target needs binary blobs, and
|
|
||||||
so cannot be done normally. In this case, U-Boot will only build the
|
|
||||||
ROM if the required blobs exist. If not, you will see an warning like:
|
|
||||||
|
|
||||||
Image 'main-section' is missing external blobs and is non-functional:
|
|
||||||
intel-descriptor intel-me intel-refcode intel-vga intel-mrc
|
|
||||||
|
|
||||||
config BUILD_ROM
|
|
||||||
bool "Build U-Boot as BIOS replacement"
|
|
||||||
depends on HAS_ROM
|
|
||||||
default y if !ROM_NEEDS_BLOBS
|
|
||||||
help
|
|
||||||
This option allows to build a ROM version of U-Boot.
|
|
||||||
The build process generally requires several binary blobs
|
|
||||||
which are not shipped in the U-Boot source tree.
|
|
||||||
Please, see doc/arch/x86.rst for details.
|
|
||||||
|
|
||||||
config SPL_IMAGE
|
config SPL_IMAGE
|
||||||
string "SPL image used in the combined SPL+U-Boot image"
|
string "SPL image used in the combined SPL+U-Boot image"
|
||||||
default "spl/boot.bin" if ARCH_AT91 && SPL_NAND_SUPPORT
|
default "spl/boot.bin" if ARCH_AT91 && SPL_NAND_SUPPORT
|
||||||
|
@ -364,7 +364,6 @@ config HAVE_FSP
|
|||||||
depends on !EFI
|
depends on !EFI
|
||||||
select USE_HOB
|
select USE_HOB
|
||||||
select HAS_ROM
|
select HAS_ROM
|
||||||
select ROM_NEEDS_BLOBS
|
|
||||||
help
|
help
|
||||||
Select this option to add an Firmware Support Package binary to
|
Select this option to add an Firmware Support Package binary to
|
||||||
the resulting U-Boot image. It is a binary blob which U-Boot uses
|
the resulting U-Boot image. It is a binary blob which U-Boot uses
|
||||||
@ -525,7 +524,6 @@ config ENABLE_MRC_CACHE
|
|||||||
config HAVE_MRC
|
config HAVE_MRC
|
||||||
bool "Add a System Agent binary"
|
bool "Add a System Agent binary"
|
||||||
select HAS_ROM
|
select HAS_ROM
|
||||||
select ROM_NEEDS_BLOBS
|
|
||||||
depends on !HAVE_FSP
|
depends on !HAVE_FSP
|
||||||
help
|
help
|
||||||
Select this option to add a System Agent binary to
|
Select this option to add a System Agent binary to
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <asm/mp.h>
|
#include <asm/mp.h>
|
||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/mtrr.h>
|
#include <asm/mtrr.h>
|
||||||
|
#include <linux/log2.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
@ -155,12 +156,8 @@ int mtrr_commit(bool do_caches)
|
|||||||
debug("open done\n");
|
debug("open done\n");
|
||||||
qsort(req, gd->arch.mtrr_req_count, sizeof(*req), h_comp_mtrr);
|
qsort(req, gd->arch.mtrr_req_count, sizeof(*req), h_comp_mtrr);
|
||||||
for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
|
for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
|
||||||
set_var_mtrr(i, req->type, req->start, req->size);
|
mtrr_set_next_var(req->type, req->start, req->size);
|
||||||
|
|
||||||
/* Clear the ones that are unused */
|
|
||||||
debug("clear\n");
|
|
||||||
for (; i < mtrr_get_var_count(); i++)
|
|
||||||
wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
|
|
||||||
debug("close\n");
|
debug("close\n");
|
||||||
mtrr_close(&state, do_caches);
|
mtrr_close(&state, do_caches);
|
||||||
debug("mtrr done\n");
|
debug("mtrr done\n");
|
||||||
@ -183,6 +180,9 @@ int mtrr_add_request(int type, uint64_t start, uint64_t size)
|
|||||||
if (!gd->arch.has_mtrr)
|
if (!gd->arch.has_mtrr)
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
|
|
||||||
|
if (!is_power_of_2(size))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
|
if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
|
||||||
return -ENOSPC;
|
return -ENOSPC;
|
||||||
req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
|
req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
|
||||||
@ -227,6 +227,9 @@ int mtrr_set_next_var(uint type, uint64_t start, uint64_t size)
|
|||||||
{
|
{
|
||||||
int mtrr;
|
int mtrr;
|
||||||
|
|
||||||
|
if (!is_power_of_2(size))
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
mtrr = get_free_var_mtrr();
|
mtrr = get_free_var_mtrr();
|
||||||
if (mtrr < 0)
|
if (mtrr < 0)
|
||||||
return mtrr;
|
return mtrr;
|
||||||
|
@ -24,7 +24,6 @@ if INTEL_QUARK
|
|||||||
|
|
||||||
config HAVE_RMU
|
config HAVE_RMU
|
||||||
bool "Add a Remote Management Unit (RMU) binary"
|
bool "Add a Remote Management Unit (RMU) binary"
|
||||||
select ROM_NEEDS_BLOBS
|
|
||||||
help
|
help
|
||||||
Select this option to add a Remote Management Unit (RMU) binary
|
Select this option to add a Remote Management Unit (RMU) binary
|
||||||
to the resulting U-Boot image. It is a data block (up to 64K) of
|
to the resulting U-Boot image. It is a data block (up to 64K) of
|
||||||
@ -131,8 +130,8 @@ config SYS_CAR_SIZE
|
|||||||
Space in bytes in eSRAM used as Cache-As-ARM (CAR).
|
Space in bytes in eSRAM used as Cache-As-ARM (CAR).
|
||||||
Note this size must not exceed eSRAM's total size.
|
Note this size must not exceed eSRAM's total size.
|
||||||
|
|
||||||
config X86_TSC_TIMER_EARLY_FREQ
|
config X86_TSC_TIMER_FREQ
|
||||||
int
|
int
|
||||||
default 400
|
default 400000000
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -18,19 +18,17 @@
|
|||||||
|
|
||||||
static int __maybe_unused disable_igd(void)
|
static int __maybe_unused disable_igd(void)
|
||||||
{
|
{
|
||||||
struct udevice *igd, *sdvo;
|
struct udevice *igd = NULL;
|
||||||
|
struct udevice *sdvo = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = dm_pci_bus_find_bdf(TNC_IGD, &igd);
|
/*
|
||||||
if (ret)
|
* In case the IGD and SDVO devices were already in disabled state,
|
||||||
return ret;
|
* we should return and not proceed any further.
|
||||||
if (!igd)
|
*/
|
||||||
return 0;
|
dm_pci_bus_find_bdf(TNC_IGD, &igd);
|
||||||
|
dm_pci_bus_find_bdf(TNC_SDVO, &sdvo);
|
||||||
ret = dm_pci_bus_find_bdf(TNC_SDVO, &sdvo);
|
if (!igd || !sdvo)
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
if (!sdvo)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -89,8 +89,8 @@ static u32 acpi_fill_csrt_dma(struct acpi_csrt_group *grp)
|
|||||||
si->mmio_base_low = 0xff192000;
|
si->mmio_base_low = 0xff192000;
|
||||||
si->mmio_base_high = 0;
|
si->mmio_base_high = 0;
|
||||||
si->gsi_interrupt = 32;
|
si->gsi_interrupt = 32;
|
||||||
si->interrupt_polarity = 1;
|
si->interrupt_polarity = 0; /* Active High */
|
||||||
si->interrupt_mode = 0;
|
si->interrupt_mode = 0; /* Level triggered */
|
||||||
si->num_channels = 8;
|
si->num_channels = 8;
|
||||||
si->dma_address_width = 32;
|
si->dma_address_width = 32;
|
||||||
si->base_request_line = 0;
|
si->base_request_line = 0;
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -176,6 +176,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q64dw",
|
compatible = "winbond,w25q64dw",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -200,6 +200,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "macronix,mx25l6405d",
|
compatible = "macronix,mx25l6405d",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -149,6 +149,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "macronix,mx25u6435f", "jedec,spi-nor";
|
compatible = "macronix,mx25u6435f", "jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
rw-mrc-cache {
|
rw-mrc-cache {
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
/include/ "keyboard.dtsi"
|
/include/ "keyboard.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
#if defined(CONFIG_CHROMEOS_VBOOT) && defined(CONFIG_ROM_SIZE)
|
#if defined(CONFIG_CHROMEOS_VBOOT) && defined(CONFIG_ROM_SIZE)
|
||||||
#include "chromeos-x86.dtsi"
|
#include "chromeos-x86.dtsi"
|
||||||
@ -362,6 +363,7 @@
|
|||||||
u-boot,dm-pre-proper;
|
u-boot,dm-pre-proper;
|
||||||
u-boot,dm-spl;
|
u-boot,dm-spl;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q128fw",
|
compatible = "winbond,w25q128fw",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
rw-mrc-cache {
|
rw-mrc-cache {
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -430,6 +430,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q64",
|
compatible = "winbond,w25q64",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
#if defined(CONFIG_CHROMEOS_VBOOT) && defined(CONFIG_ROM_SIZE)
|
#if defined(CONFIG_CHROMEOS_VBOOT) && defined(CONFIG_ROM_SIZE)
|
||||||
@ -594,6 +594,7 @@
|
|||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q64",
|
compatible = "winbond,w25q64",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -48,6 +48,7 @@
|
|||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q64",
|
compatible = "winbond,w25q64",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -187,6 +187,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "stmicro,n25q064a",
|
compatible = "stmicro,n25q064a",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
/include/ "pcspkr.dtsi"
|
/include/ "pcspkr.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "coreboot x86 payload";
|
model = "coreboot x86 payload";
|
||||||
@ -30,10 +31,6 @@
|
|||||||
stdout-path = "/serial";
|
stdout-path = "/serial";
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <1000000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pci {
|
pci {
|
||||||
compatible = "pci-x86";
|
compatible = "pci-x86";
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
/include/ "keyboard.dtsi"
|
/include/ "keyboard.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -156,6 +156,7 @@
|
|||||||
|
|
||||||
spi-flash@0 {
|
spi-flash@0 {
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "winbond,w25q64bv", "jedec,spi-nor";
|
compatible = "winbond,w25q64bv", "jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
};
|
};
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
/include/ "pcspkr.dtsi"
|
/include/ "pcspkr.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
|
@ -198,6 +198,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "stmicro,n25q064a",
|
compatible = "stmicro,n25q064a",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
/include/ "skeleton.dtsi"
|
/include/ "skeleton.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
|
@ -6,7 +6,8 @@
|
|||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
|
|
||||||
/include/ "skeleton.dtsi"
|
/include/ "skeleton.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "EFI x86 Application";
|
model = "EFI x86 Application";
|
||||||
@ -16,10 +17,6 @@
|
|||||||
stdout-path = &serial;
|
stdout-path = &serial;
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <1000000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
serial: serial {
|
serial: serial {
|
||||||
compatible = "efi,uart";
|
compatible = "efi,uart";
|
||||||
};
|
};
|
||||||
|
@ -12,7 +12,8 @@
|
|||||||
/include/ "keyboard.dtsi"
|
/include/ "keyboard.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "EFI x86 Payload";
|
model = "EFI x86 Payload";
|
||||||
@ -30,10 +31,6 @@
|
|||||||
stdout-path = "/serial";
|
stdout-path = "/serial";
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <1000000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pci {
|
pci {
|
||||||
compatible = "pci-x86";
|
compatible = "pci-x86";
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
/include/ "skeleton.dtsi"
|
/include/ "skeleton.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "Intel Galileo";
|
model = "Intel Galileo";
|
||||||
@ -41,10 +42,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <400000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
mrc {
|
mrc {
|
||||||
compatible = "intel,quark-mrc";
|
compatible = "intel,quark-mrc";
|
||||||
flags = <MRC_FLAG_SCRAMBLE_EN>;
|
flags = <MRC_FLAG_SCRAMBLE_EN>;
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
/include/ "serial.dtsi"
|
/include/ "serial.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -200,6 +200,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
|
m25p,fast-read;
|
||||||
compatible = "stmicro,n25q064a",
|
compatible = "stmicro,n25q064a",
|
||||||
"jedec,spi-nor";
|
"jedec,spi-nor";
|
||||||
memory-map = <0xff800000 0x00800000>;
|
memory-map = <0xff800000 0x00800000>;
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
/include/ "keyboard.dtsi"
|
/include/ "keyboard.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -42,10 +42,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <1000000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pci {
|
pci {
|
||||||
compatible = "pci-x86";
|
compatible = "pci-x86";
|
||||||
#address-cells = <3>;
|
#address-cells = <3>;
|
||||||
|
@ -22,8 +22,8 @@
|
|||||||
/include/ "keyboard.dtsi"
|
/include/ "keyboard.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "rtc.dtsi"
|
/include/ "rtc.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
|
||||||
|
|
||||||
|
#include "tsc_timer.dtsi"
|
||||||
#include "smbios.dtsi"
|
#include "smbios.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
@ -53,10 +53,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
tsc-timer {
|
|
||||||
clock-frequency = <1000000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pci {
|
pci {
|
||||||
compatible = "pci-x86";
|
compatible = "pci-x86";
|
||||||
#address-cells = <3>;
|
#address-cells = <3>;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
/include/ "skeleton.dtsi"
|
/include/ "skeleton.dtsi"
|
||||||
/include/ "reset.dtsi"
|
/include/ "reset.dtsi"
|
||||||
/include/ "tsc_timer.dtsi"
|
#include "tsc_timer.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "slimbootloader x86 payload";
|
model = "slimbootloader x86 payload";
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
/ {
|
/ {
|
||||||
tsc-timer {
|
tsc-timer {
|
||||||
compatible = "x86,tsc-timer";
|
compatible = "x86,tsc-timer";
|
||||||
|
clock-frequency = <CONFIG_X86_TSC_TIMER_FREQ>;
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -119,7 +119,7 @@ void mtrr_close(struct mtrr_state *state, bool do_caches);
|
|||||||
*
|
*
|
||||||
* @type: Requested type (MTRR_TYPE_)
|
* @type: Requested type (MTRR_TYPE_)
|
||||||
* @start: Start address
|
* @start: Start address
|
||||||
* @size: Size
|
* @size: Size, must be power of 2
|
||||||
*
|
*
|
||||||
* @return: 0 on success, non-zero on failure
|
* @return: 0 on success, non-zero on failure
|
||||||
*/
|
*/
|
||||||
@ -144,8 +144,9 @@ int mtrr_commit(bool do_caches);
|
|||||||
*
|
*
|
||||||
* @type: Requested type (MTRR_TYPE_)
|
* @type: Requested type (MTRR_TYPE_)
|
||||||
* @start: Start address
|
* @start: Start address
|
||||||
* @size: Size
|
* @size: Size, must be power of 2
|
||||||
* @return 0 on success, -ENOSPC if there are no more MTRRs
|
* @return 0 on success, -EINVAL if size is not power of 2,
|
||||||
|
* -ENOSPC if there are no more MTRRs
|
||||||
*/
|
*/
|
||||||
int mtrr_set_next_var(uint type, uint64_t base, uint64_t size);
|
int mtrr_set_next_var(uint type, uint64_t base, uint64_t size);
|
||||||
|
|
||||||
|
@ -61,22 +61,6 @@ void board_final_init(void)
|
|||||||
debug("OK\n");
|
debug("OK\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void board_final_cleanup(void)
|
|
||||||
{
|
|
||||||
u32 status;
|
|
||||||
|
|
||||||
/* TODO(sjg@chromium.org): This causes Linux to crash */
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* call into FspNotify */
|
|
||||||
debug("Calling into FSP (notify phase INIT_PHASE_END_FIRMWARE): ");
|
|
||||||
status = fsp_notify(NULL, INIT_PHASE_END_FIRMWARE);
|
|
||||||
if (status)
|
|
||||||
debug("fail, error code %x\n", status);
|
|
||||||
else
|
|
||||||
debug("OK\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
int fsp_save_s3_stack(void)
|
int fsp_save_s3_stack(void)
|
||||||
{
|
{
|
||||||
struct udevice *dev;
|
struct udevice *dev;
|
||||||
|
@ -48,12 +48,28 @@ int dram_init_banksize(void)
|
|||||||
phys_addr_t mtrr_top;
|
phys_addr_t mtrr_top;
|
||||||
phys_addr_t low_end;
|
phys_addr_t low_end;
|
||||||
uint bank;
|
uint bank;
|
||||||
|
bool update_mtrr;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* For FSP1, the system memory and reserved memory used by FSP are
|
||||||
|
* already programmed in the MTRR by FSP. Also it is observed that
|
||||||
|
* FSP on Intel Queensbay platform reports the TSEG memory range
|
||||||
|
* that has the same RES_MEM_RESERVED resource type whose address
|
||||||
|
* is programmed by FSP to be near the top of 4 GiB space, which is
|
||||||
|
* not what we want for DRAM.
|
||||||
|
*
|
||||||
|
* However it seems FSP2's behavior is different. We need to add the
|
||||||
|
* DRAM range in MTRR otherwise the boot process goes very slowly,
|
||||||
|
* which was observed on Chrromebook Coral with FSP2.
|
||||||
|
*/
|
||||||
|
update_mtrr = CONFIG_IS_ENABLED(FSP_VERSION2);
|
||||||
|
|
||||||
if (!ll_boot_init()) {
|
if (!ll_boot_init()) {
|
||||||
gd->bd->bi_dram[0].start = 0;
|
gd->bd->bi_dram[0].start = 0;
|
||||||
gd->bd->bi_dram[0].size = gd->ram_size;
|
gd->bd->bi_dram[0].size = gd->ram_size;
|
||||||
|
|
||||||
mtrr_add_request(MTRR_TYPE_WRBACK, 0, gd->ram_size);
|
if (update_mtrr)
|
||||||
|
mtrr_add_request(MTRR_TYPE_WRBACK, 0, gd->ram_size);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,8 +92,10 @@ int dram_init_banksize(void)
|
|||||||
} else {
|
} else {
|
||||||
gd->bd->bi_dram[bank].start = res_desc->phys_start;
|
gd->bd->bi_dram[bank].start = res_desc->phys_start;
|
||||||
gd->bd->bi_dram[bank].size = res_desc->len;
|
gd->bd->bi_dram[bank].size = res_desc->len;
|
||||||
mtrr_add_request(MTRR_TYPE_WRBACK, res_desc->phys_start,
|
if (update_mtrr)
|
||||||
res_desc->len);
|
mtrr_add_request(MTRR_TYPE_WRBACK,
|
||||||
|
res_desc->phys_start,
|
||||||
|
res_desc->len);
|
||||||
log_debug("ram %llx %llx\n",
|
log_debug("ram %llx %llx\n",
|
||||||
gd->bd->bi_dram[bank].start,
|
gd->bd->bi_dram[bank].start,
|
||||||
gd->bd->bi_dram[bank].size);
|
gd->bd->bi_dram[bank].size);
|
||||||
@ -92,7 +110,8 @@ int dram_init_banksize(void)
|
|||||||
* Set up an MTRR to the top of low, reserved memory. This is necessary
|
* Set up an MTRR to the top of low, reserved memory. This is necessary
|
||||||
* for graphics to run at full speed in U-Boot.
|
* for graphics to run at full speed in U-Boot.
|
||||||
*/
|
*/
|
||||||
mtrr_add_request(MTRR_TYPE_WRBACK, 0, mtrr_top);
|
if (update_mtrr)
|
||||||
|
mtrr_add_request(MTRR_TYPE_WRBACK, 0, mtrr_top);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,25 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <init.h>
|
#include <init.h>
|
||||||
|
#include <asm/fsp/fsp_support.h>
|
||||||
|
|
||||||
int arch_fsp_init(void)
|
int arch_fsp_init(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void board_final_cleanup(void)
|
||||||
|
{
|
||||||
|
u32 status;
|
||||||
|
|
||||||
|
/* TODO(sjg@chromium.org): This causes Linux to crash */
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* call into FspNotify */
|
||||||
|
debug("Calling into FSP (notify phase INIT_PHASE_END_FIRMWARE): ");
|
||||||
|
status = fsp_notify(NULL, INIT_PHASE_END_FIRMWARE);
|
||||||
|
if (status)
|
||||||
|
debug("fail, error code %x\n", status);
|
||||||
|
else
|
||||||
|
debug("OK\n");
|
||||||
|
}
|
||||||
|
@ -78,7 +78,7 @@ static void show_hob_details(const struct hob_header *hdr)
|
|||||||
const struct hob_res_desc *res = ptr;
|
const struct hob_res_desc *res = ptr;
|
||||||
const char *typename;
|
const char *typename;
|
||||||
|
|
||||||
typename = res->type > 0 && res->type <= RES_MAX_MEM_TYPE ?
|
typename = res->type >= RES_SYS_MEM && res->type <= RES_MAX_MEM_TYPE ?
|
||||||
res_type[res->type] : "unknown";
|
res_type[res->type] : "unknown";
|
||||||
|
|
||||||
printf(" base = %08llx, len = %08llx, end = %08llx, type = %d (%s)\n\n",
|
printf(" base = %08llx, len = %08llx, end = %08llx, type = %d (%s)\n\n",
|
||||||
@ -158,8 +158,7 @@ static int do_hob(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
U_BOOT_CMD(hob, 3, 1, do_hob,
|
U_BOOT_CMD(hob, 3, 1, do_hob,
|
||||||
"[-v] [seq] Print Hand-Off Block (HOB) information"
|
"[-v] [seq] Print Hand-Off Block (HOB) information",
|
||||||
" -v - Show detailed HOB information where available"
|
" -v - Show detailed HOB information where available\n"
|
||||||
" seq - Record # to show (all by default)",
|
" seq - Record # to show (all by default)"
|
||||||
""
|
|
||||||
);
|
);
|
||||||
|
@ -8,8 +8,8 @@ CONFIG_MAX_CPUS=2
|
|||||||
CONFIG_DEFAULT_DEVICE_TREE="crownbay"
|
CONFIG_DEFAULT_DEVICE_TREE="crownbay"
|
||||||
CONFIG_VENDOR_INTEL=y
|
CONFIG_VENDOR_INTEL=y
|
||||||
CONFIG_TARGET_CROWNBAY=y
|
CONFIG_TARGET_CROWNBAY=y
|
||||||
|
CONFIG_DISABLE_IGD=y
|
||||||
CONFIG_SMP=y
|
CONFIG_SMP=y
|
||||||
CONFIG_HAVE_VGA_BIOS=y
|
|
||||||
CONFIG_GENERATE_PIRQ_TABLE=y
|
CONFIG_GENERATE_PIRQ_TABLE=y
|
||||||
CONFIG_GENERATE_MP_TABLE=y
|
CONFIG_GENERATE_MP_TABLE=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
@ -46,6 +46,7 @@ CONFIG_TFTP_TSIZE=y
|
|||||||
CONFIG_REGMAP=y
|
CONFIG_REGMAP=y
|
||||||
CONFIG_SYSCON=y
|
CONFIG_SYSCON=y
|
||||||
CONFIG_CPU=y
|
CONFIG_CPU=y
|
||||||
|
# CONFIG_SPI_FLASH_SMART_HWCAPS is not set
|
||||||
CONFIG_E1000=y
|
CONFIG_E1000=y
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_SOUND_I8254=y
|
CONFIG_SOUND_I8254=y
|
||||||
|
@ -42,17 +42,8 @@ Build Instructions for U-Boot as BIOS replacement (bare mode)
|
|||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
Building a ROM version of U-Boot (hereafter referred to as u-boot.rom) is a
|
Building a ROM version of U-Boot (hereafter referred to as u-boot.rom) is a
|
||||||
little bit tricky, as generally it requires several binary blobs which are not
|
little bit tricky, as generally it requires several binary blobs which are not
|
||||||
shipped in the U-Boot source tree. Due to this reason, the u-boot.rom build is
|
shipped in the U-Boot source tree. Due to this reason, the u-boot.rom build may
|
||||||
not turned on by default in the U-Boot source tree. Firstly, you need turn it
|
print some warnings if required binary blobs (e.g.: FSP) are not present.
|
||||||
on by enabling the ROM build either via an environment variable::
|
|
||||||
|
|
||||||
$ export BUILD_ROM=y
|
|
||||||
|
|
||||||
or via configuration::
|
|
||||||
|
|
||||||
CONFIG_BUILD_ROM=y
|
|
||||||
|
|
||||||
Both tell the Makefile to build u-boot.rom as a target.
|
|
||||||
|
|
||||||
CPU Microcode
|
CPU Microcode
|
||||||
-------------
|
-------------
|
||||||
|
@ -918,12 +918,14 @@ static int ich_spi_child_pre_probe(struct udevice *dev)
|
|||||||
struct spi_slave *slave = dev_get_parent_priv(dev);
|
struct spi_slave *slave = dev_get_parent_priv(dev);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Yes this controller can only write a small number of bytes at
|
* Yes this controller can only transfer a small number of bytes at
|
||||||
* once! The limit is typically 64 bytes. For hardware sequencing a
|
* once! The limit is typically 64 bytes. For hardware sequencing a
|
||||||
* a loop is used to get around this.
|
* a loop is used to get around this.
|
||||||
*/
|
*/
|
||||||
if (!plat->hwseq)
|
if (!plat->hwseq) {
|
||||||
|
slave->max_read_size = priv->databytes;
|
||||||
slave->max_write_size = priv->databytes;
|
slave->max_write_size = priv->databytes;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* ICH 7 SPI controller only supports array read command
|
* ICH 7 SPI controller only supports array read command
|
||||||
* and byte program command for SST flash
|
* and byte program command for SST flash
|
||||||
|
@ -124,12 +124,12 @@ config RENESAS_OSTM_TIMER
|
|||||||
Enables support for the Renesas OSTM Timer driver.
|
Enables support for the Renesas OSTM Timer driver.
|
||||||
This timer is present on Renesas RZ/A1 R7S72100 SoCs.
|
This timer is present on Renesas RZ/A1 R7S72100 SoCs.
|
||||||
|
|
||||||
config X86_TSC_TIMER_EARLY_FREQ
|
config X86_TSC_TIMER_FREQ
|
||||||
int "x86 TSC timer frequency in MHz when used as the early timer"
|
int "x86 TSC timer frequency in Hz"
|
||||||
depends on X86_TSC_TIMER
|
depends on X86_TSC_TIMER
|
||||||
default 1000
|
default 1000000000
|
||||||
help
|
help
|
||||||
Sets the estimated CPU frequency in MHz when TSC is used as the
|
Sets the estimated CPU frequency in Hz when TSC is used as the
|
||||||
early timer and the frequency can neither be calibrated via some
|
early timer and the frequency can neither be calibrated via some
|
||||||
hardware ways, nor got from device tree at the time when device
|
hardware ways, nor got from device tree at the time when device
|
||||||
tree is not available yet.
|
tree is not available yet.
|
||||||
|
@ -425,12 +425,13 @@ static void tsc_timer_ensure_setup(bool early)
|
|||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
if (early)
|
if (early)
|
||||||
fast_calibrate = CONFIG_X86_TSC_TIMER_EARLY_FREQ;
|
gd->arch.clock_rate = CONFIG_X86_TSC_TIMER_FREQ;
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
|
|
||||||
done:
|
done:
|
||||||
gd->arch.clock_rate = fast_calibrate * 1000000;
|
if (!gd->arch.clock_rate)
|
||||||
|
gd->arch.clock_rate = fast_calibrate * 1000000;
|
||||||
}
|
}
|
||||||
gd->arch.tsc_inited = true;
|
gd->arch.tsc_inited = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user