From patchwork Wed Aug 16 08:19:12 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 9903243 X-Patchwork-Delegate: rjw@sisk.pl Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E0B2C60244 for ; Wed, 16 Aug 2017 08:19:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CF79C28537 for ; Wed, 16 Aug 2017 08:19:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C3FF728541; Wed, 16 Aug 2017 08:19:26 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.5 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_HI, RCVD_IN_SORBS_SPAM autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4DF9E28543 for ; Wed, 16 Aug 2017 08:19:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751678AbdHPITZ (ORCPT ); Wed, 16 Aug 2017 04:19:25 -0400 Received: from mail-lf0-f54.google.com ([209.85.215.54]:34750 "EHLO mail-lf0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751494AbdHPITY (ORCPT ); Wed, 16 Aug 2017 04:19:24 -0400 Received: by mail-lf0-f54.google.com with SMTP id g25so13274162lfh.1 for ; Wed, 16 Aug 2017 01:19:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=eem4Fq673E27Q96MbsF5iC7kl4vgqY78a5AY5kyjDno=; b=Bl5JspoyRa8TXX675zLjP2IEVYTuxujrwr7H0vcH9yqxnpjeA/fmywRL/WzhnY+4Pd icxD18/aKAJxBA8epheg10Ys0dekUC0Ezhelk/hOqqHIMBqZT824lHWlke5jZvluto1m +fr4wcLQRPqTP63UDgCC7ON+K4oY5GhxmidgM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=eem4Fq673E27Q96MbsF5iC7kl4vgqY78a5AY5kyjDno=; b=Hbu8VNXOF4Iy8jgK/wxOB3l5KqDRyf9gvrqAhmjVh/1Wu2ccBsaOgvZXfk4snvvX2n Sp2ZlHRrBPnnZ4SZtTP037kb0LhEiboIDtxj882XWVTwXkxKTSeIfqQbpkdtGELeiBUp qR9AWHzB1RjaunAxrNsb4NXpgTivzNRu5UQAb5qWbWgJcoDRM3p6wYpAhPanIYn3Yex3 LkTdcl8kvnLV4a2B+MwDJ6PQUfjIbZ5R/o8f2A7FLGtPXg6ZJoxx2CEB/ANXAN/Msajh cOGBqNztcIYuVyqdJynCV2mlnANV0TEDHyHp/PyeGT7FUVZ32S7nojdyv48YUf5XtmyN S4YQ== X-Gm-Message-State: AHYfb5j+Ri69SZcBaFjBqzSygda9wig05gzi8wMKnPUN3IyiSknQKCc3 Sg0iqpJTQqNvhhZQCvnXcg== X-Received: by 10.25.38.82 with SMTP id m79mr352054lfm.18.1502871562899; Wed, 16 Aug 2017 01:19:22 -0700 (PDT) Received: from genomnajs.ideon.se ([85.235.10.227]) by smtp.gmail.com with ESMTPSA id g41sm70742lji.94.2017.08.16.01.19.21 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 16 Aug 2017 01:19:22 -0700 (PDT) From: Linus Walleij To: "Rafael J . Wysocki" , Viresh Kumar , Lee Jones Cc: linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Arnd Bergmann , Ulf Hansson , Linus Walleij Subject: [PATCH 1/3 v2] cpufreq: enable the DT cpufreq driver on the Ux500 Date: Wed, 16 Aug 2017 10:19:12 +0200 Message-Id: <20170816081914.30471-1-linus.walleij@linaro.org> X-Mailer: git-send-email 2.13.5 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This enables the generic DT and OPP-based cpufreq driver on the ST-Ericsson Ux500 series. Acked-by: Viresh Kumar Signed-off-by: Linus Walleij --- ChangeLog v1-v2: - Added Viresh's ACK. Please apply this to the cpufreq tree. --- drivers/cpufreq/cpufreq-dt-platdev.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 1c262923fe58..d80300251bc4 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -88,6 +88,11 @@ static const struct of_device_id machines[] __initconst = { { .compatible = "socionext,uniphier-ld11", }, { .compatible = "socionext,uniphier-ld20", }, + { .compatible = "st-ericsson,u8500", }, + { .compatible = "st-ericsson,u8540", }, + { .compatible = "st-ericsson,u9500", }, + { .compatible = "st-ericsson,u9540", }, + { .compatible = "ti,omap2", }, { .compatible = "ti,omap3", }, { .compatible = "ti,omap4", },