pmic.h 319 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2021, MediaTek Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PMIC_H
  7. #define PMIC_H
  8. #include <stdint.h>
  9. #define PMIC_RG_HWCID_ADDR 0x8
  10. #define PMIC_PWRHOLD 0xa08
  11. /* external API */
  12. uint32_t pmic_get_hwcid(void);
  13. void pmic_power_off(void);
  14. #endif /* PMIC_H */