#include <linux/backlight.h>
#include <linux/delay.h>
#include <linux/gpio/consumer.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/regulator/consumer.h>
#include <video/mipi_display.h>
#include <drm/drm_crtc.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_modes.h>
#include <drm/drm_panel.h>
static const char * const regulator_names[] = …;
struct jdi_panel { … };
static inline struct jdi_panel *to_jdi_panel(struct drm_panel *panel)
{ … }
static int jdi_panel_init(struct jdi_panel *jdi)
{ … }
static int jdi_panel_on(struct jdi_panel *jdi)
{ … }
static void jdi_panel_off(struct jdi_panel *jdi)
{ … }
static int jdi_panel_disable(struct drm_panel *panel)
{ … }
static int jdi_panel_unprepare(struct drm_panel *panel)
{ … }
static int jdi_panel_prepare(struct drm_panel *panel)
{ … }
static int jdi_panel_enable(struct drm_panel *panel)
{ … }
static const struct drm_display_mode default_mode = …;
static int jdi_panel_get_modes(struct drm_panel *panel,
struct drm_connector *connector)
{ … }
static int dsi_dcs_bl_get_brightness(struct backlight_device *bl)
{ … }
static int dsi_dcs_bl_update_status(struct backlight_device *bl)
{ … }
static const struct backlight_ops dsi_bl_ops = …;
static struct backlight_device *
drm_panel_create_dsi_backlight(struct mipi_dsi_device *dsi)
{ … }
static const struct drm_panel_funcs jdi_panel_funcs = …;
static const struct of_device_id jdi_of_match[] = …;
MODULE_DEVICE_TABLE(of, jdi_of_match);
static int jdi_panel_add(struct jdi_panel *jdi)
{ … }
static void jdi_panel_del(struct jdi_panel *jdi)
{ … }
static int jdi_panel_probe(struct mipi_dsi_device *dsi)
{ … }
static void jdi_panel_remove(struct mipi_dsi_device *dsi)
{ … }
static struct mipi_dsi_driver jdi_panel_driver = …;
module_mipi_dsi_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;