From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4764943F76 for ; Fri, 3 May 2024 16:03:50 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3D594402DE; Fri, 3 May 2024 16:03:50 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 52A6E402D6 for ; Fri, 3 May 2024 16:03:49 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 4D3AA122141; Fri, 3 May 2024 16:03:49 +0200 (CEST) Subject: |WARNING| pw139853 [PATCH v2 25/27] net/ixgbe/base: add support for NVM handling in E610 device In-Reply-To: <90f5cb719f2e67442506a7a9a8aa62d599970128.1714744629.git.anatoly.burakov@intel.com> References: <90f5cb719f2e67442506a7a9a8aa62d599970128.1714744629.git.anatoly.burakov@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Anatoly Burakov Message-Id: <20240503140349.4D3AA122141@dpdk.org> Date: Fri, 3 May 2024 16:03:49 +0200 (CEST) X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/139853 _coding style issues_ WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #105: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1712: + enum ixgbe_aci_res_access_type access) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #138: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1745: + * ixgbe_aci_read_nvm - read NVM WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #147: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1754: + * Read the NVM using ACI command (0x0701). WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #151: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1758: +s32 ixgbe_aci_read_nvm(struct ixgbe_hw *hw, u16 module_typeid, u32 offset, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #155: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1762: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #156: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1763: + struct ixgbe_aci_cmd_nvm *cmd; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #160: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1767: + if (offset > IXGBE_ACI_NVM_MAX_OFFSET) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #163: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1770: + ixgbe_fill_dflt_direct_cmd_desc(&desc, ixgbe_aci_opc_nvm_read); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #165: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1772: + if (!read_shadow_ram && module_typeid == IXGBE_ACI_NVM_START_POINT) WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #166: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1773: + cmd->cmd_flags |= IXGBE_ACI_NVM_FLASH_ONLY; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #170: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1777: + cmd->cmd_flags |= IXGBE_ACI_NVM_LAST_CMD; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #176: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1783: + return ixgbe_aci_send_cmd(hw, &desc, data, length); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #183: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1790: + * Verify NVM PFA checksum validity using ACI command (0x0706). WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #191: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1798: + struct ixgbe_aci_cmd_nvm_checksum *cmd; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #192: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1799: + struct ixgbe_aci_desc desc; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #201: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1808: + ixgbe_fill_dflt_direct_cmd_desc(&desc, ixgbe_aci_opc_nvm_checksum); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #202: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1809: + cmd->flags = IXGBE_ACI_NVM_CHECKSUM_VERIFY; WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #204: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1811: + status = ixgbe_aci_send_cmd(hw, &desc, NULL, 0); WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #210: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1817: + IXGBE_ACI_NVM_CHECKSUM_CORRECT) { WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #220: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1827: + * ixgbe_read_sr_word_aci - Reads Shadow RAM via ACI WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #220: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1827: + * ixgbe_read_sr_word_aci - Reads Shadow RAM via ACI WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #229: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1836: +s32 ixgbe_read_sr_word_aci(struct ixgbe_hw *hw, u16 offset, u16 *data) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #281: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1888: + /* ixgbe_aci_read_nvm cannot read more than 4KB at a time. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #285: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1892: + sector_offset = offset % IXGBE_ACI_MAX_BUFFER_SIZE; WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #287: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1894: + IXGBE_ACI_MAX_BUFFER_SIZE - sector_offset, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #292: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1899: + /* ixgbe_aci_read_nvm takes the length as a u16. Our read_size WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #293: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1900: + * is calculated using a u32, but the IXGBE_ACI_MAX_BUFFER_SIZE WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #296: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1903: + status = ixgbe_aci_read_nvm(hw, IXGBE_ACI_NVM_START_POINT, WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #296: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:1903: + status = ixgbe_aci_read_nvm(hw, IXGBE_ACI_NVM_START_POINT, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #320: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:2761: + * ixgbe_read_ee_aci_E610 - Read EEPROM word using the admin command. WARNING:TYPO_SPELLING: 'ACI' may be misspelled - perhaps ''? #325: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:2766: + * Reads a 16 bit word from the EEPROM using the ACI. WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #332: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:2773: +s32 ixgbe_read_ee_aci_E610(struct ixgbe_hw *hw, u16 offset, u16 *data) WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #346: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:2787: + status = ixgbe_read_sr_word_aci(hw, offset, data); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #386: FILE: drivers/net/ixgbe/base/ixgbe_e610.c:2827: + status = ixgbe_read_sr_word_aci(hw, E610_SR_SW_CHECKSUM_WORD, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #405: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:49: + enum ixgbe_aci_res_access_type access); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #408: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:52: +s32 ixgbe_aci_read_nvm(struct ixgbe_hw *hw, u16 module_typeid, u32 offset, WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #413: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:57: +s32 ixgbe_read_sr_word_aci(struct ixgbe_hw *hw, u16 offset, u16 *data); WARNING:TYPO_SPELLING: 'aci' may be misspelled - perhaps ''? #425: FILE: drivers/net/ixgbe/base/ixgbe_e610.h:93: +s32 ixgbe_read_ee_aci_E610(struct ixgbe_hw *hw, u16 offset, u16 *data); total: 0 errors, 38 warnings, 0 checks, 330 lines checked