1 /*
2  * Copyright 2022 The ChromiumOS Authors.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <stdbool.h>
8 
9 /* Places code in the section that gets mapped into ILM */
10 #define __soc_ram_code __attribute__((section(".__ram_code")))
11 
12 
13 #ifndef _ASMLANGUAGE
14 bool it8xxx2_is_ilm_configured(void);
15 #endif
16