hal_pd.h 763 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* SPDX-License-Identifier: BSD-3-Clause */
  2. /*
  3. * Copyright (c) 2020-2021 Rockchip Electronics Co., Ltd.
  4. */
  5. #include "hal_conf.h"
  6. #ifdef HAL_PMU_MODULE_ENABLED
  7. /** @addtogroup RK_HAL_Driver
  8. * @{
  9. */
  10. /** @addtogroup PD
  11. * @{
  12. */
  13. #ifndef _HAL_PD_H_
  14. #define _HAL_PD_H_
  15. #include "hal_def.h"
  16. /***************************** MACRO Definition ******************************/
  17. /***************************** Structure Definition **************************/
  18. /***************************** Function Declare ******************************/
  19. /** @defgroup PD_Public_Function_Declare Public Function Declare
  20. * @{
  21. */
  22. HAL_Status HAL_PD_On(ePD_Id pd);
  23. HAL_Status HAL_PD_Off(ePD_Id pd);
  24. /** @} */
  25. #endif
  26. /** @} */
  27. /** @} */
  28. #endif /* HAL_PMU_MODULE_ENABLED */