Lines Matching refs:framer
82 struct framer { struct
97 int framer_pm_runtime_get(struct framer *framer); argument
98 int framer_pm_runtime_get_sync(struct framer *framer);
99 int framer_pm_runtime_put(struct framer *framer);
100 int framer_pm_runtime_put_sync(struct framer *framer);
101 int framer_init(struct framer *framer);
102 int framer_exit(struct framer *framer);
103 int framer_power_on(struct framer *framer);
104 int framer_power_off(struct framer *framer);
105 int framer_get_status(struct framer *framer, struct framer_status *status);
106 int framer_get_config(struct framer *framer, struct framer_config *config);
107 int framer_set_config(struct framer *framer, const struct framer_config *config);
108 int framer_notifier_register(struct framer *framer, struct notifier_block *nb);
109 int framer_notifier_unregister(struct framer *framer, struct notifier_block *nb);
111 struct framer *framer_get(struct device *dev, const char *con_id);
112 void framer_put(struct device *dev, struct framer *framer);
114 struct framer *devm_framer_get(struct device *dev, const char *con_id);
115 struct framer *devm_framer_optional_get(struct device *dev, const char *con_id);
117 static inline int framer_pm_runtime_get(struct framer *framer) in framer_pm_runtime_get() argument
122 static inline int framer_pm_runtime_get_sync(struct framer *framer) in framer_pm_runtime_get_sync() argument
127 static inline int framer_pm_runtime_put(struct framer *framer) in framer_pm_runtime_put() argument
132 static inline int framer_pm_runtime_put_sync(struct framer *framer) in framer_pm_runtime_put_sync() argument
137 static inline int framer_init(struct framer *framer) in framer_init() argument
142 static inline int framer_exit(struct framer *framer) in framer_exit() argument
147 static inline int framer_power_on(struct framer *framer) in framer_power_on() argument
152 static inline int framer_power_off(struct framer *framer) in framer_power_off() argument
157 static inline int framer_get_status(struct framer *framer, struct framer_status *status) in framer_get_status() argument
162 static inline int framer_get_config(struct framer *framer, struct framer_config *config) in framer_get_config() argument
167 static inline int framer_set_config(struct framer *framer, const struct framer_config *config) in framer_set_config() argument
172 static inline int framer_notifier_register(struct framer *framer, in framer_notifier_register() argument
178 static inline int framer_notifier_unregister(struct framer *framer, in framer_notifier_unregister() argument
184 static inline struct framer *framer_get(struct device *dev, const char *con_id) in framer_get()
189 static inline void framer_put(struct device *dev, struct framer *framer) in framer_put() argument
193 static inline struct framer *devm_framer_get(struct device *dev, const char *con_id) in devm_framer_get()
198 static inline struct framer *devm_framer_optional_get(struct device *dev, const char *con_id) in devm_framer_optional_get()