blob: 731c51ae8d3576cd6087056450bac652dfdc304a [file] [log] [blame]
Haojian Zhuang934ae712017-05-24 08:47:49 +08001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef HISI_MCU_H
8#define HISI_MCU_H
Haojian Zhuang934ae712017-05-24 08:47:49 +08009
10#include <stdint.h>
11
12extern void hisi_mcu_enable_sram(void);
13extern void hisi_mcu_start_run(void);
14extern int hisi_mcu_load_image(uintptr_t image_base, uint32_t image_size);
15
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000016#endif /* HISI_MCU_H */