From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752398AbcHLXZy (ORCPT ); Fri, 12 Aug 2016 19:25:54 -0400 Received: from mail-qk0-f178.google.com ([209.85.220.178]:35282 "EHLO mail-qk0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751953AbcHLXZw (ORCPT ); Fri, 12 Aug 2016 19:25:52 -0400 From: Markus Mayer To: Rob Herring , Mark Rutland , "Rafael J . Wysocki" , Viresh Kumar Cc: Broadcom Kernel List , Device Tree List , Power Management List , Linux Kernel Mailing List , Markus Mayer Subject: [PATCH 0/3] Broadcom AVS CPUfreq driver Date: Fri, 12 Aug 2016 16:25:28 -0700 Message-Id: <1471044331-2480-1-git-send-email-mmayer@broadcom.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series contains the CPUfreq driver for Broadcom SoCs that use "AVS Firmware" for voltage and frequency scaling. All voltage and frequency transitions are performed by the firmware and are therefore hidden from Linux. The driver provides a standard CPUfreq interface to other kernel components and to userland on the one hand and communicates with the AVS co-processor on the other. Communication between the two processors is via shared mailbox registers and interrupts (ARM -> AVS to tell the firmware that there is a command to process and AVS -> ARM to tell the driver that a command finished executing). Markus Mayer (3): dt: cpufreq: brcm: New binding document for brcm-avs-cpufreq cpufreq: brcm-avs-cpufreq: AVS CPUfreq driver for Broadcom SoCs cpufreq: brcm-avs-cpufreq: add debugfs support .../bindings/cpufreq/brcm-avs-cpufreq.txt | 84 ++ MAINTAINERS | 8 + drivers/cpufreq/Kconfig.arm | 10 + drivers/cpufreq/Makefile | 1 + drivers/cpufreq/brcm-avs-cpufreq.c | 1000 ++++++++++++++++++++ 5 files changed, 1103 insertions(+) create mode 100644 Documentation/devicetree/bindings/cpufreq/brcm-avs-cpufreq.txt create mode 100644 drivers/cpufreq/brcm-avs-cpufreq.c -- 2.7.4