From mboxrd@z Thu Jan 1 00:00:00 1970 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 18778C433F5 for ; Fri, 22 Apr 2022 07:26:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1444796AbiDVH3I (ORCPT ); Fri, 22 Apr 2022 03:29:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44904 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1444772AbiDVH25 (ORCPT ); Fri, 22 Apr 2022 03:28:57 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6C8D950454 for ; Fri, 22 Apr 2022 00:26:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1650612366; x=1682148366; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=oONwt6PougIPFBTUqwAmCSS1mJpqCyd7Jt1lRNAHxAI=; b=uFIA0B4ChqaRvr8QeS8KPH7xokxRdL/Z+GZHcpYdxGFxrdER0M5Yp0b9 Jogx83LxUaKKVPwfgRDRnVUpU+DH3C43KP6FDx1aDQBJ7ndtZp3pdEgGv tz/aaFKoi0zHVmabs+oE1dcZkaXk54Px8g8SMRJ9/GB2uJu+dwWxrdq+F 6WUsZ1yPB08CMagCiiwjsUqV0qXBuhZwEjTty7WxUVSkCjflyJMKuqYK6 rD3tA40rbAJsLMjkErhdklXd5MRbGWA1wCdxxQtqjPawrihLPc4QUbLk6 +/IRYMoKy2KDhdtc7qn06u+jqN/VsesEsNzqNjo3jFTIqGOxBIMbl2Sfj Q==; X-IronPort-AV: E=Sophos;i="5.90,281,1643698800"; d="scan'208";a="153462824" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa4.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 22 Apr 2022 00:26:06 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Fri, 22 Apr 2022 00:26:04 -0700 Received: from wendy.microchip.com (10.10.115.15) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Fri, 22 Apr 2022 00:26:03 -0700 From: Conor Dooley To: Palmer Dabbelt CC: Paul Walmsley , Albert Ou , , , , , , Conor Dooley Subject: [PATCH v3 3/4] riscv: select vitesse phy driver for polarfire soc Date: Fri, 22 Apr 2022 08:25:32 +0100 Message-ID: <20220422072533.2582084-4-conor.dooley@microchip.com> X-Mailer: git-send-email 2.35.2 In-Reply-To: <20220422072533.2582084-1-conor.dooley@microchip.com> References: <20220422072533.2582084-1-conor.dooley@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There is a Vitesse VSC8662 on the Icicle Kit, until a better option exists, select it in Kconfig.socs for SOC_MICROCHIP_POLARFIRE. Signed-off-by: Conor Dooley --- Palmer: You said to put in a comment, but I have no idea how Kconfig expects a mid line comment to look. kbuild didn't seem to complain about what I did, but lmk if that's not what you meant. --- arch/riscv/Kconfig.socs | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/riscv/Kconfig.socs b/arch/riscv/Kconfig.socs index 7f93c729d51c..50f2c686d303 100644 --- a/arch/riscv/Kconfig.socs +++ b/arch/riscv/Kconfig.socs @@ -8,6 +8,7 @@ config SOC_MICROCHIP_POLARFIRE select HW_RANDOM_POLARFIRE_SOC if POLARFIRE_SOC_SYS_CTRL select PCIE_MICROCHIP_HOST if PCI_MSI && OF select SIFIVE_PLIC + select VITESSE_PHY if PHYLIB # present on icicle kit help This enables support for Microchip PolarFire SoC platforms. -- 2.35.2