Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755112AbdC3DZZ (ORCPT ); Wed, 29 Mar 2017 23:25:25 -0400 Received: from mail.kernel.org ([198.145.29.136]:51700 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754554AbdC3DZW (ORCPT ); Wed, 29 Mar 2017 23:25:22 -0400 From: "Luis R. Rodriguez" To: gregkh@linuxfoundation.org Cc: wagi@monom.org, dwmw2@infradead.org, rafal@milecki.pl, arend.vanspriel@broadcom.com, rjw@rjwysocki.net, yi1.li@linux.intel.com, atull@opensource.altera.com, moritz.fischer@ettus.com, pmladek@suse.com, johannes.berg@intel.com, emmanuel.grumbach@intel.com, luciano.coelho@intel.com, kvalo@codeaurora.org, luto@kernel.org, takahiro.akashi@linaro.org, dhowells@redhat.com, pjones@redhat.com, linux-kernel@vger.kernel.org, "Luis R. Rodriguez" Subject: [PATCH v6 0/5] firmware: add driver data API Date: Wed, 29 Mar 2017 20:25:09 -0700 Message-Id: <20170330032514.17173-1-mcgrof@kernel.org> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2103 Lines: 44 Greg, Based on popular demand this v6 folds the new API ontop of the old API and keeps the old schedule_work() async mechanism. It also added more functionality to demo the real value to the flexible API. This goes tested on 0-day, and using the existing and new tests provided. These patches are based on next-20170329. This series depends on the series which moves the UMH locks onto the fallback code which I also just sent. If you want this in tree form you can get it all here: https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/log/?h=20170329-driver-data-v2-try3 Luis R. Rodriguez (5): firmware: add extensible driver data params firmware: add extensible driver data API test: add new driver_data load tester iwlwifi: convert to use driver data API brcmfmac: don't warn user if requested nvram fails Documentation/driver-api/firmware/driver_data.rst | 109 ++ Documentation/driver-api/firmware/index.rst | 1 + Documentation/driver-api/firmware/introduction.rst | 16 + MAINTAINERS | 4 +- drivers/base/firmware_class.c | 574 ++++++++- .../broadcom/brcm80211/brcmfmac/firmware.c | 11 +- drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 67 +- include/linux/driver_data.h | 288 +++++ include/linux/firmware.h | 2 + lib/Kconfig.debug | 12 + lib/Makefile | 1 + lib/test_driver_data.c | 1272 ++++++++++++++++++++ tools/testing/selftests/firmware/Makefile | 2 +- tools/testing/selftests/firmware/config | 1 + tools/testing/selftests/firmware/driver_data.sh | 996 +++++++++++++++ 15 files changed, 3250 insertions(+), 106 deletions(-) create mode 100644 Documentation/driver-api/firmware/driver_data.rst create mode 100644 include/linux/driver_data.h create mode 100644 lib/test_driver_data.c create mode 100755 tools/testing/selftests/firmware/driver_data.sh -- 2.11.0