• Home
  • Raw
  • Download

Lines Matching refs:mdev

155 	struct mxr_device *mdev;  member
278 static inline struct mxr_output *to_output(struct mxr_device *mdev) in to_output() argument
280 return mdev->output[mdev->current_output]; in to_output()
284 static inline struct v4l2_subdev *to_outsd(struct mxr_device *mdev) in to_outsd() argument
286 struct mxr_output *out = to_output(mdev); in to_outsd()
294 int mxr_acquire_video(struct mxr_device *mdev,
298 void mxr_release_video(struct mxr_device *mdev);
300 struct mxr_layer *mxr_graph_layer_create(struct mxr_device *mdev, int idx);
301 struct mxr_layer *mxr_vp_layer_create(struct mxr_device *mdev, int idx);
302 struct mxr_layer *mxr_base_layer_create(struct mxr_device *mdev,
315 int __must_check mxr_power_get(struct mxr_device *mdev);
317 void mxr_power_put(struct mxr_device *mdev);
319 void mxr_output_get(struct mxr_device *mdev);
321 void mxr_output_put(struct mxr_device *mdev);
323 void mxr_streamer_get(struct mxr_device *mdev);
325 void mxr_streamer_put(struct mxr_device *mdev);
327 void mxr_get_mbus_fmt(struct mxr_device *mdev,
332 #define mxr_err(mdev, fmt, ...) dev_err(mdev->dev, fmt, ##__VA_ARGS__) argument
333 #define mxr_warn(mdev, fmt, ...) dev_warn(mdev->dev, fmt, ##__VA_ARGS__) argument
334 #define mxr_info(mdev, fmt, ...) dev_info(mdev->dev, fmt, ##__VA_ARGS__) argument
337 #define mxr_dbg(mdev, fmt, ...) dev_dbg(mdev->dev, fmt, ##__VA_ARGS__) argument
339 #define mxr_dbg(mdev, fmt, ...) do { (void) mdev; } while (0) argument
344 void mxr_vsync_set_update(struct mxr_device *mdev, int en);
345 void mxr_reg_reset(struct mxr_device *mdev);
347 void mxr_reg_s_output(struct mxr_device *mdev, int cookie);
348 void mxr_reg_streamon(struct mxr_device *mdev);
349 void mxr_reg_streamoff(struct mxr_device *mdev);
350 int mxr_reg_wait4vsync(struct mxr_device *mdev);
351 void mxr_reg_set_mbus_fmt(struct mxr_device *mdev,
353 void mxr_reg_graph_layer_stream(struct mxr_device *mdev, int idx, int en);
354 void mxr_reg_graph_buffer(struct mxr_device *mdev, int idx, dma_addr_t addr);
355 void mxr_reg_graph_format(struct mxr_device *mdev, int idx,
358 void mxr_reg_vp_layer_stream(struct mxr_device *mdev, int en);
359 void mxr_reg_vp_buffer(struct mxr_device *mdev,
361 void mxr_reg_vp_format(struct mxr_device *mdev,
363 void mxr_reg_dump(struct mxr_device *mdev);