1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* 3 * Copyright (c) 2021 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, struct device_node *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