Lines Matching refs:coresight_device
141 struct coresight_device *child_dev;
162 struct coresight_device { struct
177 #define to_coresight_device(d) container_of(d, struct coresight_device, dev) argument
190 int (*enable)(struct coresight_device *csdev);
191 void (*disable)(struct coresight_device *csdev);
201 int (*enable)(struct coresight_device *csdev, int iport, int oport);
202 void (*disable)(struct coresight_device *csdev, int iport, int oport);
214 int (*trace_id)(struct coresight_device *csdev);
215 int (*enable)(struct coresight_device *csdev);
216 void (*disable)(struct coresight_device *csdev);
226 extern struct coresight_device *
228 extern void coresight_unregister(struct coresight_device *csdev);
229 extern int coresight_enable(struct coresight_device *csdev);
230 extern void coresight_disable(struct coresight_device *csdev);
234 static inline struct coresight_device *
236 static inline void coresight_unregister(struct coresight_device *csdev) {} in coresight_unregister()
238 coresight_enable(struct coresight_device *csdev) { return -ENOSYS; } in coresight_enable()
239 static inline void coresight_disable(struct coresight_device *csdev) {} in coresight_disable()