2018-04-23 05:33:20 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-09-07 12:40:25 +08:00
|
|
|
/*
|
|
|
|
* vsp1_dl.h -- R-Car VSP1 Display List
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Renesas Corporation
|
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*/
|
|
|
|
#ifndef __VSP1_DL_H__
|
|
|
|
#define __VSP1_DL_H__
|
|
|
|
|
2015-11-01 20:46:25 +08:00
|
|
|
#include <linux/types.h>
|
2015-09-07 12:40:25 +08:00
|
|
|
|
|
|
|
struct vsp1_device;
|
2018-05-19 04:41:56 +08:00
|
|
|
struct vsp1_dl_body;
|
2015-11-09 06:06:57 +08:00
|
|
|
struct vsp1_dl_list;
|
2015-11-15 08:27:52 +08:00
|
|
|
struct vsp1_dl_manager;
|
2015-09-07 12:40:25 +08:00
|
|
|
|
2018-04-05 05:30:49 +08:00
|
|
|
#define VSP1_DL_FRAME_END_COMPLETED BIT(0)
|
2018-02-23 03:26:21 +08:00
|
|
|
#define VSP1_DL_FRAME_END_INTERNAL BIT(1)
|
2018-04-05 05:30:49 +08:00
|
|
|
|
2015-11-09 06:06:57 +08:00
|
|
|
void vsp1_dlm_setup(struct vsp1_device *vsp1);
|
2015-09-07 12:40:25 +08:00
|
|
|
|
2015-11-15 08:27:52 +08:00
|
|
|
struct vsp1_dl_manager *vsp1_dlm_create(struct vsp1_device *vsp1,
|
2015-11-15 08:48:27 +08:00
|
|
|
unsigned int index,
|
2015-11-15 08:27:52 +08:00
|
|
|
unsigned int prealloc);
|
|
|
|
void vsp1_dlm_destroy(struct vsp1_dl_manager *dlm);
|
2015-11-09 06:06:57 +08:00
|
|
|
void vsp1_dlm_reset(struct vsp1_dl_manager *dlm);
|
2018-04-05 05:30:49 +08:00
|
|
|
unsigned int vsp1_dlm_irq_frame_end(struct vsp1_dl_manager *dlm);
|
2015-09-07 12:40:25 +08:00
|
|
|
|
2015-11-09 06:06:57 +08:00
|
|
|
struct vsp1_dl_list *vsp1_dl_list_get(struct vsp1_dl_manager *dlm);
|
|
|
|
void vsp1_dl_list_put(struct vsp1_dl_list *dl);
|
|
|
|
void vsp1_dl_list_write(struct vsp1_dl_list *dl, u32 reg, u32 data);
|
2018-02-23 03:26:21 +08:00
|
|
|
void vsp1_dl_list_commit(struct vsp1_dl_list *dl, bool internal);
|
2015-09-07 12:40:25 +08:00
|
|
|
|
2018-05-19 04:41:56 +08:00
|
|
|
struct vsp1_dl_body *vsp1_dl_body_alloc(struct vsp1_device *vsp1,
|
|
|
|
unsigned int num_entries);
|
|
|
|
void vsp1_dl_body_free(struct vsp1_dl_body *dlb);
|
|
|
|
void vsp1_dl_body_write(struct vsp1_dl_body *dlb, u32 reg, u32 data);
|
|
|
|
int vsp1_dl_list_add_body(struct vsp1_dl_list *dl, struct vsp1_dl_body *dlb);
|
2016-07-13 00:49:46 +08:00
|
|
|
int vsp1_dl_list_add_chain(struct vsp1_dl_list *head, struct vsp1_dl_list *dl);
|
2016-03-04 00:36:34 +08:00
|
|
|
|
2015-09-07 12:40:25 +08:00
|
|
|
#endif /* __VSP1_DL_H__ */
|