I've been unhappy with the OF graph API for some time and decided to do something about it. The problem is drivers have to do too much of the graph parsing and walking themselves. This has led to the same pattern duplicated over and over. This series adds 2 new helpers and adapts DRM drivers to use them. It only adds one new graph helper, but reduces the use of the others which I hope to remove at some point. But we're not there yet. I plan to apply patch #1 to the DT tree for v4.11. The rest I will respin for 4.12 after -rc1 to avoid any cross tree dependencies. The build coverage should be a bit better than v1. Testing appreciated. A git branch is here[1]. Rob [1] git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git of-graph-helpers Rob Herring (6): of: introduce of_graph_get_remote_node drm: make of_drm_find_panel also depend on CONFIG_DRM_PANEL drm: of: introduce drm_of_find_panel_or_bridge drm: convert drivers to use of_graph_get_remote_node drm: convert drivers to use drm_of_find_panel_or_bridge drm: omap: use common OF graph helpers drivers/gpu/drm/arm/hdlcd_drv.c | 22 +---- drivers/gpu/drm/arm/malidp_drv.c | 28 +------ drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c | 64 +++----------- drivers/gpu/drm/bridge/adv7511/adv7533.c | 12 +-- drivers/gpu/drm/bridge/dumb-vga-dac.c | 15 +--- drivers/gpu/drm/bridge/nxp-ptn3460.c | 16 +--- drivers/gpu/drm/bridge/parade-ps8622.c | 16 +--- drivers/gpu/drm/bridge/tc358767.c | 27 +----- drivers/gpu/drm/bridge/ti-tfp410.c | 15 ++-- drivers/gpu/drm/drm_of.c | 52 ++++++++++++ drivers/gpu/drm/exynos/exynos_dp.c | 35 +++----- drivers/gpu/drm/exynos/exynos_drm_dpi.c | 16 +--- drivers/gpu/drm/exynos/exynos_drm_dsi.c | 13 +-- drivers/gpu/drm/exynos/exynos_drm_mic.c | 27 +----- drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_rgb.c | 49 ++++------- drivers/gpu/drm/hisilicon/kirin/dw_drm_dsi.c | 27 +----- drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 30 +------ drivers/gpu/drm/imx/imx-ldb.c | 27 ++---- drivers/gpu/drm/imx/parallel-display.c | 36 +------- drivers/gpu/drm/mediatek/mtk_dpi.c | 12 +-- drivers/gpu/drm/mediatek/mtk_dsi.c | 23 ++--- drivers/gpu/drm/mediatek/mtk_hdmi.c | 26 +----- drivers/gpu/drm/meson/meson_venc_cvbs.c | 19 +---- drivers/gpu/drm/msm/dsi/dsi_host.c | 3 +- drivers/gpu/drm/msm/mdp/mdp4/mdp4_kms.c | 28 +------ drivers/gpu/drm/mxsfb/mxsfb_out.c | 36 ++------ drivers/gpu/drm/omapdrm/dss/dpi.c | 2 +- drivers/gpu/drm/omapdrm/dss/dsi.c | 3 +- drivers/gpu/drm/omapdrm/dss/dss-of.c | 102 +---------------------- drivers/gpu/drm/omapdrm/dss/dss.c | 61 +++----------- drivers/gpu/drm/omapdrm/dss/hdmi4.c | 3 +- drivers/gpu/drm/omapdrm/dss/hdmi5.c | 3 +- drivers/gpu/drm/omapdrm/dss/omapdss.h | 11 --- drivers/gpu/drm/omapdrm/dss/sdi.c | 2 +- drivers/gpu/drm/omapdrm/dss/venc.c | 3 +- drivers/gpu/drm/rockchip/analogix_dp-rockchip.c | 26 +----- drivers/gpu/drm/rockchip/rockchip_drm_drv.c | 18 ++-- drivers/gpu/drm/sun4i/sun4i_rgb.c | 13 ++- drivers/gpu/drm/sun4i/sun4i_tcon.c | 90 ++------------------ drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 12 +-- drivers/gpu/drm/tilcdc/tilcdc_external.c | 68 ++------------- drivers/gpu/drm/vc4/vc4_dpi.c | 15 +--- drivers/of/base.c | 37 ++++++++ include/drm/drm_of.h | 13 +++ include/drm/drm_panel.h | 2 +- include/linux/of_graph.h | 8 ++ 46 files changed, 280 insertions(+), 886 deletions(-) -- 2.10.1 _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/dri-devel