hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2022 Rockchip Electronics Co. Ltd.
 *
 * Author: Guochun Huang <hero.huang@rock-chips.com>
 */
 
#ifndef RKX120_DSI_TX_H
#define RKX120_DSI_TX_H
 
#include "rkx110_x120.h"
 
int rkx120_dsi_tx_cmd_seq_xfer(struct rk_serdes *des, u8 remote_id,
                  struct panel_cmds *cmds);
void rkx120_dsi_tx_pre_enable(struct rk_serdes *serdes,
                 struct rk_serdes_route *route, u8 remote_id);
void rkx120_dsi_tx_enable(struct rk_serdes *serdes,
             struct rk_serdes_route *route, u8 remote_id);
void rkx120_dsi_tx_post_disable(struct rk_serdes *serdes,
               struct rk_serdes_route *route, u8 remote_id);
void rkx120_dsi_tx_disable(struct rk_serdes *serdes,
              struct rk_serdes_route *route, u8 remote_id);
#endif