hisi_mcu.h 364 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef HISI_MCU_H
  7. #define HISI_MCU_H
  8. #include <stdint.h>
  9. extern void hisi_mcu_enable_sram(void);
  10. extern void hisi_mcu_start_run(void);
  11. extern int hisi_mcu_load_image(uintptr_t image_base, uint32_t image_size);
  12. #endif /* HISI_MCU_H */