Files
zephyr/soc/ite/ec/it8xxx2/ilm.h
Fabio Baltieri 4a6e286a3b soc: convert ite_ec to hwmv2
Convert the ite_ec soc to the hardware model v2.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2024-03-01 15:49:58 +01:00

16 lines
304 B
C

/*
* Copyright 2022 The ChromiumOS Authors.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdbool.h>
/* Places code in the section that gets mapped into ILM */
#define __soc_ram_code __attribute__((section(".__ram_code")))
#ifndef _ASMLANGUAGE
bool it8xxx2_is_ilm_configured(void);
#endif