Home
last modified time | relevance | path

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

/linux/drivers/hwtracing/intel_th/
H A 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 …]
H A 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 …]
H A 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 …]
H A Dmsu.c31 #define msc_dev(x) (&(x)->thdev->dev)
132 struct intel_th_device *thdev; member
802 msc->thdev->output.multiblock = msc->mode == MSC_MODE_MULTI; in msc_configure()
803 intel_th_trace_enable(msc->thdev); in msc_configure()
832 intel_th_trace_disable(msc->thdev); in msc_disable()
868 static int intel_th_msc_activate(struct intel_th_device *thdev) in intel_th_msc_activate() argument
870 struct msc *msc = dev_get_drvdata(&thdev->dev); in intel_th_msc_activate()
890 static void intel_th_msc_deactivate(struct intel_th_device *thdev) in intel_th_msc_deactivate() argument
892 struct msc *msc = dev_get_drvdata(&thdev->dev); in intel_th_msc_deactivate()
1468 struct intel_th_device *thdev = file->private_data; in intel_th_msc_open() local
[all …]