#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_device.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_panel.h>
struct sharp_panel { … };
static inline struct sharp_panel *to_sharp_panel(struct drm_panel *panel)
{ … }
static void sharp_wait_frames(struct sharp_panel *sharp, unsigned int frames)
{ … }
static int sharp_panel_write(struct sharp_panel *sharp, u16 offset, u8 value)
{ … }
static __maybe_unused int sharp_panel_read(struct sharp_panel *sharp,
u16 offset, u8 *value)
{ … }
static int sharp_panel_unprepare(struct drm_panel *panel)
{ … }
static int sharp_setup_symmetrical_split(struct mipi_dsi_device *left,
struct mipi_dsi_device *right,
const struct drm_display_mode *mode)
{ … }
static int sharp_panel_prepare(struct drm_panel *panel)
{ … }
static const struct drm_display_mode default_mode = …;
static int sharp_panel_get_modes(struct drm_panel *panel,
struct drm_connector *connector)
{ … }
static const struct drm_panel_funcs sharp_panel_funcs = …;
static const struct of_device_id sharp_of_match[] = …;
MODULE_DEVICE_TABLE(of, sharp_of_match);
static int sharp_panel_add(struct sharp_panel *sharp)
{ … }
static void sharp_panel_del(struct sharp_panel *sharp)
{ … }
static int sharp_panel_probe(struct mipi_dsi_device *dsi)
{ … }
static void sharp_panel_remove(struct mipi_dsi_device *dsi)
{ … }
static struct mipi_dsi_driver sharp_panel_driver = …;
module_mipi_dsi_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;