/*
 * disp_panel.h
 *
 * Copyright (C) 2012-2019, Samsung Electronics Co., Ltd.
 *
 * LCD panel description, header file
 */

#ifndef __DISP_PANEL__
#define __DISP_PANEL__


struct disp_lcd {
    unsigned int vfp;
    unsigned int vbp;
    unsigned int hfp;
    unsigned int hbp;

    unsigned int vsa;
    unsigned int hsa;

    unsigned int xres;
    unsigned int yres;

    unsigned int width;
    unsigned int height;

    unsigned int fps;
    unsigned int mic_enabled;
    unsigned int orientation;
};


struct disp_lcd *disp_get_lcd_info(void);


#endif /* __DISP_PANEL__ */
