Lines Matching refs:thdev
102 intel_th_device_get_resource(struct intel_th_device *thdev, unsigned int type, in intel_th_device_get_resource() argument
107 for (i = 0; i < thdev->num_resources; i++) in intel_th_device_get_resource()
108 if (resource_type(&thdev->resource[i]) == type && !num--) in intel_th_device_get_resource()
109 return &thdev->resource[i]; in intel_th_device_get_resource()
132 intel_th_output_assigned(struct intel_th_device *thdev) in intel_th_output_assigned() argument
134 return thdev->type == INTEL_TH_OUTPUT && in intel_th_output_assigned()
135 (thdev->output.port >= 0 || in intel_th_output_assigned()
136 thdev->output.type == GTH_NONE); in intel_th_output_assigned()
160 int (*probe)(struct intel_th_device *thdev);
161 void (*remove)(struct intel_th_device *thdev);
163 int (*assign)(struct intel_th_device *thdev,
165 void (*unassign)(struct intel_th_device *thdev,
167 void (*enable)(struct intel_th_device *thdev,
169 void (*trig_switch)(struct intel_th_device *thdev,
171 void (*disable)(struct intel_th_device *thdev,
174 irqreturn_t (*irq)(struct intel_th_device *thdev);
175 void (*wait_empty)(struct intel_th_device *thdev);
176 int (*activate)(struct intel_th_device *thdev);
177 void (*deactivate)(struct intel_th_device *thdev);
184 int (*set_output)(struct intel_th_device *thdev,
205 to_intel_th_parent(struct intel_th_device *thdev) in to_intel_th_parent() argument
207 struct device *parent = thdev->dev.parent; in to_intel_th_parent()
215 static inline struct intel_th *to_intel_th(struct intel_th_device *thdev) in to_intel_th() argument
217 if (thdev->type == INTEL_TH_OUTPUT) in to_intel_th()
218 thdev = to_intel_th_parent(thdev); in to_intel_th()
220 if (WARN_ON_ONCE(!thdev || thdev->type == INTEL_TH_OUTPUT)) in to_intel_th()
223 return dev_get_drvdata(thdev->dev.parent); in to_intel_th()
234 int intel_th_trace_enable(struct intel_th_device *thdev);
235 int intel_th_trace_switch(struct intel_th_device *thdev);
236 int intel_th_trace_disable(struct intel_th_device *thdev);
237 int intel_th_set_output(struct intel_th_device *thdev,
273 struct intel_th_device *thdev[TH_SUBDEVICE_MAX]; member
296 to_intel_th_hub(struct intel_th_device *thdev) in to_intel_th_hub() argument
298 if (thdev->type == INTEL_TH_SWITCH) in to_intel_th_hub()
299 return thdev; in to_intel_th_hub()
300 else if (thdev->type == INTEL_TH_OUTPUT) in to_intel_th_hub()
301 return to_intel_th_parent(thdev); in to_intel_th_hub()
303 return to_intel_th(thdev)->hub; in to_intel_th_hub()