ti-prm.h 524 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * TI PRM (Power & Reset Manager) platform data
  4. *
  5. * Copyright (C) 2019 Texas Instruments, Inc.
  6. *
  7. * Tero Kristo <[email protected]>
  8. */
  9. #ifndef _LINUX_PLATFORM_DATA_TI_PRM_H
  10. #define _LINUX_PLATFORM_DATA_TI_PRM_H
  11. struct clockdomain;
  12. struct ti_prm_platform_data {
  13. void (*clkdm_deny_idle)(struct clockdomain *clkdm);
  14. void (*clkdm_allow_idle)(struct clockdomain *clkdm);
  15. struct clockdomain * (*clkdm_lookup)(const char *name);
  16. };
  17. #endif /* _LINUX_PLATFORM_DATA_TI_PRM_H */