aboutsummaryrefslogtreecommitdiff
path: root/include/drm/bridge
AgeCommit message (Collapse)AuthorFilesLines
2015-01-28drm/bridge: make bridge registration independent of drm flowAjay Kumar1-0/+8
Currently, third party bridge drivers(ptn3460) are dependent on the corresponding encoder driver init, since bridge driver needs a drm_device pointer to finish drm initializations. The encoder driver passes the drm_device pointer to the bridge driver. Because of this dependency, third party drivers like ptn3460 doesn't adhere to the driver model. In this patch, we reframe the bridge registration framework so that bridge initialization is split into 2 steps, and bridge registration happens independent of drm flow: --Step 1: gather all the bridge settings independent of drm and add the bridge onto a global list of bridges. --Step 2: when the encoder driver is probed, call drm_bridge_attach for the corresponding bridge so that the bridge receives drm_device pointer and continues with connector and other drm initializations. The old set of bridge helpers are removed, and a set of new helpers are added to accomplish the 2 step initialization. The bridge devices register themselves onto global list of bridges when they get probed by calling "drm_bridge_add". The parent encoder driver waits till the bridge is available in the lookup table(by calling "of_drm_find_bridge") and then continues with its initialization. The encoder driver should also call "drm_bridge_attach" to pass on the drm_device to the bridge object. drm_bridge_attach inturn calls "bridge->funcs->attach" so that bridge can continue with drm related initializations. Signed-off-by: Ajay Kumar <[email protected]> Acked-by: Inki Dae <[email protected]> Tested-by: Rahul Sharma <[email protected]> Tested-by: Javier Martinez Canillas <[email protected]> Tested-by: Gustavo Padovan <[email protected]> Tested-by: Sjoerd Simons <[email protected]> Signed-off-by: Thierry Reding <[email protected]>
2015-01-07drm: bridge/dw_hdmi: add rockchip rk3288 supportAndy Yan1-0/+1
Rockchip RK3288 hdmi is compatible with dw_hdmi Signed-off-by: Andy Yan <[email protected]> Tested-by: Russell King <[email protected]> Acked-by: Russell King <[email protected]> Signed-off-by: Philipp Zabel <[email protected]>
2015-01-07drm: imx: imx-hdmi: move imx-hdmi to bridge/dw_hdmiAndy Yan1-0/+60
the original imx hdmi driver is under drm/imx/, which depends on imx-drm, so move the imx hdmi driver out to drm/bridge and rename it to dw_hdmi Signed-off-by: Andy Yan <[email protected]> Tested-by: Russell King <[email protected]> Acked-by: Russell King <[email protected]> Signed-off-by: Philipp Zabel <[email protected]>
2014-03-24drm/bridge/ptn3460: fix modular buildDave Airlie1-1/+1
This failed to build =m, quick fix. Signed-off-by: Dave Airlie <[email protected]>
2014-03-24drm/bridge: Add PTN3460 bridge driverSean Paul1-0/+37
This patch adds a drm_bridge driver for the PTN3460 DisplayPort to LVDS bridge chip. Signed-off-by: Sean Paul <[email protected]> Signed-off-by: Inki Dae <[email protected]>