From patchwork Fri Feb 23 16:38:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philipp Tomsich X-Patchwork-Id: 877187 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3znxmS5Yl3z9sBR for ; Sat, 24 Feb 2018 03:40:40 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 2D93DC21FC5; Fri, 23 Feb 2018 16:39:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 8FFD3C21FDC; Fri, 23 Feb 2018 16:39:25 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 7A041C21FAE; Fri, 23 Feb 2018 16:39:19 +0000 (UTC) Received: from mail.theobroma-systems.com (vegas.theobroma-systems.com [144.76.126.164]) by lists.denx.de (Postfix) with ESMTPS id 12CCFC21D56 for ; Fri, 23 Feb 2018 16:39:15 +0000 (UTC) Received: from [86.59.122.178] (port=36650 helo=android.lan) by mail.theobroma-systems.com with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA256:128) (Exim 4.80) (envelope-from ) id 1epGNJ-0005jb-Qr; Fri, 23 Feb 2018 17:39:09 +0100 From: Philipp Tomsich To: u-boot@lists.denx.de Date: Fri, 23 Feb 2018 17:38:48 +0100 Message-Id: <1519403933-64408-1-git-send-email-philipp.tomsich@theobroma-systems.com> X-Mailer: git-send-email 2.1.4 Cc: Heinrich Schuchardt , Andy Shevchenko , Alexander Graf , Eugeniy Paltsev Subject: [U-Boot] [PATCH 0/5] rockchip: video: migrate RK3399 w/ HDMI to livetree X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This series fixes the regression on the RK3399 (since some boards have moved to live tree) for HDMI output. This fix requires some new functionality in the ofnode family (i.e. finding an ofnode's parent node and finding an ofnode from a phandle), but these are all add-on functionality and thus should not interfere with any other boards or drivers (as it's only us using them so far). To have working HDMI again, the fix for our PMU clk driver (so PLL_PPLL, which is listed in the 'assigned-clocks', is handled correctly during probing). Kever Yang (1): core: add ofnode_get_by_phandle() api Philipp Tomsich (4): core: ofnode: add ofnode_get_parent function rockchip: video: rk_hdmi: migrate to livetree rockchip: video: rk_vop: migrate to livetree rockchip: video: update MAINTAINERS MAINTAINERS | 1 + drivers/core/ofnode.c | 27 +++++++++++++ drivers/video/rockchip/rk_hdmi.c | 2 +- drivers/video/rockchip/rk_vop.c | 85 +++++++++++++++++++++++++++------------- include/dm/ofnode.h | 16 ++++++++ 5 files changed, 102 insertions(+), 29 deletions(-)