linux/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * MIPI-DSI Samsung s6d16d0 panel driver. This is a 864x480
 * AMOLED panel with a command-only DSI interface.
 */

#include <drm/drm_modes.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_panel.h>

#include <linux/gpio/consumer.h>
#include <linux/regulator/consumer.h>
#include <linux/delay.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>

struct s6d16d0 {};

/*
 * The timings are not very helpful as the display is used in
 * command mode.
 */
static const struct drm_display_mode samsung_s6d16d0_mode =;

static inline struct s6d16d0 *panel_to_s6d16d0(struct drm_panel *panel)
{}

static int s6d16d0_unprepare(struct drm_panel *panel)
{}

static int s6d16d0_prepare(struct drm_panel *panel)
{}

static int s6d16d0_enable(struct drm_panel *panel)
{}

static int s6d16d0_disable(struct drm_panel *panel)
{}

static int s6d16d0_get_modes(struct drm_panel *panel,
			     struct drm_connector *connector)
{}

static const struct drm_panel_funcs s6d16d0_drm_funcs =;

static int s6d16d0_probe(struct mipi_dsi_device *dsi)
{}

static void s6d16d0_remove(struct mipi_dsi_device *dsi)
{}

static const struct of_device_id s6d16d0_of_match[] =;
MODULE_DEVICE_TABLE(of, s6d16d0_of_match);

static struct mipi_dsi_driver s6d16d0_driver =;
module_mipi_dsi_driver();

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();