From patchwork Mon Jan 31 16:07:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hector Martin X-Patchwork-Id: 538496 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 659A9C433EF for ; Mon, 31 Jan 2022 16:07:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232937AbiAaQHf (ORCPT ); Mon, 31 Jan 2022 11:07:35 -0500 Received: from marcansoft.com ([212.63.210.85]:34634 "EHLO mail.marcansoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231994AbiAaQHe (ORCPT ); Mon, 31 Jan 2022 11:07:34 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: hector@marcansoft.com) by mail.marcansoft.com (Postfix) with ESMTPSA id 8BF9541982; Mon, 31 Jan 2022 16:07:25 +0000 (UTC) From: Hector Martin To: Kalle Valo , "David S. Miller" , Jakub Kicinski , Rob Herring , "Rafael J. Wysocki" , Len Brown , Arend van Spriel , Franky Lin , Hante Meuleman , Wright Feng , Dmitry Osipenko Cc: Hector Martin , Sven Peter , Alyssa Rosenzweig , Mark Kettenis , =?utf-8?b?UmFmYcWCIE1pxYJlY2tp?= , Pieter-Paul Giesberts , Linus Walleij , Hans de Goede , "John W. Linville" , "brian m. carlson" , Andy Shevchenko , linux-wireless@vger.kernel.org, netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org, brcm80211-dev-list.pdl@broadcom.com, SHA-cyfmac-dev-list@infineon.com Subject: [PATCH v4 0/9] misc brcmfmac fixes (M1/T2 series spin-off) Date: Tue, 1 Feb 2022 01:07:04 +0900 Message-Id: <20220131160713.245637-1-marcan@marcan.st> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org Hi everyone, This series contains just the fixes / misc improvements from the previously submitted series: brcmfmac: Support Apple T2 and M1 platforms Patches 8-9 aren't strictly bugfixes but rather just general improvements; they can be safely skipped, although patch 8 will be a dependency of the subsequent series to avoid a compile warning. Changes since v3: - Sprinkled Cc: stable tags on all the commits that fix real bugs - Added review tags - Removed error message on alloc failure path in #7 Hector Martin (9): brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path brcmfmac: firmware: Allocate space for default boardrev in nvram brcmfmac: firmware: Do not crash on a NULL board_type brcmfmac: pcie: Declare missing firmware files in pcie.c brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio brcmfmac: pcie: Fix crashes due to early IRQs brcmfmac: of: Use devm_kstrdup for board_type & check for errors brcmfmac: fwil: Constify iovar name arguments brcmfmac: pcie: Read the console on init and shutdown .../broadcom/brcm80211/brcmfmac/firmware.c | 5 ++ .../broadcom/brcm80211/brcmfmac/fwil.c | 34 ++++---- .../broadcom/brcm80211/brcmfmac/fwil.h | 28 +++---- .../wireless/broadcom/brcm80211/brcmfmac/of.c | 7 +- .../broadcom/brcm80211/brcmfmac/pcie.c | 77 ++++++++----------- .../broadcom/brcm80211/brcmfmac/sdio.c | 1 - 6 files changed, 71 insertions(+), 81 deletions(-)