- Several ACPI bug fixes
- Intel edison: Move config SYS_MALLOC_LEN to Kconfig
- Use "emmc" in ApolloLake FSP devicetree bindings
This commit is contained in:
Tom Rini 2020-09-21 11:01:07 -04:00
commit 10431c4eaa
8 changed files with 19 additions and 16 deletions

View File

@ -555,7 +555,7 @@ const struct fsp_binding fsp_m_bindings[] = {
}, { }, {
.type = FSP_UINT8, .type = FSP_UINT8,
.offset = offsetof(struct fsp_m_config, e_mmc_trace_len), .offset = offsetof(struct fsp_m_config, e_mmc_trace_len),
.propname = "fspm,e-mmc-trace-len", .propname = "fspm,emmc-trace-len",
}, { }, {
.type = FSP_UINT8, .type = FSP_UINT8,
.offset = offsetof(struct fsp_m_config, skip_cse_rbp), .offset = offsetof(struct fsp_m_config, skip_cse_rbp),
@ -1465,11 +1465,11 @@ const struct fsp_binding fsp_s_bindings[] = {
}, { }, {
.type = FSP_UINT8, .type = FSP_UINT8,
.offset = offsetof(struct fsp_s_config, e_mmc_enabled), .offset = offsetof(struct fsp_s_config, e_mmc_enabled),
.propname = "fsps,e-mmc-enabled", .propname = "fsps,emmc-enabled",
}, { }, {
.type = FSP_UINT8, .type = FSP_UINT8,
.offset = offsetof(struct fsp_s_config, e_mmc_host_max_speed), .offset = offsetof(struct fsp_s_config, e_mmc_host_max_speed),
.propname = "fsps,e-mmc-host-max-speed", .propname = "fsps,emmc-host-max-speed",
}, { }, {
.type = FSP_UINT8, .type = FSP_UINT8,
.offset = offsetof(struct fsp_s_config, ufs_enabled), .offset = offsetof(struct fsp_s_config, ufs_enabled),

View File

@ -252,6 +252,8 @@ static void acpi_create_spcr(struct acpi_spcr *spcr)
int space_id; int space_id;
int ret = -ENODEV; int ret = -ENODEV;
memset((void *)spcr, 0, sizeof(struct acpi_spcr));
/* Fill out header fields */ /* Fill out header fields */
acpi_fill_header(header, "SPCR"); acpi_fill_header(header, "SPCR");
header->length = sizeof(struct acpi_spcr); header->length = sizeof(struct acpi_spcr);
@ -427,7 +429,7 @@ ulong write_acpi_tables(ulong start_addr)
(char *)&AmlCode + sizeof(struct acpi_table_header), (char *)&AmlCode + sizeof(struct acpi_table_header),
dsdt->length - sizeof(struct acpi_table_header)); dsdt->length - sizeof(struct acpi_table_header));
acpi_inc_align(ctx, dsdt->length - sizeof(struct acpi_table_header)); acpi_inc(ctx, dsdt->length - sizeof(struct acpi_table_header));
/* Pack GNVS into the ACPI table area */ /* Pack GNVS into the ACPI table area */
for (i = 0; i < dsdt->length; i++) { for (i = 0; i < dsdt->length; i++) {
@ -450,6 +452,8 @@ ulong write_acpi_tables(ulong start_addr)
dsdt->checksum = 0; dsdt->checksum = 0;
dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length); dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length);
acpi_align(ctx);
/* /*
* Fill in platform-specific global NVS variables. If this fails we * Fill in platform-specific global NVS variables. If this fails we
* cannot return the error but this should only happen while debugging. * cannot return the error but this should only happen while debugging.

View File

@ -12,6 +12,9 @@ config SYS_SOC
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "edison" default "edison"
config SYS_MALLOC_LEN
default 0x08000000
config SYS_TEXT_BASE config SYS_TEXT_BASE
default 0x01101000 default 0x01101000

View File

@ -26,7 +26,7 @@ static void dump_hdr(struct acpi_table_header *hdr)
printf("%.*s %08lx %06x", ACPI_NAME_LEN, hdr->signature, printf("%.*s %08lx %06x", ACPI_NAME_LEN, hdr->signature,
(ulong)map_to_sysmem(hdr), hdr->length); (ulong)map_to_sysmem(hdr), hdr->length);
if (has_hdr) { if (has_hdr) {
printf(" (v%02d %.6s %.8s %u %.4s %d)\n", hdr->revision, printf(" (v%02d %.6s %.8s %x %.4s %x)\n", hdr->revision,
hdr->oem_id, hdr->oem_table_id, hdr->oem_revision, hdr->oem_id, hdr->oem_table_id, hdr->oem_revision,
hdr->aslc_id, hdr->aslc_revision); hdr->aslc_id, hdr->aslc_revision);
} else { } else {

View File

@ -174,7 +174,7 @@ Optional properties:
- fspm,oem-loading-base: OEM File Loading Address - fspm,oem-loading-base: OEM File Loading Address
- fspm,oem-file-name: OEM File Name to Load - fspm,oem-file-name: OEM File Name to Load
- fspm,mrc-boot-data-ptr: - fspm,mrc-boot-data-ptr:
- fspm,e-mmc-trace-len: eMMC Trace Length - fspm,emmc-trace-len: eMMC Trace Length
0x0: Long 0x0: Long
0x1: Short 0x1: Short
- fspm,skip-cse-rbp: Skip CSE RBP to support zero sized IBB - fspm,skip-cse-rbp: Skip CSE RBP to support zero sized IBB

View File

@ -318,7 +318,7 @@ Optional properties:
0x6: warm reset (default) 0x6: warm reset (default)
0xE: cold reset 0xE: cold reset
- fsps,sdcard-enabled: SD Card Support (D27:F0) - fsps,sdcard-enabled: SD Card Support (D27:F0)
- fsps,e-mmc-enabled: SeMMC Support (D28:F0) - fsps,emmc-enabled: SeMMC Support (D28:F0)
- fsps,emmc-host-max-speed: eMMC Max Speed - fsps,emmc-host-max-speed: eMMC Max Speed
0: HS400(default) 0: HS400(default)
1: HS200 1: HS200

View File

@ -23,10 +23,6 @@
#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
#define CONFIG_SYS_MONITOR_LEN (256 * 1024) #define CONFIG_SYS_MONITOR_LEN (256 * 1024)
#define CONFIG_SYS_MALLOC_LEN (128 * 1024 * 1024)
/* Environment */
/* RTC */ /* RTC */
#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0

View File

@ -366,21 +366,21 @@ static int dm_test_acpi_cmd_list(struct unit_test_state *uts)
ut_assert_nextline("RSDP %08lx %06lx (v02 U-BOOT)", addr, ut_assert_nextline("RSDP %08lx %06lx (v02 U-BOOT)", addr,
sizeof(struct acpi_rsdp)); sizeof(struct acpi_rsdp));
addr = ALIGN(addr + sizeof(struct acpi_rsdp), 16); addr = ALIGN(addr + sizeof(struct acpi_rsdp), 16);
ut_assert_nextline("RSDT %08lx %06lx (v01 U-BOOT U-BOOTBL %u INTL 0)", ut_assert_nextline("RSDT %08lx %06lx (v01 U-BOOT U-BOOTBL %x INTL 0)",
addr, sizeof(struct acpi_table_header) + addr, sizeof(struct acpi_table_header) +
3 * sizeof(u32), U_BOOT_BUILD_DATE); 3 * sizeof(u32), U_BOOT_BUILD_DATE);
addr = ALIGN(addr + sizeof(struct acpi_rsdt), 16); addr = ALIGN(addr + sizeof(struct acpi_rsdt), 16);
ut_assert_nextline("XSDT %08lx %06lx (v01 U-BOOT U-BOOTBL %u INTL 0)", ut_assert_nextline("XSDT %08lx %06lx (v01 U-BOOT U-BOOTBL %x INTL 0)",
addr, sizeof(struct acpi_table_header) + addr, sizeof(struct acpi_table_header) +
3 * sizeof(u64), U_BOOT_BUILD_DATE); 3 * sizeof(u64), U_BOOT_BUILD_DATE);
addr = ALIGN(addr + sizeof(struct acpi_xsdt), 64); addr = ALIGN(addr + sizeof(struct acpi_xsdt), 64);
ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %u INTL 0)", ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %x INTL 0)",
addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE); addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE);
addr = ALIGN(addr + sizeof(struct acpi_dmar), 16); addr = ALIGN(addr + sizeof(struct acpi_dmar), 16);
ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %u INTL 0)", ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %x INTL 0)",
addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE); addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE);
addr = ALIGN(addr + sizeof(struct acpi_dmar), 16); addr = ALIGN(addr + sizeof(struct acpi_dmar), 16);
ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %u INTL 0)", ut_assert_nextline("DMAR %08lx %06lx (v01 U-BOOT U-BOOTBL %x INTL 0)",
addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE); addr, sizeof(struct acpi_dmar), U_BOOT_BUILD_DATE);
ut_assert_console_end(); ut_assert_console_end();