// SPDX-License-Identifier: GPL-2.0-or-later /* * linux/drivers/video/mmp/common.c * This driver is a common framework for Marvell Display Controller * * Copyright (C) 2012 Marvell Technology Group Ltd. * Authors: Zhou Zhu <[email protected]> */ #include <linux/slab.h> #include <linux/dma-mapping.h> #include <linux/export.h> #include <linux/module.h> #include <video/mmp_disp.h> static struct mmp_overlay *path_get_overlay(struct mmp_path *path, int overlay_id) { … } static int path_check_status(struct mmp_path *path) { … } /* * Get modelist write pointer of modelist. * It also returns modelist number * this function fetches modelist from phy/panel: * for HDMI/parallel or dsi to hdmi cases, get from phy * or get from panel */ static int path_get_modelist(struct mmp_path *path, struct mmp_mode **modelist) { … } /* * panel list is used to pair panel/path when path/panel registered * path list is used for both buffer driver and platdriver * plat driver do path register/unregister * panel driver do panel register/unregister * buffer driver get registered path */ static LIST_HEAD(panel_list); static LIST_HEAD(path_list); static DEFINE_MUTEX(disp_lock); /* * mmp_register_panel - register panel to panel_list and connect to path * @p: panel to be registered * * this function provides interface for panel drivers to register panel * to panel_list and connect to path which matchs panel->plat_path_name. * no error returns when no matching path is found as path register after * panel register is permitted. */ void mmp_register_panel(struct mmp_panel *panel) { … } EXPORT_SYMBOL_GPL(…); /* * mmp_unregister_panel - unregister panel from panel_list and disconnect * @p: panel to be unregistered * * this function provides interface for panel drivers to unregister panel * from panel_list and disconnect from path. */ void mmp_unregister_panel(struct mmp_panel *panel) { … } EXPORT_SYMBOL_GPL(…); /* * mmp_get_path - get path by name * @p: path name * * this function checks path name in path_list and return matching path * return NULL if no matching path */ struct mmp_path *mmp_get_path(const char *name) { … } EXPORT_SYMBOL_GPL(…); /* * mmp_register_path - init and register path by path_info * @p: path info provided by display controller * * this function init by path info and register path to path_list * this function also try to connect path with panel by name */ struct mmp_path *mmp_register_path(struct mmp_path_info *info) { … } EXPORT_SYMBOL_GPL(…); /* * mmp_unregister_path - unregister and destroy path * @p: path to be destroyed. * * this function registers path and destroys it. */ void mmp_unregister_path(struct mmp_path *path) { … } EXPORT_SYMBOL_GPL(…); MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …;