Lines Matching refs:desc
125 struct coresight_desc desc = { 0 }; in tpiu_probe() local
127 desc.name = coresight_alloc_device_name(&tpiu_devs, dev); in tpiu_probe()
128 if (!desc.name) in tpiu_probe()
149 desc.access = CSDEV_ACCESS_IOMEM(base); in tpiu_probe()
152 tpiu_disable_hw(&desc.access); in tpiu_probe()
159 desc.type = CORESIGHT_DEV_TYPE_SINK; in tpiu_probe()
160 desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_PORT; in tpiu_probe()
161 desc.ops = &tpiu_cs_ops; in tpiu_probe()
162 desc.pdata = pdata; in tpiu_probe()
163 desc.dev = dev; in tpiu_probe()
164 drvdata->csdev = coresight_register(&desc); in tpiu_probe()