cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/omapdrm/dss/display.c

/*
 * linux/drivers/video/omap2/dss/display.c
 *
 * Copyright (C) 2009 Nokia Corporation
 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
 *
 * Some code and ideas taken from drivers/video/omap/ driver
 * by Imre Deak.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */


#define DSS_SUBSYS_NAME "DISPLAY"

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/jiffies.h>
#include <linux/platform_device.h>
#include <linux/of.h>

#include "omapdss.h"
#include "dss.h"
#include "dss_features.h"


void omapdss_default_get_resolution(struct omap_dss_device *dssdev, u16 *xres, u16 *yres) { *xres = dssdev->panel.vm.hactive; *yres = dssdev->panel.vm.vactive; }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen3690.00%240.00%
Peter Ujfalusi410.00%360.00%
Total40100.00%5100.00%

EXPORT_SYMBOL(omapdss_default_get_resolution);
int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev) { switch (dssdev->type) { case OMAP_DISPLAY_TYPE_DPI: if (dssdev->phy.dpi.data_lines == 24) return 24; else return 16; case OMAP_DISPLAY_TYPE_DBI: if (dssdev->ctrl.pixel_size == 24) return 24; else return 16; case OMAP_DISPLAY_TYPE_DSI: if (dsi_get_pixel_size(dssdev->panel.dsi_pix_fmt) > 16) return 24; else return 16; case OMAP_DISPLAY_TYPE_VENC: case OMAP_DISPLAY_TYPE_SDI: case OMAP_DISPLAY_TYPE_HDMI: case OMAP_DISPLAY_TYPE_DVI: return 24; default: BUG(); return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen7975.24%466.67%
Archit Taneja2321.90%116.67%
Mythri P K32.86%116.67%
Total105100.00%6100.00%

EXPORT_SYMBOL(omapdss_default_get_recommended_bpp);
void omapdss_default_get_timings(struct omap_dss_device *dssdev, struct videomode *vm) { *vm = dssdev->panel.vm; }

Contributors

PersonTokensPropCommitsCommitProp
Grazvydas Ignotas2083.33%133.33%
Peter Ujfalusi416.67%266.67%
Total24100.00%3100.00%

EXPORT_SYMBOL(omapdss_default_get_timings); static LIST_HEAD(panel_list); static DEFINE_MUTEX(panel_list_mutex); static int disp_num_counter;
int omapdss_register_display(struct omap_dss_device *dssdev) { struct omap_dss_driver *drv = dssdev->driver; int id; /* * Note: this presumes all the displays are either using DT or non-DT, * which normally should be the case. This also presumes that all * displays either have an DT alias, or none has. */ if (dssdev->dev->of_node) { id = of_alias_get_id(dssdev->dev->of_node, "display"); if (id < 0) id = disp_num_counter++; } else { id = disp_num_counter++; } snprintf(dssdev->alias, sizeof(dssdev->alias), "display%d", id); /* Use 'label' property for name, if it exists */ if (dssdev->dev->of_node) of_property_read_string(dssdev->dev->of_node, "label", &dssdev->name); if (dssdev->name == NULL) dssdev->name = dssdev->alias; if (drv && drv->get_resolution == NULL) drv->get_resolution = omapdss_default_get_resolution; if (drv && drv->get_recommended_bpp == NULL) drv->get_recommended_bpp = omapdss_default_get_recommended_bpp; if (drv && drv->get_timings == NULL) drv->get_timings = omapdss_default_get_timings; mutex_lock(&panel_list_mutex); list_add_tail(&dssdev->panel_list, &panel_list); mutex_unlock(&panel_list_mutex); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen198100.00%3100.00%
Total198100.00%3100.00%

EXPORT_SYMBOL(omapdss_register_display);
void omapdss_unregister_display(struct omap_dss_device *dssdev) { mutex_lock(&panel_list_mutex); list_del(&dssdev->panel_list); mutex_unlock(&panel_list_mutex); }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen30100.00%1100.00%
Total30100.00%1100.00%

EXPORT_SYMBOL(omapdss_unregister_display);
struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev) { if (!try_module_get(dssdev->owner)) return NULL; if (get_device(dssdev->dev) == NULL) { module_put(dssdev->owner); return NULL; } return dssdev; }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen51100.00%2100.00%
Total51100.00%2100.00%

EXPORT_SYMBOL(omap_dss_get_device);
void omap_dss_put_device(struct omap_dss_device *dssdev) { put_device(dssdev->dev); module_put(dssdev->owner); }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen24100.00%2100.00%
Total24100.00%2100.00%

EXPORT_SYMBOL(omap_dss_put_device); /* * ref count of the found device is incremented. * ref count of from-device is decremented. */
struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from) { struct list_head *l; struct omap_dss_device *dssdev; mutex_lock(&panel_list_mutex); if (list_empty(&panel_list)) { dssdev = NULL; goto out; } if (from == NULL) { dssdev = list_first_entry(&panel_list, struct omap_dss_device, panel_list); omap_dss_get_device(dssdev); goto out; } omap_dss_put_device(from); list_for_each(l, &panel_list) { dssdev = list_entry(l, struct omap_dss_device, panel_list); if (dssdev == from) { if (list_is_last(l, &panel_list)) { dssdev = NULL; goto out; } dssdev = list_entry(l->next, struct omap_dss_device, panel_list); omap_dss_get_device(dssdev); goto out; } } WARN(1, "'from' dssdev not found\n"); dssdev = NULL; out: mutex_unlock(&panel_list_mutex); return dssdev; }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen170100.00%2100.00%
Total170100.00%2100.00%

EXPORT_SYMBOL(omap_dss_get_next_device);
struct omap_dss_device *omap_dss_find_device(void *data, int (*match)(struct omap_dss_device *dssdev, void *data)) { struct omap_dss_device *dssdev = NULL; while ((dssdev = omap_dss_get_next_device(dssdev)) != NULL) { if (match(dssdev, data)) return dssdev; } return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen64100.00%1100.00%
Total64100.00%1100.00%

EXPORT_SYMBOL(omap_dss_find_device);

Overall Contributors

PersonTokensPropCommitsCommitProp
Tomi Valkeinen73792.47%1157.89%
Grazvydas Ignotas253.14%15.26%
Archit Taneja232.89%15.26%
Peter Ujfalusi91.13%526.32%
Mythri P K30.38%15.26%
Total797100.00%19100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.