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()
161 int (*probe)(struct intel_th_device *thdev);
162 void (*remove)(struct intel_th_device *thdev);
164 int (*assign)(struct intel_th_device *thdev,
166 void (*unassign)(struct intel_th_device *thdev,
168 void (*prepare)(struct intel_th_device *thdev,
170 void (*enable)(struct intel_th_device *thdev,
172 void (*trig_switch)(struct intel_th_device *thdev,
174 void (*disable)(struct intel_th_device *thdev,
177 irqreturn_t (*irq)(struct intel_th_device *thdev);
178 void (*wait_empty)(struct intel_th_device *thdev);
179 int (*activate)(struct intel_th_device *thdev);
180 void (*deactivate)(struct intel_th_device *thdev);
187 int (*set_output)(struct intel_th_device *thdev,
208 to_intel_th_parent(struct intel_th_device *thdev) in to_intel_th_parent() argument
210 struct device *parent = thdev->dev.parent; in to_intel_th_parent()
218 static inline struct intel_th *to_intel_th(struct intel_th_device *thdev) in to_intel_th() argument
220 if (thdev->type == INTEL_TH_OUTPUT) in to_intel_th()
221 thdev = to_intel_th_parent(thdev); in to_intel_th()
223 if (WARN_ON_ONCE(!thdev || thdev->type == INTEL_TH_OUTPUT)) in to_intel_th()
226 return dev_get_drvdata(thdev->dev.parent); in to_intel_th()
237 int intel_th_trace_enable(struct intel_th_device *thdev);
238 int intel_th_trace_switch(struct intel_th_device *thdev);
239 int intel_th_trace_disable(struct intel_th_device *thdev);
240 int intel_th_set_output(struct intel_th_device *thdev,
276 struct intel_th_device *thdev[TH_SUBDEVICE_MAX]; member
299 to_intel_th_hub(struct intel_th_device *thdev) in to_intel_th_hub() argument
301 if (thdev->type == INTEL_TH_SWITCH) in to_intel_th_hub()
302 return thdev; in to_intel_th_hub()
303 else if (thdev->type == INTEL_TH_OUTPUT) in to_intel_th_hub()
304 return to_intel_th_parent(thdev); in to_intel_th_hub()
306 return to_intel_th(thdev)->hub; in to_intel_th_hub()