From patchwork Wed Nov 25 17:20:36 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Garry X-Patchwork-Id: 332383 Delivered-To: patch@linaro.org Received: by 2002:a92:5e16:0:0:0:0:0 with SMTP id s22csp622957ilb; Wed, 25 Nov 2020 09:25:11 -0800 (PST) X-Google-Smtp-Source: ABdhPJzZYI2kqI5Ecj+QUOfvjFBy2qsFLrnJyah1jC/vNApcYdjwgjob8NCEr9+u6upiEhejn9Bw X-Received: by 2002:a50:bb66:: with SMTP id y93mr4638965ede.244.1606325111182; Wed, 25 Nov 2020 09:25:11 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1606325111; cv=none; d=google.com; s=arc-20160816; b=p+CMy6qR4SFSPqhoSTqgLXYbu9dUpC5L9Z2EisCZzRC50ICE1CM7ugCg3ZSka8ngKJ kbrE/oYsEVzgN2qD4bQq2GhqV0dBrqS4+z/yQoTYZedkxKAq7hhAoX2xtQtZ7zKxp7a/ Zy1y3Kr6O0xgTkZtO5gaGCX5QnoE9rZMLZBk9uHuQGY8zLMi8VRw5vIS6A7ldUKbth30 2YIGOI7kmzjXPYWSm9hALgKlOMiz/POQIvf+kavliaJKxrSCv3H1o4yl9jUMRpVBVntA qATT2OgZI2EXI8hhHA2+NaRbrAZ8CKr/uDvidt/Acysm6RHp9xsGHVS4OggXeK0PihyW H9UQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:subject:cc:to:from; bh=o0br0ZKC+nUE37foDwJrA8s2xebczUqyni1PhvCl350=; b=r/kJa8pxm1XSxAKjOx1Py1L/AzzYxSizV3/nNfNsgvfa76nat3yJBm/YgBaFfUCfhj 7jBjb2nh/Kb3YEgrCuaIlwgxT1mxqC3WKRgyCxrc9j2TyPxcIJ2gs6j/LDh3TzbE8vz1 GBe+2BR3YlDsf0rcE0Eo2Mnh1GKrKhecEhNwU5dZgabsjfWs5D5moZyT1S2ir5xJBThr 3UFCDWMZGaGWnm/3N76alOULMW0kkmB2FedmQVnZWsRGBrDFE7imDO2q4AqI+x/4VBX/ ilEPzhBW4XfWfDoOzkfms0Wc2slfa3SSR3AfHFugIBbDuCocf7ZuTK6xCH5+/kPHEJDk ngfw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-scsi-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-scsi-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k22si2164875edj.571.2020.11.25.09.25.11 for ; Wed, 25 Nov 2020 09:25:11 -0800 (PST) Received-SPF: pass (google.com: domain of linux-scsi-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-scsi-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-scsi-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732635AbgKYRYv (ORCPT ); Wed, 25 Nov 2020 12:24:51 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:8038 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730293AbgKYRYv (ORCPT ); Wed, 25 Nov 2020 12:24:51 -0500 Received: from DGGEMS404-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4Ch76f5PP0zhcqL; Thu, 26 Nov 2020 01:24:26 +0800 (CST) Received: from localhost.localdomain (10.69.192.58) by DGGEMS404-HUB.china.huawei.com (10.3.19.204) with Microsoft SMTP Server id 14.3.487.0; Thu, 26 Nov 2020 01:24:37 +0800 From: John Garry To: , , , , , CC: , , , , , "John Garry" Subject: [PATCH v3 0/5] Support managed interrupts for platform devices Date: Thu, 26 Nov 2020 01:20:36 +0800 Message-ID: <1606324841-217570-1-git-send-email-john.garry@huawei.com> X-Mailer: git-send-email 2.8.1 MIME-Version: 1.0 X-Originating-IP: [10.69.192.58] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org So far, managed interrupts are only used for PCI MSIs. This series adds platform device support for managed interrupts. Initially this topic was discussed at [0]. The method to enable managed interrupts is to allocate a group of IRQs for the device, and then switch the interrupts to managed - this is done through new function irq_update_affinity_desc(). Function devm_platform_get_irqs_affinity() is added as a helper to manage this work, such that we don't need to export irq_update_affinity_desc() or irq_create_affinity_masks(). In the devm_platform_get_irqs_affinity() release call a new platform method is used to "put" an irq. The reason for this is that per-irq mapping (and irq_desc) needs to be recreated anew for re-probing the LLDD, such that we don't attempt to reconfigure the managed or any other flag for an irq_desc. For now, the HiSilicon SAS v2 hw driver is switched over. This is used in the D05 dev board. Performance gain observed for 6x SAS SSDs is ~357K -> 420K IOPs for fio read. [0] https://lore.kernel.org/lkml/84a9411b-4ae3-1928-3d35-1666f2687ec8@huawei.com/ Changes since v2: - Update genirq change as follows: - Handle when the irq is started, active, or already managed - Reject update when CONFIG_GENERIC_IRQ_RESERVATION_MODE is set - Revamp platform.c API as follows: - Make it devm type - Add platform_put_irq() and associated change in ACPI code to allow irq resource to be reset - Unmap irqs for driver removal - Change API to accept min and max vectors John Garry (5): genirq/affinity: Add irq_update_affinity_desc() ACPI: Make acpi_dev_irqresource_disabled() public driver core: platform: Add platform_put_irq() Driver core: platform: Add devm_platform_get_irqs_affinity() scsi: hisi_sas: Expose HW queues for v2 hw drivers/acpi/resource.c | 2 +- drivers/base/platform.c | 126 +++++++++++++++++++++++++ drivers/scsi/hisi_sas/hisi_sas.h | 4 + drivers/scsi/hisi_sas/hisi_sas_main.c | 11 +++ drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 68 ++++++++++--- include/linux/acpi.h | 5 + include/linux/interrupt.h | 8 ++ include/linux/platform_device.h | 6 ++ kernel/irq/manage.c | 63 +++++++++++++ 9 files changed, 279 insertions(+), 14 deletions(-) -- 2.26.2