Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * TI PRM (Power & Reset Manager) platform data
0004  *
0005  * Copyright (C) 2019 Texas Instruments, Inc.
0006  *
0007  * Tero Kristo <t-kristo@ti.com>
0008  */
0009 
0010 #ifndef _LINUX_PLATFORM_DATA_TI_PRM_H
0011 #define _LINUX_PLATFORM_DATA_TI_PRM_H
0012 
0013 struct clockdomain;
0014 
0015 struct ti_prm_platform_data {
0016     void (*clkdm_deny_idle)(struct clockdomain *clkdm);
0017     void (*clkdm_allow_idle)(struct clockdomain *clkdm);
0018     struct clockdomain * (*clkdm_lookup)(const char *name);
0019 };
0020 
0021 #endif /* _LINUX_PLATFORM_DATA_TI_PRM_H */