From patchwork Fri May 12 11:48:23 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jagan Teki X-Patchwork-Id: 761582 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3wPT0K0DYwz9s75 for ; Fri, 12 May 2017 21:54:08 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id AAE7EC21ECA; Fri, 12 May 2017 11:50:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 3B4B6C21DDE; Fri, 12 May 2017 11:49:30 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B1F0DC21E7C; Fri, 12 May 2017 11:49:20 +0000 (UTC) Received: from mail-pg0-f65.google.com (mail-pg0-f65.google.com [74.125.83.65]) by lists.denx.de (Postfix) with ESMTPS id 6FAF1C21EB9 for ; Fri, 12 May 2017 11:49:17 +0000 (UTC) Received: by mail-pg0-f65.google.com with SMTP id u187so7368269pgb.1 for ; Fri, 12 May 2017 04:49:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Vgb2fA/0bxvr05BoPfTcfw6qs/XNfCKum9vdURBxS+8=; b=ioPL90Qd/dImXQPcaon+01tMnBc57svc/N68/OmrD4yTl9MrxHNmzuANNRPEFN5M7V gD1YFL9ynUdjLqYyHITb3Dq97P8si487OEgwXgWQSeYKYdkuoSvbl894QnZ642/C5L00 pj1pK2ILUYQDeHr7I0hX+78yNkFiCkqgBKXfwUo5moBy2xQ+3nl9nD7ZmHvt8rPqTbvg MsWTIt04vGKCogKq3cjToSEXLmpOM0mzMMGhhdelf1tbTdn8Xo81+WGMvPeTTFQZbKWZ e/o0EoH8jkfCxuVD8iGrPzlJPxTWEq0amYIDYC5whlrcqAMefq9EG70PQjpShgBN/TPf zx+g== X-Gm-Message-State: AODbwcBYE1yrR2U8ElV6roUoLnv4YqE2OjVv+fWWFvd+hs30OwYRcrxQ qwG1w0mT7rRhQQ== X-Received: by 10.84.209.198 with SMTP id y64mr5247509plh.78.1494589756199; Fri, 12 May 2017 04:49:16 -0700 (PDT) Received: from localhost.localdomain ([117.247.27.218]) by smtp.gmail.com with ESMTPSA id d3sm7127839pgc.37.2017.05.12.04.49.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 12 May 2017 04:49:15 -0700 (PDT) From: Jagan Teki To: Stefano Babic Date: Fri, 12 May 2017 17:18:23 +0530 Message-Id: <1494589708-15276-5-git-send-email-jagan@openedev.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1494589708-15276-1-git-send-email-jagan@openedev.com> References: <1494589708-15276-1-git-send-email-jagan@openedev.com> Cc: Joe Hershberger , u-boot@lists.denx.de, Matteo Lisi Subject: [U-Boot] [PATCH 4/9] drivers: net: Kconfig: Add PHY_MICREL_KSZ9021 entry X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Jagan Teki Add kconfig entry for Micrel KSZ9021 PHY support. Cc: Joe Hershberger Signed-off-by: Jagan Teki --- drivers/net/phy/Kconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index aca3990..ce1b30a 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig @@ -58,6 +58,14 @@ config PHY_MARVELL config PHY_MICREL bool "Micrel Ethernet PHYs support" +config PHY_MICREL_KSZ9021 + bool "Micrel KSZ9021 Ethernet PHYs support" + depends on PHY_MICREL + help + KSZ9021 is a completely integrated triple speed (10Base-T/100Base-TX/1000Base-T) + Ethernet Physical Layer Transceiver for transmission and reception of data over + standard CAT-5 unshielded twisted pair (UTP) cable. + config PHY_MSCC bool "Microsemi Corp Ethernet PHYs support"