xref: /rk3399_rockchip-uboot/drivers/video/drm/rk628/panel.h (revision 6cef3c7b7cc45a9c882fc64e5496a416c99313b8)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*
3  * Copyright (c) 2024 Rockchip Electronics Co. Ltd.
4  *
5  * Author: Guochun Huang <hero.huang@rock-chips.com>
6  */
7 #ifndef _PANEL_H
8 #define _PANEL_H
9 
10 #include "rk628.h"
11 
12 int rk628_panel_info_get(struct rk628 *rk628, ofnode np);
13 void rk628_panel_prepare(struct rk628 *rk628);
14 void rk628_panel_enable(struct rk628 *rk628);
15 void rk628_panel_unprepare(struct rk628 *rk628);
16 void rk628_panel_disable(struct rk628 *rk628);
17 #endif
18 
19