hisi_pwrc.h 500 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef HISI_PWRC_H
  7. #define HISI_PWRC_H
  8. #ifndef __ASSEMBLER__
  9. void hisi_pwrc_set_cluster_wfi(unsigned int id);
  10. void hisi_pwrc_set_core_bx_addr(unsigned int core,
  11. unsigned int cluster,
  12. uintptr_t entry_point);
  13. void hisi_pwrc_enable_debug(unsigned int core,
  14. unsigned int cluster);
  15. int hisi_pwrc_setup(void);
  16. #endif /*__ASSEMBLER__*/
  17. #endif /* HISI_PWRC_H */