From patchwork Wed Apr 15 16:46:37 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dinh Nguyen X-Patchwork-Id: 11491711 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id CD4F86CA for ; Wed, 15 Apr 2020 16:46:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B51092076A for ; Wed, 15 Apr 2020 16:46:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586969213; bh=Z9iFeNHWUQbmLEpVJTncXd+btqYkvHNdjtz4MDYl1G8=; h=From:To:Cc:Subject:Date:List-ID:From; b=m6tiIr9EQ+vuSIOsyw3Ww7yV2dVn0VBPO9fY54uGO1psHZ7Uxl+lzG8qoBjX5VA1C +MzlLuatWI7c60qL/A47O3snRfXyVI7HOfoRblCINt9qLoXC+5jdUHWQyOVfqr8cId jX7QFm3oL7VbOPKdSYn2YVgCAZrkcPGoK9sJyifo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1416225AbgDOQqw (ORCPT ); Wed, 15 Apr 2020 12:46:52 -0400 Received: from mail.kernel.org ([198.145.29.99]:47114 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1416219AbgDOQqv (ORCPT ); Wed, 15 Apr 2020 12:46:51 -0400 Received: from localhost.localdomain (cpe-70-114-128-244.austin.res.rr.com [70.114.128.244]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id ABF7120737; Wed, 15 Apr 2020 16:46:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586969211; bh=Z9iFeNHWUQbmLEpVJTncXd+btqYkvHNdjtz4MDYl1G8=; h=From:To:Cc:Subject:Date:From; b=i+0ZdBoHK1IJCFwj75kbaqZa4XXaYuyvMzPAYM+2SXIGbUewO+DPSwxulXzCyDUE6 Eaui+xtenUgO/iEfnjkfyT4I52w7co7sEc0jzrPN/R07uBKNLRErSCxfifWai0fOKd tICazg3ghLEgmlKzklPGQlupchcxEVPqf6uCAB6I= From: Dinh Nguyen To: linux-clk@vger.kernel.org Cc: dinguyen@kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, sboyd@kernel.org, mturquette@baylibre.com, robh+dt@kernel.org, mark.rutland@arm.com Subject: [PATCHv7 0/5] clk: agilex: add clock driver Date: Wed, 15 Apr 2020 11:46:37 -0500 Message-Id: <20200415164642.29382-1-dinguyen@kernel.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Hi, This is version 7 of the patchset to add a clock driver to the Agilex platform. The change from v6 is to correct the dt-bindings document to include the license header to be "(GPL-2.0-only OR BSD-2-Clause)". Thanks, Dinh Nguyen (5): clk: socfpga: stratix10: use new parent data scheme clk: socfpga: remove clk_ops enable/disable methods clk: socfpga: add const to _ops data structures dt-bindings: documentation: add clock bindings information for Agilex clk: socfpga: agilex: add clock driver for the Agilex platform .../bindings/clock/intel,agilex.yaml | 46 ++ drivers/clk/Makefile | 3 +- drivers/clk/socfpga/Makefile | 2 + drivers/clk/socfpga/clk-agilex.c | 454 ++++++++++++++++++ drivers/clk/socfpga/clk-gate-s10.c | 5 +- drivers/clk/socfpga/clk-periph-s10.c | 10 +- drivers/clk/socfpga/clk-pll-a10.c | 4 +- drivers/clk/socfpga/clk-pll-s10.c | 78 ++- drivers/clk/socfpga/clk-pll.c | 4 +- drivers/clk/socfpga/clk-s10.c | 160 ++++-- drivers/clk/socfpga/stratix10-clk.h | 10 +- include/dt-bindings/clock/agilex-clock.h | 70 +++ 12 files changed, 794 insertions(+), 52 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/intel,agilex.yaml create mode 100644 drivers/clk/socfpga/clk-agilex.c create mode 100644 include/dt-bindings/clock/agilex-clock.h