Received: by 2002:a25:1104:0:0:0:0:0 with SMTP id 4csp994084ybr; Sat, 23 May 2020 03:43:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy2aOJpBdWfZayzJSodGsqgD/vGj7LJi4uo7j3ZBhDOh70HMVounrHzsWjYjLJV8SJaNnBQ X-Received: by 2002:aa7:d98c:: with SMTP id u12mr6592619eds.85.1590230629440; Sat, 23 May 2020 03:43:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1590230629; cv=none; d=google.com; s=arc-20160816; b=GIMGSsJv0tm/nW0ifS2LB9fdNYdSvkrCNICvjQEGROLQ7WTbPnuoyPlp2HzO2fPUIP nGPenc//GBMK3kCUt53kMuIGlsanAc012cimEoW8nRcKudBjGeiq2t69unFbH6uA98XJ 600zgOATUNx3SPg8ZigQTWKXgttXbX9yVkOcnteDnWyRAGjNSQahxoDH4nx3ZKLqPyFc A3tyLcrcl4EzvXJlvw3qyUzFTRroajwjp7i1fasMrkPyNnaUEyfmAdHV4Ls/Hcw10F3F 7Yh8F/sGyGGz7ZH82ego4GyWcIlth9RNKS//xtErOsr32rd/d/CvMwPFlf4qRqr5lVp6 xIIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=0K0hZKmyq/9ntERB2VRqBYB/12zIrzW8IhNxl3B+4LY=; b=JgPqJcp/XI/uPKoVfGryYV2ZXzg8sXdji7Owk60vPg94rqItha80VUBNpErYV5A43C OaJB8X756zeEhk/fdc7bt06pNli3XXL/CWnDZcZNsEXxg0UGjT9Fcw76q2FnbKPJnsEz +ILg5d3czMrJBE5kPfMOUuTFzwPPlvcVmWrjqn1CmA0+JuTHbgkN0c3Kms+HpdxGW088 +IVkUq4hf49srnuR4kLx4Tg/x2BsLlExTx8AQZgVUk+gebhHjDokHOy2/OEDCwVQFyPI cBvX+j90ZSSnoyUcVXdTJ+FmBmVcMv2vTAo2xobdejB/AR8eL8DXWPeVBqNn7eXtgdpo CiYA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u20si5881072edo.434.2020.05.23.03.43.27; Sat, 23 May 2020 03:43:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730372AbgEWKlo (ORCPT + 99 others); Sat, 23 May 2020 06:41:44 -0400 Received: from v6.sk ([167.172.42.174]:40000 "EHLO v6.sk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726130AbgEWKln (ORCPT ); Sat, 23 May 2020 06:41:43 -0400 Received: from localhost (v6.sk [IPv6:::1]) by v6.sk (Postfix) with ESMTP id C9B86610B3; Sat, 23 May 2020 10:41:41 +0000 (UTC) From: Lubomir Rintel To: Lucas Stach Cc: Russell King , Christian Gmeiner , etnaviv@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 0/4] drm/etnaviv: Tidy up clocks handling Date: Sat, 23 May 2020 12:41:33 +0200 Message-Id: <20200523104137.12562-1-lkundrak@v3.sk> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, please consider applying patches that are chained to this message. They make getting/enabling the clocks in the etnaviv driver slightly nicer, first two also fix potential problems. Compared to v1, patch 2/4 was fixed and patch 3/4 was added. As it was pointed out in response to v1, the clocks documented as mandatory by the binding document are different from what the driver enforces. Moreover, there is no agreement on which clocks must be present in the device tree, so I'm leaving the binding document until it's cleared up. In any case, the "core" clock is always present so it's safe to make it mandatory and regardless of what ends up happening to the binding documentation, the other clocks can't be enforced without regressions. At most a comment or a warning could be added. I'm leaving it as it is. Thank you Lubo