blob: d6caa3189b90f54ab4bb62b2fdc1861b11d84162 [file] [log] [blame]
/* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "LocateDeviceTree.h"
#include "UpdateDeviceTree.h"
#include <Library/Board.h>
#include <Library/BootLinux.h>
#include <Library/PartitionTableUpdate.h>
#include <Library/Rtic.h>
// Variables to initialize board data
STATIC int
platform_dt_absolute_match (struct dt_entry *cur_dt_entry,
struct dt_entry_node *dt_list);
STATIC struct dt_entry *
platform_dt_match_best (struct dt_entry_node *dt_list);
STATIC BOOLEAN DtboNeed = TRUE;
STATIC INT32 DtboIdx = INVALID_PTN;
INT32 GetDtboIdx (VOID)
{
return DtboIdx;
}
STATIC INT32 DtbIdx = INVALID_PTN;
INT32 GetDtbIdx (VOID)
{
return DtbIdx;
}
BOOLEAN GetDtboNeeded (VOID)
{
return DtboNeed;
}
/* Add function to allocate dt entry list, used for recording
* the entry which conform to platform_dt_absolute_match()
*/
static struct dt_entry_node *dt_entry_list_init (VOID)
{
struct dt_entry_node *dt_node_member = NULL;
dt_node_member =
(struct dt_entry_node *)AllocateZeroPool (sizeof (struct dt_entry_node));
if (!dt_node_member) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for dt_node_member\n"));
return NULL;
}
list_clear_node (&dt_node_member->node);
dt_node_member->dt_entry_m =
(struct dt_entry *)AllocateZeroPool (sizeof (struct dt_entry));
if (!dt_node_member->dt_entry_m) {
DEBUG ((EFI_D_ERROR,
"Failed to allocate memory for dt_node_member->dt_entry_m\n"));
FreePool (dt_node_member);
dt_node_member = NULL;
return NULL;
}
return dt_node_member;
}
static VOID
insert_dt_entry_in_queue (struct dt_entry_node *dt_list,
struct dt_entry_node *dt_node_member)
{
list_add_tail (&dt_list->node, &dt_node_member->node);
}
static VOID
dt_entry_list_delete (struct dt_entry_node *dt_node_member)
{
if (list_in_list (&dt_node_member->node)) {
list_delete (&dt_node_member->node);
FreePool (dt_node_member->dt_entry_m);
dt_node_member->dt_entry_m = NULL;
FreePool (dt_node_member);
dt_node_member = NULL;
}
}
static BOOLEAN
DeviceTreeCompatible (VOID *dtb,
UINT32 dtb_size,
struct dt_entry_node *dtb_list)
{
int root_offset;
const VOID *prop = NULL;
const char *plat_prop = NULL;
const char *board_prop = NULL;
const char *pmic_prop = NULL;
char *model = NULL;
struct dt_entry *dt_entry_array = NULL;
struct board_id *board_data = NULL;
struct plat_id *platform_data = NULL;
struct pmic_id *pmic_data = NULL;
int len;
int len_board_id;
int len_plat_id;
int min_plat_id_len = 0;
int len_pmic_id;
UINT32 dtb_ver;
UINT64 NumEntries = 0;
UINT64 i;
UINT32 j, k, n;
UINT32 msm_data_count;
UINT32 board_data_count;
UINT32 pmic_data_count;
BOOLEAN Result = FALSE;
static UINT32 DtbCount;
root_offset = fdt_path_offset (dtb, "/");
if (root_offset < 0)
return FALSE;
prop = fdt_getprop (dtb, root_offset, "model", &len);
if (prop && len > 0) {
model = (char *)AllocateZeroPool (sizeof (char) * len);
if (!model) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for model\n"));
return FALSE;
}
AsciiStrnCpyS (model, (sizeof (CHAR8) * len), prop, len);
} else {
DEBUG ((EFI_D_ERROR, "model does not exist in device tree\n"));
}
/* Find the pmic-id prop from DTB , if pmic-id is present then
* the DTB is version 3, otherwise find the board-id prop from DTB ,
* if board-id is present then the DTB is version 2 */
pmic_prop = (const char *)fdt_getprop (dtb, root_offset, "qcom,pmic-id",
&len_pmic_id);
board_prop = (const char *)fdt_getprop (dtb, root_offset, "qcom,board-id",
&len_board_id);
if (pmic_prop && (len_pmic_id > 0) && board_prop && (len_board_id > 0)) {
if ((len_pmic_id % PMIC_ID_SIZE) || (len_board_id % BOARD_ID_SIZE)) {
DEBUG ((EFI_D_ERROR, "qcom,pmic-id (%d) or qcom,board-id(%d) in device "
"tree is not a multiple of (%d %d)\n",
len_pmic_id, len_board_id, PMIC_ID_SIZE, BOARD_ID_SIZE));
goto Exit;
}
dtb_ver = DEV_TREE_VERSION_V3;
min_plat_id_len = PLAT_ID_SIZE;
} else if (board_prop && len_board_id > 0) {
if (len_board_id % BOARD_ID_SIZE) {
DEBUG ((EFI_D_ERROR,
"qcom,board-id (%d) in device tree is not a multiple of (%d)\n",
len_board_id, BOARD_ID_SIZE));
goto Exit;
}
dtb_ver = DEV_TREE_VERSION_V2;
min_plat_id_len = PLAT_ID_SIZE;
} else {
dtb_ver = DEV_TREE_VERSION_V1;
min_plat_id_len = DT_ENTRY_V1_SIZE;
}
/* Get the msm-id prop from DTB */
plat_prop =
(const char *)fdt_getprop (dtb, root_offset, "qcom,msm-id", &len_plat_id);
if (!plat_prop || len_plat_id <= 0) {
DEBUG ((EFI_D_VERBOSE, "qcom,msm-id entry not found\n"));
goto Exit;
} else if (len_plat_id % min_plat_id_len) {
DEBUG ((EFI_D_ERROR,
"qcom, msm-id in device tree is (%d) not a multiple of (%d)\n",
len_plat_id, min_plat_id_len));
goto Exit;
}
if (dtb_ver == DEV_TREE_VERSION_V2 || dtb_ver == DEV_TREE_VERSION_V3) {
board_data_count = (len_board_id / BOARD_ID_SIZE);
msm_data_count = (len_plat_id / PLAT_ID_SIZE);
/* If dtb version is v2.0, the pmic_data_count will be <= 0 */
pmic_data_count = (len_pmic_id / PMIC_ID_SIZE);
/* If we are using dtb v3.0, then we have split board, msm & pmic data in
* the DTB
* If we are using dtb v2.0, then we have split board & msmdata in the DTB
*/
board_data = (struct board_id *)AllocateZeroPool (
sizeof (struct board_id) * (len_board_id / BOARD_ID_SIZE));
if (!board_data) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for board_data\n"));
goto Exit;
}
platform_data = (struct plat_id *)AllocateZeroPool (
sizeof (struct plat_id) * (len_plat_id / PLAT_ID_SIZE));
if (!platform_data) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for platform_data\n"));
goto Exit;
}
if (dtb_ver == DEV_TREE_VERSION_V3) {
pmic_data = (struct pmic_id *)AllocateZeroPool (sizeof (struct pmic_id) *
(len_pmic_id / PMIC_ID_SIZE));
if (!pmic_data) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for pmic_data\n"));
goto Exit;
}
}
/* Extract board data from DTB */
for (i = 0; i < board_data_count; i++) {
board_data[i].variant_id =
fdt32_to_cpu (((struct board_id *)board_prop)->variant_id);
board_data[i].platform_subtype =
fdt32_to_cpu (((struct board_id *)board_prop)->platform_subtype);
/* For V2/V3 version of DTBs we have platform version field as part
* of variant ID, in such case the subtype will be mentioned as 0x0
* As the qcom, board-id = <0xSSPMPmPH, 0x0>
* SS -- Subtype
* PM -- Platform major version
* Pm -- Platform minor version
* PH -- Platform hardware CDP/MTP
* In such case to make it compatible with LK algorithm move the subtype
* from variant_id to subtype field
*/
if (board_data[i].platform_subtype == 0)
board_data[i].platform_subtype =
fdt32_to_cpu (((struct board_id *)board_prop)->variant_id) >> 0x18;
len_board_id -= sizeof (struct board_id);
board_prop += sizeof (struct board_id);
}
/* Extract platform data from DTB */
for (i = 0; i < msm_data_count; i++) {
platform_data[i].platform_id =
fdt32_to_cpu (((struct plat_id *)plat_prop)->platform_id);
platform_data[i].soc_rev =
fdt32_to_cpu (((struct plat_id *)plat_prop)->soc_rev);
len_plat_id -= sizeof (struct plat_id);
plat_prop += sizeof (struct plat_id);
}
if ((pmic_data_count != 0) &&
(MAX_UINT64 / pmic_data_count < (msm_data_count * board_data_count))) {
DEBUG ((EFI_D_ERROR, "NumEntries exceeds MAX_UINT64\n"));
goto Exit;
}
if (dtb_ver == DEV_TREE_VERSION_V3 && pmic_prop) {
/* Extract pmic data from DTB */
for (i = 0; i < pmic_data_count; i++) {
pmic_data[i].pmic_version[0] =
fdt32_to_cpu (((struct pmic_id *)pmic_prop)->pmic_version[0]);
pmic_data[i].pmic_version[1] =
fdt32_to_cpu (((struct pmic_id *)pmic_prop)->pmic_version[1]);
pmic_data[i].pmic_version[2] =
fdt32_to_cpu (((struct pmic_id *)pmic_prop)->pmic_version[2]);
pmic_data[i].pmic_version[3] =
fdt32_to_cpu (((struct pmic_id *)pmic_prop)->pmic_version[3]);
len_pmic_id -= sizeof (struct pmic_id);
pmic_prop += sizeof (struct pmic_id);
}
/* We need to merge board & platform data into dt entry structure */
NumEntries = (uint64_t)msm_data_count * board_data_count *
pmic_data_count;
} else {
/* We need to merge board & platform data into dt entry structure */
NumEntries = (uint64_t)msm_data_count * board_data_count;
}
dt_entry_array = (struct dt_entry *)AllocateZeroPool (
sizeof (struct dt_entry) *
NumEntries);
if (!dt_entry_array) {
DEBUG ((EFI_D_ERROR, "Failed to allocate memory for dt_entry_array\n"));
goto Exit;
}
/* If we have '<X>; <Y>; <Z>' as platform data & '<A>; <B>; <C>' as board
* data.
* Then dt entry should look like
* <X ,A >;<X, B>;<X, C>;
* <Y ,A >;<Y, B>;<Y, C>;
* <Z ,A >;<Z, B>;<Z, C>;
*/
k = 0;
DtbCount++;
for (i = 0; i < msm_data_count; i++) {
for (j = 0; j < board_data_count; j++) {
if (dtb_ver == DEV_TREE_VERSION_V3 && pmic_prop) {
for (n = 0; n < pmic_data_count; n++) {
dt_entry_array[k].platform_id = platform_data[i].platform_id;
dt_entry_array[k].soc_rev = platform_data[i].soc_rev;
dt_entry_array[k].variant_id = board_data[j].variant_id;
dt_entry_array[k].board_hw_subtype = board_data[j].platform_subtype;
dt_entry_array[k].pmic_rev[0] = pmic_data[n].pmic_version[0];
dt_entry_array[k].pmic_rev[1] = pmic_data[n].pmic_version[1];
dt_entry_array[k].pmic_rev[2] = pmic_data[n].pmic_version[2];
dt_entry_array[k].pmic_rev[3] = pmic_data[n].pmic_version[3];
dt_entry_array[k].offset = (UINT64)dtb;
dt_entry_array[k].size = dtb_size;
dt_entry_array[k].Idx = DtbCount;
k++;
}
} else {
dt_entry_array[k].platform_id = platform_data[i].platform_id;
dt_entry_array[k].soc_rev = platform_data[i].soc_rev;
dt_entry_array[k].variant_id = board_data[j].variant_id;
dt_entry_array[k].board_hw_subtype = board_data[j].platform_subtype;
dt_entry_array[k].pmic_rev[0] = BoardPmicTarget (0);
dt_entry_array[k].pmic_rev[1] = BoardPmicTarget (1);
dt_entry_array[k].pmic_rev[2] = BoardPmicTarget (2);
dt_entry_array[k].pmic_rev[3] = BoardPmicTarget (3);
dt_entry_array[k].offset = (UINT64)dtb;
dt_entry_array[k].size = dtb_size;
dt_entry_array[k].Idx = DtbCount;
k++;
}
}
}
for (i = 0; i < NumEntries; i++) {
if (platform_dt_absolute_match (&(dt_entry_array[i]), dtb_list)) {
DEBUG ((EFI_D_VERBOSE, "Device tree exact match the board: <0x%x 0x%x "
"0x%x 0x%x> == <0x%x 0x%x 0x%x 0x%x>\n",
dt_entry_array[i].platform_id, dt_entry_array[i].variant_id,
dt_entry_array[i].soc_rev, dt_entry_array[i].board_hw_subtype,
BoardPlatformRawChipId (), BoardPlatformType (),
BoardPlatformChipVersion (), BoardPlatformSubType ()));
} else {
DEBUG ((EFI_D_VERBOSE, "Device tree's msm_id doesn't match the board: "
"<0x%x 0x%x 0x%x 0x%x> != <0x%x 0x%x 0x%x "
"0x%x>\n",
dt_entry_array[i].platform_id, dt_entry_array[i].variant_id,
dt_entry_array[i].soc_rev, dt_entry_array[i].board_hw_subtype,
BoardPlatformRawChipId (), BoardPlatformType (),
BoardPlatformChipVersion (), BoardPlatformSubType ()));
}
}
Result = TRUE;
}
Exit:
if (board_data) {
FreePool (board_data);
board_data = NULL;
}
if (platform_data) {
FreePool (platform_data);
platform_data = NULL;
}
if (pmic_data) {
FreePool (pmic_data);
pmic_data = NULL;
}
if (dt_entry_array) {
FreePool (dt_entry_array);
dt_entry_array = NULL;
}
if (model) {
FreePool (model);
model = NULL;
}
return Result;
}
/*
* Will relocate the DTB to the tags addr if the device tree is found and return
* its address
*
* For Header Version 2, the arguments Kernel and KernelSize will be
* the entire bootimage and the bootimage size.
*
* Arguments: kernel - Start address of the kernel/bootimage
* loaded in RAM
* tags - Start address of the tags loaded in RAM
* kernel_size - Size of the kernel/bootimage in bytes
*
* Return Value: DTB address : If appended device tree is found
* 'NULL' : Otherwise
*/
VOID *
DeviceTreeAppended (VOID *kernel,
UINT32 kernel_size,
UINT32 dtb_offset,
VOID *tags)
{
EFI_STATUS Status;
uintptr_t kernel_end = (uintptr_t)kernel + kernel_size;
VOID *dtb = NULL;
VOID *bestmatch_tag = NULL;
UINT64 RamdiskLoadAddr;
UINT64 BaseMemory = 0;
struct dt_entry *best_match_dt_entry = NULL;
UINT32 bestmatch_tag_size;
struct dt_entry_node *dt_entry_queue = NULL;
struct dt_entry_node *dt_node_tmp1 = NULL;
struct dt_entry_node *dt_node_tmp2 = NULL;
/* Initialize the dtb entry node*/
dt_entry_queue =
(struct dt_entry_node *)AllocateZeroPool (sizeof (struct dt_entry_node));
if (!dt_entry_queue) {
DEBUG ((EFI_D_ERROR, "Out of memory\n"));
return NULL;
}
list_initialize (&dt_entry_queue->node);
if (!dtb_offset) {
DEBUG ((EFI_D_ERROR, "DTB offset is NULL\n"));
goto out;
}
if (((uintptr_t)kernel + (uintptr_t)dtb_offset) < (uintptr_t)kernel) {
goto out;
}
dtb = kernel + dtb_offset;
while (((uintptr_t)dtb + sizeof (struct fdt_header)) <
(uintptr_t)kernel_end) {
struct fdt_header dtb_hdr;
UINT32 dtb_size;
/* the DTB could be unaligned, so extract the header,
* and operate on it separately */
gBS->CopyMem (&dtb_hdr, dtb, sizeof (struct fdt_header));
if (fdt_check_header ((const VOID *)&dtb_hdr) != 0 ||
fdt_check_header_ext ((VOID *)&dtb_hdr) != 0 ||
((uintptr_t)dtb + (uintptr_t)fdt_totalsize ((const VOID *)&dtb_hdr) <
(uintptr_t)dtb) ||
((uintptr_t)dtb + (uintptr_t)fdt_totalsize ((const VOID *)&dtb_hdr) >
(uintptr_t)kernel_end))
break;
dtb_size = fdt_totalsize (&dtb_hdr);
if (!DeviceTreeCompatible (dtb, dtb_size, dt_entry_queue)) {
DEBUG ((EFI_D_VERBOSE, "Error while DTB parse continue with next DTB\n"));
if (!GetRticDtb (dtb))
DEBUG ((EFI_D_VERBOSE,
"Error while DTB parsing RTIC prop continue with next DTB\n"));
}
/* goto the next device tree if any */
dtb += dtb_size;
}
best_match_dt_entry = platform_dt_match_best (dt_entry_queue);
if (best_match_dt_entry) {
bestmatch_tag = (VOID *)best_match_dt_entry->offset;
bestmatch_tag_size = best_match_dt_entry->size;
DEBUG ((EFI_D_INFO, "Best match DTB tags "
"%u/%08x/0x%08x/%x/%x/%x/%x/%x/(offset)0x%08x/"
"(size)0x%08x\n",
best_match_dt_entry->platform_id, best_match_dt_entry->variant_id,
best_match_dt_entry->board_hw_subtype, best_match_dt_entry->soc_rev,
best_match_dt_entry->pmic_rev[0], best_match_dt_entry->pmic_rev[1],
best_match_dt_entry->pmic_rev[2], best_match_dt_entry->pmic_rev[3],
best_match_dt_entry->offset, best_match_dt_entry->size));
DEBUG ((EFI_D_INFO, "Using pmic info 0x%0x/0x%x/0x%x/0x%0x for device "
"0x%0x/0x%x/0x%x/0x%0x\n",
best_match_dt_entry->pmic_rev[0], best_match_dt_entry->pmic_rev[1],
best_match_dt_entry->pmic_rev[2], best_match_dt_entry->pmic_rev[3],
BoardPmicTarget (0), BoardPmicTarget (1), BoardPmicTarget (2),
BoardPmicTarget (3)));
}
/* free queue's memory */
list_for_every_entry (&dt_entry_queue->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_VERBOSE, "Current node is the end\n"));
break;
}
dt_node_tmp2 = (struct dt_entry_node *)dt_node_tmp1->node.prev;
dt_entry_list_delete (dt_node_tmp1);
dt_node_tmp1 = dt_node_tmp2;
}
if (bestmatch_tag) {
Status = BaseMem (&BaseMemory);
if (Status != EFI_SUCCESS) {
DEBUG ((EFI_D_ERROR, "Unable to find Base memory for DDR %r\n", Status));
FreePool (dt_entry_queue);
dt_entry_queue = NULL;
goto out;
}
RamdiskLoadAddr = SetandGetLoadAddr (NULL, LOAD_ADDR_RAMDISK);
if ((RamdiskLoadAddr - (UINT64)tags) > RamdiskLoadAddr) {
DEBUG ((EFI_D_ERROR, "Tags address is not valid\n"));
goto out;
}
if ((RamdiskLoadAddr - (UINT64)tags) < bestmatch_tag_size) {
DEBUG ((EFI_D_ERROR, "Tag size is over the limit\n"));
goto out;
}
gBS->CopyMem (tags, bestmatch_tag, bestmatch_tag_size);
DtbIdx = best_match_dt_entry->Idx;
/* clear out the old DTB magic so kernel doesn't find it */
*((UINT32 *)(kernel + dtb_offset)) = 0;
FreePool (dt_entry_queue);
dt_entry_queue = NULL;
return tags;
}
DEBUG (
(EFI_D_ERROR,
"DTB offset is incorrect, kernel image does not have appended DTB\n"));
out:
FreePool (dt_entry_queue);
dt_entry_queue = NULL;
return NULL;
}
STATIC BOOLEAN
CheckAllBitsSet (UINT32 DtMatchVal)
{
return (DtMatchVal & ALL_BITS_SET) == (ALL_BITS_SET);
}
STATIC VOID
ReadBestPmicMatch (CONST CHAR8 *PmicProp, UINT32 PmicEntCount,
PmicIdInfo *BestPmicInfo)
{
UINT32 PmicEntIdx;
UINT32 Idx;
PmicIdInfo CurPmicInfo;
memset (BestPmicInfo, 0, sizeof (PmicIdInfo));
for (PmicEntIdx = 0; PmicEntIdx < PmicEntCount; PmicEntIdx++) {
memset (&CurPmicInfo, 0, sizeof (PmicIdInfo));
for (Idx = 0; Idx < MAX_PMIC_IDX; Idx++) {
CurPmicInfo.DtPmicModel[Idx] =
fdt32_to_cpu (((struct pmic_id *)PmicProp)->pmic_version[Idx]);
DEBUG ((EFI_D_VERBOSE, "pmic_data[%u].:%x\n", Idx,
CurPmicInfo.DtPmicModel[Idx]));
CurPmicInfo.DtPmicRev[Idx] =
CurPmicInfo.DtPmicModel[Idx] & PMIC_REV_MASK;
CurPmicInfo.DtPmicModel[Idx] =
CurPmicInfo.DtPmicModel[Idx] & PMIC_MODEL_MASK;
if ((CurPmicInfo.DtPmicModel[Idx]) ==
BoardPmicModel (Idx)) {
CurPmicInfo.DtMatchVal |=
BIT ((PMIC_MATCH_EXACT_MODEL_IDX0 + Idx * PMIC_SHIFT_IDX));
} else if (CurPmicInfo.DtPmicModel[Idx] == 0) {
CurPmicInfo.DtMatchVal |=
BIT ((PMIC_MATCH_DEFAULT_MODEL_IDX0 + Idx * PMIC_SHIFT_IDX));
} else {
CurPmicInfo.DtMatchVal = BIT (NONE_MATCH);
DEBUG ((EFI_D_VERBOSE, "Pmic model does not match\n"));
break;
}
if (CurPmicInfo.DtPmicRev[Idx] == (BoardPmicTarget (Idx)
& PMIC_REV_MASK)) {
CurPmicInfo.DtMatchVal |=
BIT ((PMIC_MATCH_EXACT_REV_IDX0 + Idx * PMIC_SHIFT_IDX));
} else if (CurPmicInfo.DtPmicRev[Idx] <
(BoardPmicTarget (Idx) & PMIC_REV_MASK)) {
CurPmicInfo.DtMatchVal |= BIT ((PMIC_MATCH_BEST_REV_IDX0 +
Idx * PMIC_SHIFT_IDX));
} else {
DEBUG ((EFI_D_VERBOSE, "Pmic revision does not match\n"));
break;
}
}
DEBUG ((EFI_D_VERBOSE, "BestPmicInfo.DtMatchVal : %x"
" CurPmicInfo[%u]->DtMatchVal : %x\n", BestPmicInfo->DtMatchVal,
PmicEntIdx, CurPmicInfo.DtMatchVal));
if (BestPmicInfo->DtMatchVal < CurPmicInfo.DtMatchVal) {
gBS->CopyMem (BestPmicInfo, &CurPmicInfo,
sizeof (struct PmicIdInfo));
} else if (BestPmicInfo->DtMatchVal ==
CurPmicInfo.DtMatchVal) {
if (BestPmicInfo->DtPmicRev[0] < CurPmicInfo.DtPmicRev[0]) {
gBS->CopyMem (BestPmicInfo, &CurPmicInfo,
sizeof (struct PmicIdInfo));
} else if (BestPmicInfo->DtPmicRev[1] <
CurPmicInfo.DtPmicRev[1]) {
gBS->CopyMem (BestPmicInfo, &CurPmicInfo,
sizeof (struct PmicIdInfo));
} else if (BestPmicInfo->DtPmicRev[2] <
CurPmicInfo.DtPmicRev[2]) {
gBS->CopyMem (BestPmicInfo, &CurPmicInfo,
sizeof (struct PmicIdInfo));
} else if (BestPmicInfo->DtPmicRev[3] <
CurPmicInfo.DtPmicRev[3]) {
gBS->CopyMem (BestPmicInfo, &CurPmicInfo,
sizeof (struct PmicIdInfo));
}
}
PmicProp += sizeof (struct pmic_id);
}
}
STATIC EFI_STATUS GetPlatformMatchDtb (DtInfo * CurDtbInfo,
CONST CHAR8 *PlatProp,
INT32 LenPlatId,
INT32 MinPlatIdLen)
{
if (CurDtbInfo == NULL) {
DEBUG ((EFI_D_VERBOSE, "Input parameters null\n"));
return EFI_INVALID_PARAMETER;
}
if (PlatProp && (LenPlatId > 0) && (!(LenPlatId % MinPlatIdLen))) {
/*Compare msm-id of the dtb vs Board*/
CurDtbInfo->DtPlatformId =
fdt32_to_cpu (((struct plat_id *)PlatProp)->platform_id);
DEBUG ((EFI_D_VERBOSE, "Boardsocid = %x, Dtsocid = %x\n",
(BoardPlatformRawChipId () & SOC_MASK),
(CurDtbInfo->DtPlatformId & SOC_MASK)));
if ((BoardPlatformRawChipId () & SOC_MASK) ==
(CurDtbInfo->DtPlatformId & SOC_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (SOC_MATCH);
} else {
DEBUG ((EFI_D_VERBOSE, "qcom,msm-id does not match\n"));
/* If it's neither exact nor default match don't select dtb */
CurDtbInfo->DtMatchVal = BIT (NONE_MATCH);
return EFI_NOT_FOUND;
}
/*Compare soc rev of the dtb vs Board*/
CurDtbInfo->DtSocRev = fdt32_to_cpu (((struct plat_id *)PlatProp)->soc_rev);
DEBUG ((EFI_D_VERBOSE, "BoardSocRev = %x, DtSocRev =%x\n",
BoardPlatformChipVersion (), CurDtbInfo->DtSocRev));
if (CurDtbInfo->DtSocRev == BoardPlatformChipVersion ()) {
CurDtbInfo->DtMatchVal |= BIT (VERSION_EXACT_MATCH);
} else if (CurDtbInfo->DtSocRev < BoardPlatformChipVersion ()) {
CurDtbInfo->DtMatchVal |= BIT (VERSION_BEST_MATCH);
} else if (CurDtbInfo->DtSocRev) {
DEBUG ((EFI_D_VERBOSE, "soc version does not match\n"));
}
/*Compare Foundry Id of the dtb vs Board*/
CurDtbInfo->DtFoundryId =
fdt32_to_cpu (((struct plat_id *)PlatProp)->platform_id) &
FOUNDRY_ID_MASK;
DEBUG ((EFI_D_VERBOSE, "BoardFoundry = %x, DtFoundry = %x\n",
(BoardPlatformFoundryId () << PLATFORM_FOUNDRY_SHIFT),
CurDtbInfo->DtFoundryId));
if (CurDtbInfo->DtFoundryId ==
(BoardPlatformFoundryId () << PLATFORM_FOUNDRY_SHIFT)) {
CurDtbInfo->DtMatchVal |= BIT (FOUNDRYID_EXACT_MATCH);
} else if (CurDtbInfo->DtFoundryId == 0) {
CurDtbInfo->DtMatchVal |= BIT (FOUNDRYID_DEFAULT_MATCH);
} else {
DEBUG ((EFI_D_VERBOSE, "soc foundry does not match\n"));
/* If it's neither exact nor default match don't select dtb */
CurDtbInfo->DtMatchVal = BIT (NONE_MATCH);
return EFI_NOT_FOUND;
}
} else {
DEBUG ((EFI_D_VERBOSE, "qcom, msm-id does not exist (or) is"
" (%d) not a multiple of (%d)\n",
LenPlatId, MinPlatIdLen));
}
return EFI_SUCCESS;
}
STATIC EFI_STATUS GetBoardMatchDtb (DtInfo *CurDtbInfo,
CONST CHAR8 *BoardProp,
INT32 LenBoardId)
{
if (CurDtbInfo == NULL) {
DEBUG ((EFI_D_VERBOSE, "Input parameters null\n"));
return EFI_INVALID_PARAMETER;
}
if (BoardProp && (LenBoardId > 0) && (!(LenBoardId % BOARD_ID_SIZE))) {
CurDtbInfo->DtVariantId =
fdt32_to_cpu (((struct board_id *)BoardProp)->variant_id);
CurDtbInfo->DtPlatformSubtype =
fdt32_to_cpu (((struct board_id *)BoardProp)->platform_subtype);
if (CurDtbInfo->DtPlatformSubtype == 0) {
CurDtbInfo->DtPlatformSubtype =
fdt32_to_cpu (((struct board_id *)BoardProp)->variant_id) >>
PLATFORM_SUBTYPE_SHIFT_ID;
}
DEBUG ((EFI_D_VERBOSE, "BoardVariant = %x, DtVariant = %x\n",
BoardPlatformType (), CurDtbInfo->DtVariantId));
CurDtbInfo->DtVariantMajor = CurDtbInfo->DtVariantId & VARIANT_MAJOR_MASK;
CurDtbInfo->DtVariantMinor = CurDtbInfo->DtVariantId & VARIANT_MINOR_MASK;
CurDtbInfo->DtVariantId = CurDtbInfo->DtVariantId & VARIANT_MASK;
if (CurDtbInfo->DtVariantId == BoardPlatformType ()) {
CurDtbInfo->DtMatchVal |= BIT (VARIANT_MATCH);
} else if (CurDtbInfo->DtVariantId) {
DEBUG ((EFI_D_VERBOSE, "qcom,board-id does not"
" match\n"));
/* If it's neither exact nor default match don't select dtb */
CurDtbInfo->DtMatchVal = BIT (NONE_MATCH);
return EFI_NOT_FOUND;
}
if (CurDtbInfo->DtVariantMajor == (BoardTargetId () & VARIANT_MAJOR_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (VARIANT_MAJOR_EXACT_MATCH);
} else if (CurDtbInfo->DtVariantMajor <
(BoardTargetId () & VARIANT_MAJOR_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (VARIANT_MAJOR_BEST_MATCH);
} else if (CurDtbInfo->DtVariantMajor) {
DEBUG ((EFI_D_VERBOSE, "qcom,board-id major version "
"does not match\n"));
}
if (CurDtbInfo->DtVariantMinor == (BoardTargetId () & VARIANT_MINOR_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (VARIANT_MINOR_EXACT_MATCH);
} else if (CurDtbInfo->DtVariantMinor <
(BoardTargetId () & VARIANT_MINOR_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (VARIANT_MINOR_BEST_MATCH);
} else if (CurDtbInfo->DtVariantMinor) {
DEBUG ((EFI_D_VERBOSE, "qcom,board-id minor version "
"does not match\n"));
}
DEBUG ((EFI_D_VERBOSE, "BoardSubtype = %x, DtSubType = %x\n",
BoardPlatformSubType (), CurDtbInfo->DtPlatformSubtype));
if ((CurDtbInfo->DtPlatformSubtype & PLATFORM_SUBTYPE_MASK) ==
BoardPlatformSubType ()) {
CurDtbInfo->DtMatchVal |= BIT (SUBTYPE_EXACT_MATCH);
} else if ((CurDtbInfo->DtPlatformSubtype & PLATFORM_SUBTYPE_MASK) == 0) {
CurDtbInfo->DtMatchVal |= BIT (SUBTYPE_DEFAULT_MATCH);
} else {
DEBUG ((EFI_D_VERBOSE, "subtype-id doesnot match\n"));
/* If it's neither exact nor default match don't select dtb */
CurDtbInfo->DtMatchVal = BIT (NONE_MATCH);
return EFI_NOT_FOUND;
}
if ((CurDtbInfo->DtPlatformSubtype & DDR_MASK) ==
(BoardPlatformHlosSubType() & DDR_MASK)) {
CurDtbInfo->DtMatchVal |= BIT (DDR_MATCH);
} else {
DEBUG ((EFI_D_VERBOSE, "ddr size does not match\n"));
}
} else {
DEBUG ((EFI_D_VERBOSE, "qcom,board-id does not exist (or) (%d) "
"is not a multiple of (%d)\n",
LenBoardId, BOARD_ID_SIZE));
}
return EFI_SUCCESS;
}
/* Dt selection table for quick reference
| SNO | Dt Property | CDT Property | Exact | Best | Default |
|-----+---------------+-----------------+-------+------+---------+
| | qcom, msm-id | | | | |
| | | PlatformId | Y | N | N |
| | | SocRev | N | Y | N |
| | | FoundryId | Y | N | 0 |
| | qcom,board-id | | | | |
| | | VariantId | Y | N | N |
| | | VariantMajor | N | Y | N |
| | | VariantMinor | N | Y | N |
| | | PlatformSubtype | Y | N | 0 |
| | qcom,pmic-id | | | | |
| | | PmicModelId | Y | N | 0 |
| | | PmicMetalRev | N | Y | N |
| | | PmicLayerRev | N | Y | N |
| | | PmicVariantRev | N | Y | N |
*/
STATIC BOOLEAN
ReadDtbFindMatch (DtInfo *CurDtbInfo, DtInfo *BestDtbInfo, UINT32 ExactMatch)
{
EFI_STATUS Status;
CONST CHAR8 *PlatProp = NULL;
CONST CHAR8 *BoardProp = NULL;
CONST CHAR8 *PmicProp = NULL;
INT32 LenBoardId;
INT32 LenPlatId;
INT32 LenPmicId;
INT32 MinPlatIdLen = PLAT_ID_SIZE;
INT32 RootOffset = 0;
VOID *Dtb = CurDtbInfo->Dtb;
UINT32 Idx;
UINT32 PmicEntCount;
UINT32 MsmDataCount;
PmicIdInfo BestPmicInfo;
BOOLEAN FindBestMatch = FALSE;
DtInfo TempDtbInfo = *CurDtbInfo;
memset (&BestPmicInfo, 0, sizeof (PmicIdInfo));
/*Ensure MatchVal to 0 initially*/
CurDtbInfo->DtMatchVal = 0;
RootOffset = fdt_path_offset (Dtb, "/");
if (RootOffset < 0) {
DEBUG ((EFI_D_ERROR, "Unable to locate root node\n"));
return FALSE;
}
/* Get the msm-id prop from DTB */
PlatProp = (CONST CHAR8 *)fdt_getprop (Dtb, RootOffset, "qcom,msm-id",
&LenPlatId);
if (PlatProp &&
(LenPlatId > 0) &&
(!(LenPlatId % MinPlatIdLen))) {
/*
For Multiple soc-id's, save the best SocRev match DT in temp and search
for the exact match. If exact match is not found, use best match DT from
temp.
*/
MsmDataCount = (LenPlatId / MinPlatIdLen);
/* Ensure to reset the match value */
TempDtbInfo.DtMatchVal = NONE_MATCH;
for (Idx = 0; Idx < MsmDataCount; Idx++) {
/* Ensure MatchVal should be 0 for every match */
CurDtbInfo->DtMatchVal = NONE_MATCH;
Status = GetPlatformMatchDtb (CurDtbInfo,
PlatProp,
LenPlatId,
MinPlatIdLen);
if (Status == EFI_SUCCESS &&
CurDtbInfo->DtMatchVal > TempDtbInfo.DtMatchVal) {
TempDtbInfo = *CurDtbInfo;
}
LenPlatId -= PLAT_ID_SIZE;
PlatProp += PLAT_ID_SIZE;
}
*CurDtbInfo = TempDtbInfo;
if (CurDtbInfo->DtMatchVal == NONE_MATCH) {
DEBUG ((EFI_D_VERBOSE, "Platform dt prop search failed.\n"));
goto cleanup;
}
} else {
DEBUG ((EFI_D_VERBOSE, "qcom, msm-id does not exist (or) is"
" (%d) not a multiple of (%d)\n",
LenPlatId, MinPlatIdLen));
}
/* Get the properties like variant id, subtype from Dtb then compare the
* dtb vs Board*/
BoardProp = (CONST CHAR8 *)fdt_getprop (Dtb, RootOffset, "qcom,board-id",
&LenBoardId);
Status = GetBoardMatchDtb (CurDtbInfo, BoardProp, LenBoardId);
if (Status != EFI_SUCCESS) {
DEBUG ((EFI_D_VERBOSE, "Board dt prop search failed.\n"));
goto cleanup;
}
/*Get the pmic property from Dtb then compare the dtb vs Board*/
PmicProp =
(CONST CHAR8 *)fdt_getprop (Dtb, RootOffset, "qcom,pmic-id", &LenPmicId);
if ((PmicProp) && (LenPmicId > 0) && (!(LenPmicId % PMIC_ID_SIZE))) {
PmicEntCount = LenPmicId / PMIC_ID_SIZE;
/* Get the best match pmic */
ReadBestPmicMatch (PmicProp, PmicEntCount, &BestPmicInfo);
CurDtbInfo->DtMatchVal |= BestPmicInfo.DtMatchVal;
for (Idx = 0; Idx < MAX_PMIC_IDX; Idx++) {
CurDtbInfo->DtPmicModel[Idx] = BestPmicInfo.DtPmicModel[Idx];
CurDtbInfo->DtPmicRev[Idx] = BestPmicInfo.DtPmicRev[Idx];
}
DEBUG ((EFI_D_VERBOSE, "CurDtbInfo->DtMatchVal : %x "
"BestPmicInfo.DtMatchVal :%x\n", CurDtbInfo->DtMatchVal,
BestPmicInfo.DtMatchVal));
} else {
DEBUG ((EFI_D_VERBOSE, "qcom,pmic-id does not exit (or) is (%d)"
" not a multiple of (%d)\n",
LenPmicId, PMIC_ID_SIZE));
}
cleanup:
if (CurDtbInfo->DtMatchVal & BIT (ExactMatch)) {
if (BestDtbInfo->DtMatchVal < CurDtbInfo->DtMatchVal) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
FindBestMatch = TRUE;
} else if (BestDtbInfo->DtMatchVal == CurDtbInfo->DtMatchVal) {
FindBestMatch = TRUE;
if (BestDtbInfo->DtSocRev < CurDtbInfo->DtSocRev) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtVariantMajor < CurDtbInfo->DtVariantMajor) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtVariantMinor < CurDtbInfo->DtVariantMinor) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtPmicRev[0] < CurDtbInfo->DtPmicRev[0]) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtPmicRev[1] < CurDtbInfo->DtPmicRev[1]) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtPmicRev[2] < CurDtbInfo->DtPmicRev[2]) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else if (BestDtbInfo->DtPmicRev[3] < CurDtbInfo->DtPmicRev[3]) {
gBS->CopyMem (BestDtbInfo, CurDtbInfo, sizeof (struct DtInfo));
} else {
FindBestMatch = FALSE;
}
}
}
return FindBestMatch;
}
/*
* For Header Version 2, the arguments Kernel and KernelSize will be
* the entire bootimage and the bootimage size.
* For Header Version 3, Kernel holds the base of the vendor_boot
* image and KernelSize holds its size.
*/
VOID *
GetSocDtb (VOID *Kernel, UINT32 KernelSize, UINT32 DtbOffset, VOID *DtbLoadAddr)
{
uintptr_t KernelEnd = (uintptr_t)Kernel + KernelSize;
VOID *Dtb = NULL;
struct fdt_header DtbHdr;
UINT32 DtbSize = 0;
INT32 DtbCount = 0;
DtInfo CurDtbInfo = {0};
DtInfo BestDtbInfo = {0};
if (!DtbOffset) {
DEBUG ((EFI_D_ERROR, "DTB offset is NULL\n"));
return NULL;
}
if (((uintptr_t)Kernel + (uintptr_t)DtbOffset) < (uintptr_t)Kernel) {
return NULL;
}
Dtb = Kernel + DtbOffset;
while (((uintptr_t)Dtb + sizeof (struct fdt_header)) < (uintptr_t)KernelEnd) {
/* the DTB could be unaligned, so extract the header,
* and operate on it separately */
gBS->CopyMem (&DtbHdr, Dtb, sizeof (struct fdt_header));
DtbSize = fdt_totalsize ((const VOID *)&DtbHdr);
if (fdt_check_header ((const VOID *)&DtbHdr) != 0 ||
fdt_check_header_ext ((VOID *)&DtbHdr) != 0 ||
((uintptr_t)Dtb + DtbSize < (uintptr_t)Dtb) ||
((uintptr_t)Dtb + DtbSize > (uintptr_t)KernelEnd))
break;
CurDtbInfo.Dtb = Dtb;
if (ReadDtbFindMatch (&CurDtbInfo, &BestDtbInfo, SOC_MATCH)) {
DtbIdx = DtbCount;
}
if (CurDtbInfo.DtMatchVal) {
if (CurDtbInfo.DtMatchVal & BIT (SOC_MATCH)) {
if (CheckAllBitsSet (CurDtbInfo.DtMatchVal)) {
DEBUG ((EFI_D_VERBOSE, "Exact DTB match"
" found. DTBO search is not "
"required\n"));
DtboNeed = FALSE;
}
}
} else {
if (!GetRticDtb (Dtb)) {
DEBUG ((EFI_D_VERBOSE, "Error while DTB parsing"
" RTIC prop continue with next DTB\n"));
}
}
DEBUG ((EFI_D_VERBOSE, "Bestmatch = %x\n", BestDtbInfo.DtMatchVal));
Dtb += DtbSize;
DtbCount++;
}
if (!BestDtbInfo.Dtb) {
DEBUG ((EFI_D_ERROR, "No match found for Soc Dtb type\n"));
return NULL;
}
return BestDtbInfo.Dtb;
}
/*
Function to extract Dtb from user dtbo partition.
*/
EFI_STATUS
GetOvrdDtb ( VOID **DtboImgBuffer)
{
struct DtboTableHdr *DtboTableHdr = NULL;
struct DtboTableEntry *DtboTableEntry = NULL;
VOID *OvrdDtb = NULL;
UINT32 DtboTableEntriesCount = 0;
UINT32 DtboTableEntryOffset = 0;
EFI_STATUS Status = EFI_SUCCESS;
UINT32 DtboImgSz = 0;
CHAR16 PtnName[MAX_GPT_NAME_SIZE] = {0};
/** Get size of user_dtbo partition **/
UINT32 BlkIOAttrib = 0;
PartiSelectFilter HandleFilter;
UINT32 MaxHandles = 1;
EFI_BLOCK_IO_PROTOCOL *BlockIo = NULL;
HandleInfo HandleInfoList[1];
GUARD ( StrnCpyS (PtnName,
MAX_GPT_NAME_SIZE,
(CONST CHAR16 *)L"user_dtbo",
(UINTN)StrLen (L"user_dtbo")));
BlkIOAttrib |= BLK_IO_SEL_PARTITIONED_MBR;
BlkIOAttrib |= BLK_IO_SEL_PARTITIONED_GPT;
BlkIOAttrib |= BLK_IO_SEL_MEDIA_TYPE_NON_REMOVABLE;
BlkIOAttrib |= BLK_IO_SEL_MATCH_PARTITION_LABEL;
HandleFilter.RootDeviceType = NULL;
HandleFilter.PartitionLabel = NULL;
HandleFilter.VolumeName = NULL;
HandleFilter.PartitionLabel = PtnName;
Status =
GetBlkIOHandles (BlkIOAttrib, &HandleFilter, HandleInfoList, &MaxHandles);
if (Status != EFI_SUCCESS ||
MaxHandles != 1) {
DEBUG ((EFI_D_ERROR,
"Override DTB: GetBlkIOHandles failed loading user_dtbo!\n"));
Status = EFI_LOAD_ERROR;
goto err;
}
BlockIo = HandleInfoList[0].BlkIo;
DtboImgSz = (BlockIo->Media->LastBlock + 1) * BlockIo->Media->BlockSize;
*DtboImgBuffer = AllocateZeroPool (DtboImgSz);
if (*DtboImgBuffer == NULL) {
DEBUG ((EFI_D_ERROR, "Override DTB: Buffer allocation failure\n"));
Status = EFI_OUT_OF_RESOURCES;
goto err;
}
/** Load user_dtbo image. **/
Status = LoadImageFromPartition (*DtboImgBuffer, &DtboImgSz, PtnName);
if (Status != EFI_SUCCESS) {
DEBUG ((EFI_D_ERROR, "Override DTB: DtboImgBuffer loading falied\n"));
return Status;
}
DtboTableHdr = (struct DtboTableHdr *)*DtboImgBuffer;
DtboTableEntryOffset = fdt32_to_cpu (DtboTableHdr->DtEntryOffset);
if (CHECK_ADD64 ((UINT64)*DtboImgBuffer, DtboTableEntryOffset)) {
DEBUG ((EFI_D_ERROR,
"Override DTB: Integer overflow detected Dtbo address\n"));
Status = EFI_INVALID_PARAMETER;
goto err;
}
DtboTableEntry =
(struct DtboTableEntry *)(*DtboImgBuffer + DtboTableEntryOffset);
if (!DtboTableEntry) {
DEBUG ((EFI_D_ERROR, "Override DTB: No proper DtTable\n"));
Status = EFI_INVALID_PARAMETER;
goto err;
}
// Support only one dtb in user dtbo image.
DtboTableEntriesCount = fdt32_to_cpu (DtboTableHdr->DtEntryCount);
if (DtboTableEntriesCount > 1) {
DEBUG ((EFI_D_ERROR,
"Override DTB: Exceeding maximum supported dtb count in Image\n"));
Status = EFI_INVALID_PARAMETER;
goto err;
}
OvrdDtb = *DtboImgBuffer + fdt32_to_cpu (DtboTableEntry->DtOffset);
if (fdt_check_header (OvrdDtb) ||
fdt_check_header_ext (OvrdDtb)) {
DEBUG ((EFI_D_ERROR, "Override DTB: No Valid DTB in image\n"));
Status = EFI_INVALID_PARAMETER;
goto err;
}
*DtboImgBuffer = OvrdDtb;
return Status;
err:
if (*DtboImgBuffer) {
FreePool (*DtboImgBuffer);
}
return Status;
}
VOID *
GetBoardDtb (BootInfo *Info, VOID *DtboImgBuffer)
{
struct DtboTableHdr *DtboTableHdr = DtboImgBuffer;
struct DtboTableEntry *DtboTableEntry = NULL;
UINT32 DtboCount = 0;
VOID *BoardDtb = NULL;
UINT32 DtboTableEntriesCount = 0;
UINT32 FirstDtboTableEntryOffset = 0;
DtInfo CurDtbInfo = {0};
DtInfo BestDtbInfo = {0};
BOOLEAN FindBestDtb = FALSE;
if (!DtboImgBuffer) {
DEBUG ((EFI_D_ERROR, "Dtbo Img buffer is NULL\n"));
return NULL;
}
FirstDtboTableEntryOffset = fdt32_to_cpu (DtboTableHdr->DtEntryOffset);
if (CHECK_ADD64 ((UINT64)DtboImgBuffer, FirstDtboTableEntryOffset)) {
DEBUG ((EFI_D_ERROR, "Integer overflow deteced with Dtbo address\n"));
return NULL;
}
DtboTableEntry =
(struct DtboTableEntry *)(DtboImgBuffer + FirstDtboTableEntryOffset);
if (!DtboTableEntry) {
DEBUG ((EFI_D_ERROR, "No proper DtTable\n"));
return NULL;
}
DtboTableEntriesCount = fdt32_to_cpu (DtboTableHdr->DtEntryCount);
for (DtboCount = 0; DtboCount < DtboTableEntriesCount; DtboCount++) {
if (CHECK_ADD64 ((UINT64)DtboImgBuffer,
fdt32_to_cpu (DtboTableEntry->DtOffset))) {
DEBUG ((EFI_D_ERROR, "Integer overflow detected with Dtbo address\n"));
return NULL;
}
BoardDtb = DtboImgBuffer + fdt32_to_cpu (DtboTableEntry->DtOffset);
if (fdt_check_header (BoardDtb) || fdt_check_header_ext (BoardDtb)) {
DEBUG ((EFI_D_ERROR, "No Valid Dtb\n"));
break;
}
CurDtbInfo.Dtb = BoardDtb;
FindBestDtb = ReadDtbFindMatch (&CurDtbInfo, &BestDtbInfo, VARIANT_MATCH);
DEBUG ((EFI_D_VERBOSE, "Dtbo count = %u LocalBoardDtMatch = %x"
"\n",
DtboCount, CurDtbInfo.DtMatchVal));
if (FindBestDtb) {
DtboIdx = DtboCount;
}
DtboTableEntry++;
}
if (!BestDtbInfo.Dtb) {
DEBUG ((EFI_D_ERROR, "Unable to find the Board Dtb\n"));
return NULL;
}
return BestDtbInfo.Dtb;
}
/* Returns 0 if the device tree is valid. */
int
DeviceTreeValidate (UINT8 *DeviceTreeBuff,
UINT32 PageSize,
UINT32 *DeviceTreeSize)
{
UINT32 dt_entry_size;
UINT64 hdr_size;
struct dt_table *table;
if (DeviceTreeSize) {
table = (struct dt_table *)DeviceTreeBuff;
if (table->magic != DEV_TREE_MAGIC) {
// bad magic in device tree table
return -1;
}
if (table->version == DEV_TREE_VERSION_V1) {
dt_entry_size = sizeof (struct dt_entry_v1);
} else if (table->version == DEV_TREE_VERSION_V2) {
dt_entry_size = sizeof (struct dt_entry_v2);
} else if (table->version == DEV_TREE_VERSION_V3) {
dt_entry_size = sizeof (struct dt_entry);
} else {
// unsupported dt version
return -1;
}
hdr_size =
((UINT64)table->num_entries * dt_entry_size) + DEV_TREE_HEADER_SIZE;
// hdr_size = ROUNDUP(hdr_size, PageSize);
hdr_size = EFI_SIZE_TO_PAGES (hdr_size);
if (hdr_size > MAX_UINT64)
return -1;
else
*DeviceTreeSize = hdr_size & MAX_UINT64;
// dt_entry_ptr = (struct dt_entry *)((CHAR8 *)table +
// DEV_TREE_HEADER_SIZE);
// table_ptr = dt_entry_ptr;
DEBUG ((EFI_D_ERROR, "DT Total number of entries: %d, DTB version: %d\n",
table->num_entries, table->version));
}
return 0;
}
STATIC int
platform_dt_absolute_match (struct dt_entry *cur_dt_entry,
struct dt_entry_node *dt_list)
{
UINT32 cur_dt_hlos_ddr;
UINT32 cur_dt_hw_platform;
UINT32 cur_dt_hw_subtype;
UINT32 cur_dt_msm_id;
dt_node *dt_node_tmp = NULL;
/* Platform-id
* bit no |31 24|23 16|15 0|
* |reserved|foundry-id|msm-id|
*/
cur_dt_msm_id = (cur_dt_entry->platform_id & 0x0000ffff);
cur_dt_hw_platform = (cur_dt_entry->variant_id & 0x000000ff);
cur_dt_hw_subtype = (cur_dt_entry->board_hw_subtype & 0xff);
/* Bits 10:8 contain ddr information */
cur_dt_hlos_ddr = (cur_dt_entry->board_hw_subtype & 0x700);
/* 1. must match the msm_id, platform_hw_id, platform_subtype and DDR size
* soc, board major/minor, pmic major/minor must less than board info
* 2. find the matched DTB then return 1
* 3. otherwise return 0
*/
if ((cur_dt_msm_id == (BoardPlatformRawChipId () & 0x0000ffff)) &&
(cur_dt_hw_platform == BoardPlatformType ()) &&
(cur_dt_hw_subtype == BoardPlatformSubType ()) &&
(cur_dt_hlos_ddr == (BoardPlatformHlosSubType() & 0x700)) &&
(cur_dt_entry->soc_rev <= BoardPlatformChipVersion ()) &&
((cur_dt_entry->variant_id & 0x00ffff00) <=
(BoardTargetId () & 0x00ffff00)) &&
(cur_dt_entry->pmic_rev[0] <= BoardPmicTarget (0)) &&
(cur_dt_entry->pmic_rev[1] <= BoardPmicTarget (1)) &&
(cur_dt_entry->pmic_rev[2] <= BoardPmicTarget (2)) &&
(cur_dt_entry->pmic_rev[3] <= BoardPmicTarget (3))) {
dt_node_tmp = dt_entry_list_init ();
if (!dt_node_tmp) {
DEBUG ((EFI_D_ERROR, "dt_node_tmp is NULL\n"));
return 0;
}
gBS->CopyMem ((VOID *)dt_node_tmp->dt_entry_m, (VOID *)cur_dt_entry,
sizeof (struct dt_entry));
DEBUG (
(EFI_D_VERBOSE,
"Add DTB entry 0x%x/%08x/0x%08x/0x%x/0x%x/0x%x/0x%x/0x%x/0x%x/0x%x\n",
dt_node_tmp->dt_entry_m->platform_id,
dt_node_tmp->dt_entry_m->variant_id,
dt_node_tmp->dt_entry_m->board_hw_subtype,
dt_node_tmp->dt_entry_m->soc_rev, dt_node_tmp->dt_entry_m->pmic_rev[0],
dt_node_tmp->dt_entry_m->pmic_rev[1],
dt_node_tmp->dt_entry_m->pmic_rev[2],
dt_node_tmp->dt_entry_m->pmic_rev[3], dt_node_tmp->dt_entry_m->offset,
dt_node_tmp->dt_entry_m->size));
insert_dt_entry_in_queue (dt_list, dt_node_tmp);
return 1;
}
return 0;
}
int
platform_dt_absolute_compat_match (struct dt_entry_node *dt_list,
UINT32 dtb_info)
{
struct dt_entry_node *dt_node_tmp1 = NULL;
struct dt_entry_node *dt_node_tmp2 = NULL;
UINT32 current_info = 0;
UINT32 board_info = 0;
UINT32 best_info = 0;
UINT32 current_pmic_model[4] = {0, 0, 0, 0};
UINT32 board_pmic_model[4] = {0, 0, 0, 0};
UINT32 best_pmic_model[4] = {0, 0, 0, 0};
UINT32 delete_current_dt = 0;
UINT32 i;
/* start to select the exact entry
* default to exact match 0, if find current DTB entry info is the same as
* board info,
* then exact match board info.
*/
list_for_every_entry (&dt_list->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_ERROR, "Current node is the end\n"));
break;
}
switch (dtb_info) {
case DTB_FOUNDRY:
current_info = ((dt_node_tmp1->dt_entry_m->platform_id) & 0x00ff0000);
board_info = BoardPlatformFoundryId () << 16;
break;
case DTB_PMIC_MODEL:
for (i = 0; i < 4; i++) {
current_pmic_model[i] = (dt_node_tmp1->dt_entry_m->pmic_rev[i] & 0xff);
board_pmic_model[i] = BoardPmicModel (i);
}
break;
default:
DEBUG ((EFI_D_ERROR,
"ERROR: Unsupported version (%d) in dt node check \n", dtb_info));
return 0;
}
if (dtb_info == DTB_PMIC_MODEL) {
if ((current_pmic_model[0] == board_pmic_model[0]) &&
(current_pmic_model[1] == board_pmic_model[1]) &&
(current_pmic_model[2] == board_pmic_model[2]) &&
(current_pmic_model[3] == board_pmic_model[3])) {
for (i = 0; i < 4; i++) {
best_pmic_model[i] = current_pmic_model[i];
}
break;
}
} else {
if (current_info == board_info) {
best_info = current_info;
break;
}
}
}
list_for_every_entry (&dt_list->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_ERROR, "Current node is the end\n"));
break;
}
switch (dtb_info) {
case DTB_FOUNDRY:
current_info = ((dt_node_tmp1->dt_entry_m->platform_id) & 0x00ff0000);
break;
case DTB_PMIC_MODEL:
for (i = 0; i < 4; i++) {
current_pmic_model[i] = (dt_node_tmp1->dt_entry_m->pmic_rev[i] & 0xff);
}
break;
default:
DEBUG ((EFI_D_ERROR,
"ERROR: Unsupported version (%d) in dt node check \n", dtb_info));
return 0;
}
if (dtb_info == DTB_PMIC_MODEL) {
if ((current_pmic_model[0] != best_pmic_model[0]) ||
(current_pmic_model[1] != best_pmic_model[1]) ||
(current_pmic_model[2] != best_pmic_model[2]) ||
(current_pmic_model[3] != best_pmic_model[3])) {
delete_current_dt = 1;
}
} else {
if (current_info != best_info) {
delete_current_dt = 1;
}
}
if (delete_current_dt) {
DEBUG (
(EFI_D_VERBOSE,
"Delete don't fit DTB entry %u/%08x/0x%08x/%x/%x/%x/%x/%x/%x/%x\n",
dt_node_tmp1->dt_entry_m->platform_id,
dt_node_tmp1->dt_entry_m->variant_id,
dt_node_tmp1->dt_entry_m->board_hw_subtype,
dt_node_tmp1->dt_entry_m->soc_rev,
dt_node_tmp1->dt_entry_m->pmic_rev[0],
dt_node_tmp1->dt_entry_m->pmic_rev[1],
dt_node_tmp1->dt_entry_m->pmic_rev[2],
dt_node_tmp1->dt_entry_m->pmic_rev[3],
dt_node_tmp1->dt_entry_m->offset, dt_node_tmp1->dt_entry_m->size));
dt_node_tmp2 = (struct dt_entry_node *)dt_node_tmp1->node.prev;
dt_entry_list_delete (dt_node_tmp1);
dt_node_tmp1 = dt_node_tmp2;
delete_current_dt = 0;
}
}
return 1;
}
int
update_dtb_entry_node (struct dt_entry_node *dt_list, UINT32 dtb_info)
{
struct dt_entry_node *dt_node_tmp1 = NULL;
struct dt_entry_node *dt_node_tmp2 = NULL;
UINT32 current_info = 0;
UINT32 board_info = 0;
UINT32 best_info = 0;
/* start to select the best entry*/
list_for_every_entry (&dt_list->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_ERROR, "Current node is the end\n"));
break;
}
switch (dtb_info) {
case DTB_SOC:
current_info = dt_node_tmp1->dt_entry_m->soc_rev;
board_info = BoardPlatformChipVersion ();
break;
case DTB_MAJOR_MINOR:
current_info = ((dt_node_tmp1->dt_entry_m->variant_id) & 0x00ffff00);
board_info = BoardTargetId () & 0x00ffff00;
break;
case DTB_PMIC0:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[0];
board_info = BoardPmicTarget (0);
break;
case DTB_PMIC1:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[1];
board_info = BoardPmicTarget (1);
break;
case DTB_PMIC2:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[2];
board_info = BoardPmicTarget (2);
break;
case DTB_PMIC3:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[3];
board_info = BoardPmicTarget (3);
break;
default:
DEBUG ((EFI_D_ERROR,
"ERROR: Unsupported version (%d) in dt node check \n", dtb_info));
return 0;
}
if (current_info == board_info) {
best_info = current_info;
break;
}
if ((current_info < board_info) && (current_info > best_info)) {
best_info = current_info;
}
if (current_info < best_info) {
DEBUG (
(EFI_D_ERROR,
"Delete don't fit DTB entry %u/%08x/0x%08x/%x/%x/%x/%x/%x/%x/%x\n",
dt_node_tmp1->dt_entry_m->platform_id,
dt_node_tmp1->dt_entry_m->variant_id,
dt_node_tmp1->dt_entry_m->board_hw_subtype,
dt_node_tmp1->dt_entry_m->soc_rev,
dt_node_tmp1->dt_entry_m->pmic_rev[0],
dt_node_tmp1->dt_entry_m->pmic_rev[1],
dt_node_tmp1->dt_entry_m->pmic_rev[2],
dt_node_tmp1->dt_entry_m->pmic_rev[3],
dt_node_tmp1->dt_entry_m->offset, dt_node_tmp1->dt_entry_m->size));
dt_node_tmp2 = (struct dt_entry_node *)dt_node_tmp1->node.prev;
dt_entry_list_delete (dt_node_tmp1);
dt_node_tmp1 = dt_node_tmp2;
}
}
list_for_every_entry (&dt_list->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_ERROR, "Current node is the end\n"));
break;
}
switch (dtb_info) {
case DTB_SOC:
current_info = dt_node_tmp1->dt_entry_m->soc_rev;
break;
case DTB_MAJOR_MINOR:
current_info = ((dt_node_tmp1->dt_entry_m->variant_id) & 0x00ffff00);
break;
case DTB_PMIC0:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[0];
break;
case DTB_PMIC1:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[1];
break;
case DTB_PMIC2:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[2];
break;
case DTB_PMIC3:
current_info = dt_node_tmp1->dt_entry_m->pmic_rev[3];
break;
default:
DEBUG ((EFI_D_ERROR,
"ERROR: Unsupported version (%d) in dt node check \n", dtb_info));
return 0;
}
if (current_info != best_info) {
DEBUG (
(EFI_D_VERBOSE,
"Delete don't fit DTB entry %u/%08x/0x%08x/%x/%x/%x/%x/%x/%x/%x\n",
dt_node_tmp1->dt_entry_m->platform_id,
dt_node_tmp1->dt_entry_m->variant_id,
dt_node_tmp1->dt_entry_m->board_hw_subtype,
dt_node_tmp1->dt_entry_m->soc_rev,
dt_node_tmp1->dt_entry_m->pmic_rev[0],
dt_node_tmp1->dt_entry_m->pmic_rev[1],
dt_node_tmp1->dt_entry_m->pmic_rev[2],
dt_node_tmp1->dt_entry_m->pmic_rev[3],
dt_node_tmp1->dt_entry_m->offset, dt_node_tmp1->dt_entry_m->size));
dt_node_tmp2 = (struct dt_entry_node *)dt_node_tmp1->node.prev;
dt_entry_list_delete (dt_node_tmp1);
dt_node_tmp1 = dt_node_tmp2;
}
}
return 1;
}
STATIC struct dt_entry *
platform_dt_match_best (struct dt_entry_node *dt_list)
{
struct dt_entry_node *dt_node_tmp1 = NULL;
/* check Foundry id
* the foundry id must exact match board founddry id, this is compatibility
* check, if couldn't find the exact match from DTB, will exact match 0x0.
*/
platform_dt_absolute_compat_match (dt_list, DTB_FOUNDRY);
/* check PMIC model
* the PMIC model must exact match board PMIC model, this is compatibility
* check, if couldn't find the exact match from DTB, will exact match 0x0.
*/
platform_dt_absolute_compat_match (dt_list, DTB_PMIC_MODEL);
/* check soc version
* the suitable soc version must less than or equal to board soc version
*/
update_dtb_entry_node (dt_list, DTB_SOC);
/*check major and minor version
* the suitable major&minor version must less than or equal to board
* major&minor version
*/
update_dtb_entry_node (dt_list, DTB_MAJOR_MINOR);
/*check pmic info
* the suitable pmic major&minor info must less than or equal to board pmic
* major&minor version
*/
update_dtb_entry_node (dt_list, DTB_PMIC0);
update_dtb_entry_node (dt_list, DTB_PMIC1);
update_dtb_entry_node (dt_list, DTB_PMIC2);
update_dtb_entry_node (dt_list, DTB_PMIC3);
list_for_every_entry (&dt_list->node, dt_node_tmp1, dt_node, node)
{
if (!dt_node_tmp1) {
DEBUG ((EFI_D_ERROR, "ERROR: Couldn't find the suitable DTB!\n"));
return NULL;
}
if (dt_node_tmp1->dt_entry_m)
return dt_node_tmp1->dt_entry_m;
}
return NULL;
}
BOOLEAN
AppendToDtList (struct fdt_entry_node **DtList,
UINT64 Address,
UINT64 Size) {
struct fdt_entry_node *Current = *DtList;
if (*DtList == NULL) {
DEBUG ((EFI_D_VERBOSE, "DTs list: NULL\n"));
Current = AllocateZeroPool (sizeof (struct fdt_entry_node));
if (!Current) {
return FALSE;
}
Current->address = Address;
Current->size = Size;
Current->next = NULL;
*DtList = Current;
return TRUE;
} else {
while (Current->next != NULL) {
Current = Current->next;
}
Current->next = AllocateZeroPool (sizeof (struct fdt_entry_node));
if (!Current->next) {
return FALSE;
}
Current->next->address = Address;
Current->next->size = Size;
Current->next->next = NULL;
return TRUE;
}
}
VOID DeleteDtList (struct fdt_entry_node** DtList)
{
struct fdt_entry_node *Current = *DtList;
struct fdt_entry_node *Next;
while (Current != NULL) {
Next = Current->next;
FreePool (Current);
Current = Next;
}
*DtList = NULL;
}