From patchwork Fri Apr 29 00:57:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhang, Tianfei" X-Patchwork-Id: 12831381 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 9187FC433F5 for ; Fri, 29 Apr 2022 01:02:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229802AbiD2BEO (ORCPT ); Thu, 28 Apr 2022 21:04:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52254 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244954AbiD2BEN (ORCPT ); Thu, 28 Apr 2022 21:04:13 -0400 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2AA228A7CA; Thu, 28 Apr 2022 18:00:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651194057; x=1682730057; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=KKNCxTu+99qwXWlFXVm9YNtdsjLfxYjBNRBEyc2G6G4=; b=mAQQbcp2k0zL78W8gC19S7tyUJW6prlN0ZnE4+NGTKPWXVwcB7zIL8Oc HTuYHJKcLNzfsFsZ2J9OglEqEEJhNoWxIVgveCekEcmn4mL0DS4QArGqN sczpap62sfdKkNy12P0q7v2CuWlYD2/mt247OboTzxhi49adm3V8OY8W2 CPW0aiwGutNFiX9SiQ75RNkts+dL7FxFRGLnOp65DAfkcXTmsrXIihDjo 21/sM0oOLQoFlThvL4QzpbXmHvvNiBtAI+4tl9eLbynkw6DGjapAlWprb QySvn21bb7NgydW3gcqseYJmR3ZwfFMCFH5iEcVtzo4sKny8WQlZ+MtOk Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10331"; a="247038702" X-IronPort-AV: E=Sophos;i="5.91,296,1647327600"; d="scan'208";a="247038702" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2022 18:00:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,296,1647327600"; d="scan'208";a="629827632" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.238.175.107]) by fmsmga004.fm.intel.com with ESMTP; 28 Apr 2022 18:00:54 -0700 From: Tianfei Zhang To: hao.wu@intel.com, trix@redhat.com, mdf@kernel.org, yilun.xu@intel.com, linux-fpga@vger.kernel.org, gregkh@linuxfoundation.org Cc: linux-kernel@vger.kernel.org, Matthew Gerlach , Tianfei Zhang Subject: [PATCH v3] uio: dfl: add HSSI subsystem feature id Date: Thu, 28 Apr 2022 20:57:26 -0400 Message-Id: <20220429005726.607804-1-tianfei.zhang@intel.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-fpga@vger.kernel.org From: Matthew Gerlach Add the Device Feature List (DFL) feature id for the High Speed Serial Interface (HSSI) Subsystem to the table of ids supported by the uio_dfl driver. The HSSI Subsystem is a configurable set of IP blocks to be used as part of a Ethernet or PCS/FEC/PMA pipeline. Like the Ethernet group used by the N3000 card, the HSSI Subsystem does not fully implement a network device from a Linux netdev perspective and is controlled and monitored from user space software via the uio interface. Signed-off-by: Matthew Gerlach Signed-off-by: Tianfei Zhang Reviewed-by: Tom Rix Acked-by: Xu Yilun --- v3: change the name of this feature id to HSSI_SUBSYS and rewrite the git message. v2: add HSSI introduction and the git repo of Feature ID table. --- drivers/uio/uio_dfl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/uio/uio_dfl.c b/drivers/uio/uio_dfl.c index 89c0fc7b0cbc..8f39cc8bb034 100644 --- a/drivers/uio/uio_dfl.c +++ b/drivers/uio/uio_dfl.c @@ -45,9 +45,11 @@ static int uio_dfl_probe(struct dfl_device *ddev) } #define FME_FEATURE_ID_ETH_GROUP 0x10 +#define FME_FEATURE_ID_HSSI_SUBSYS 0x15 static const struct dfl_device_id uio_dfl_ids[] = { { FME_ID, FME_FEATURE_ID_ETH_GROUP }, + { FME_ID, FME_FEATURE_ID_HSSI_SUBSYS }, { } }; MODULE_DEVICE_TABLE(dfl, uio_dfl_ids);