Home
last modified time | relevance | path

Searched refs:thdev (Results 1 – 6 of 6) sorted by relevance

/linux-5.19.10/drivers/hwtracing/intel_th/
Dcore.c32 struct intel_th_device *thdev = to_intel_th_device(dev); in intel_th_match() local
34 if (thdev->type == INTEL_TH_SWITCH && in intel_th_match()
38 return !strcmp(thdev->name, driver->name); in intel_th_match()
51 struct intel_th_device *thdev = to_intel_th_device(dev); in intel_th_probe() local
56 if (thdev->type == INTEL_TH_SWITCH) in intel_th_probe()
57 hub = thdev; in intel_th_probe()
75 ret = sysfs_create_group(&thdev->dev.kobj, thdrv->attr_group); in intel_th_probe()
80 if (thdev->type == INTEL_TH_OUTPUT && in intel_th_probe()
81 !intel_th_output_assigned(thdev)) in intel_th_probe()
83 ret = hubdrv->assign(hub, thdev); in intel_th_probe()
[all …]
Dintel_th.h102 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);
[all …]
Dpti.c24 struct intel_th_device *thdev; member
149 static int intel_th_pti_activate(struct intel_th_device *thdev) in intel_th_pti_activate() argument
151 struct pti_device *pti = dev_get_drvdata(&thdev->dev); in intel_th_pti_activate()
164 intel_th_trace_enable(thdev); in intel_th_pti_activate()
169 static void intel_th_pti_deactivate(struct intel_th_device *thdev) in intel_th_pti_deactivate() argument
171 struct pti_device *pti = dev_get_drvdata(&thdev->dev); in intel_th_pti_deactivate()
173 intel_th_trace_disable(thdev); in intel_th_pti_deactivate()
191 if (pti->thdev->output.type == GTH_LPP) { in read_hw_config()
201 static int intel_th_pti_probe(struct intel_th_device *thdev) in intel_th_pti_probe() argument
203 struct device *dev = &thdev->dev; in intel_th_pti_probe()
[all …]
Dgth.c535 static void intel_th_gth_disable(struct intel_th_device *thdev, in intel_th_gth_disable() argument
538 struct gth_device *gth = dev_get_drvdata(&thdev->dev); in intel_th_gth_disable()
567 static void intel_th_gth_prepare(struct intel_th_device *thdev, in intel_th_gth_prepare() argument
570 struct gth_device *gth = dev_get_drvdata(&thdev->dev); in intel_th_gth_prepare()
590 static void intel_th_gth_enable(struct intel_th_device *thdev, in intel_th_gth_enable() argument
593 struct gth_device *gth = dev_get_drvdata(&thdev->dev); in intel_th_gth_enable()
594 struct intel_th *th = to_intel_th(thdev); in intel_th_gth_enable()
625 static void intel_th_gth_switch(struct intel_th_device *thdev, in intel_th_gth_switch() argument
628 struct gth_device *gth = dev_get_drvdata(&thdev->dev); in intel_th_gth_switch()
642 dev_dbg(&thdev->dev, "timeout waiting for CTS Trigger\n"); in intel_th_gth_switch()
[all …]
Dsth.c186 static int intel_th_sth_probe(struct intel_th_device *thdev) in intel_th_sth_probe() argument
188 struct device *dev = &thdev->dev; in intel_th_sth_probe()
194 res = intel_th_device_get_resource(thdev, IORESOURCE_MEM, 0); in intel_th_sth_probe()
202 res = intel_th_device_get_resource(thdev, IORESOURCE_MEM, 1); in intel_th_sth_probe()
239 static void intel_th_sth_remove(struct intel_th_device *thdev) in intel_th_sth_remove() argument
241 struct sth_device *sth = dev_get_drvdata(&thdev->dev); in intel_th_sth_remove()
Dmsu.c31 #define msc_dev(x) (&(x)->thdev->dev)
132 struct intel_th_device *thdev; member
800 msc->thdev->output.multiblock = msc->mode == MSC_MODE_MULTI; in msc_configure()
801 intel_th_trace_enable(msc->thdev); in msc_configure()
830 intel_th_trace_disable(msc->thdev); in msc_disable()
866 static int intel_th_msc_activate(struct intel_th_device *thdev) in intel_th_msc_activate() argument
868 struct msc *msc = dev_get_drvdata(&thdev->dev); in intel_th_msc_activate()
888 static void intel_th_msc_deactivate(struct intel_th_device *thdev) in intel_th_msc_deactivate() argument
890 struct msc *msc = dev_get_drvdata(&thdev->dev); in intel_th_msc_deactivate()
1460 struct intel_th_device *thdev = file->private_data; in intel_th_msc_open() local
[all …]