mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

Meson is the internal code name for the SoC family. The correct name for the platform should be Amlogic. Change the name of the platform directory. Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Icc140e1ea137f12117acbf64c7dcb1a8b66b345d
27 lines
661 B
C
27 lines
661 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "gxl_private.h"
|
|
|
|
static int32_t modules_initialized = -1;
|
|
|
|
/*******************************************************************************
|
|
* Unknown commands related to something thermal-related
|
|
******************************************************************************/
|
|
void gxbb_thermal_unknown(void)
|
|
{
|
|
uint16_t ret;
|
|
|
|
if (modules_initialized == -1) {
|
|
scpi_efuse_read(&ret, 0, 2);
|
|
modules_initialized = ret;
|
|
}
|
|
|
|
scpi_unknown_thermal(10, 2, /* thermal */
|
|
13, 1); /* thermalver */
|
|
}
|