From patchwork Mon Oct 31 01:44:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoshihiro Shimoda X-Patchwork-Id: 122699 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 7248EB6F6B for ; Mon, 31 Oct 2011 12:44:46 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2BF4D28C1C; Mon, 31 Oct 2011 02:44:42 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2YlgM9hosrkY; Mon, 31 Oct 2011 02:44:41 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A7AA328C20; Mon, 31 Oct 2011 02:44:32 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0FD6A28B60 for ; Mon, 31 Oct 2011 02:44:31 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bkKWbzfmk7-2 for ; Mon, 31 Oct 2011 02:44:30 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from relmlor1.renesas.com (relmlor1.renesas.com [210.160.252.171]) by theia.denx.de (Postfix) with ESMTP id 47FDA28B4A for ; Mon, 31 Oct 2011 02:44:22 +0100 (CET) Received: from relmlir3.idc.renesas.com ([10.200.68.153]) by relmlor1.idc.renesas.com ( SJSMS) with ESMTP id <0LTW003WIQ5W7GC0@relmlor1.idc.renesas.com> for u-boot@lists.denx.de; Mon, 31 Oct 2011 10:44:20 +0900 (JST) Received: from relmlac2.idc.renesas.com ([10.200.69.22]) by relmlir3.idc.renesas.com ( SJSMS) with ESMTP id <0LTW00DRTQ5WA560@relmlir3.idc.renesas.com> for u-boot@lists.denx.de; Mon, 31 Oct 2011 10:44:20 +0900 (JST) Received: by relmlac2.idc.renesas.com (Postfix, from userid 0) id E151228070; Mon, 31 Oct 2011 10:44:19 +0900 (JST) Received: from relmlac2.idc.renesas.com (localhost [127.0.0.1]) by relmlac2.idc.renesas.com (Postfix) with ESMTP id E07BC28088; Mon, 31 Oct 2011 10:44:19 +0900 (JST) Received: from relmlii1.idc.renesas.com [10.200.68.65] by relmlac2.idc.renesas.com with ESMTP id LAB11427; Mon, 31 Oct 2011 10:44:19 +0900 X-IronPort-AV: E=Sophos; i="4.69,428,1315148400"; d="scan'208"; a="52453046" Received: from unknown (HELO [172.30.8.157]) ([172.30.8.157]) by relmlii1.idc.renesas.com with ESMTP; Mon, 31 Oct 2011 10:44:19 +0900 Message-id: <4EADFD73.7000102@renesas.com> Date: Mon, 31 Oct 2011 10:44:19 +0900 From: Yoshihiro Shimoda User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.9.2.23) Gecko/20110920 Thunderbird/3.1.15 MIME-version: 1.0 To: Nobuhiro Iwamatsu Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH] sh: espt: change config for new sh_eth driver X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de The new sh_eth driver uses the phy driver. So, this patch enables it. Signed-off-by: Yoshihiro Shimoda --- include/configs/espt.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/configs/espt.h b/include/configs/espt.h index 38058c7..3df1fae 100644 --- a/include/configs/espt.h +++ b/include/configs/espt.h @@ -39,6 +39,7 @@ #define CONFIG_CMD_FLASH #define CONFIG_CMD_MEMORY #define CONFIG_CMD_NET +#define CONFIG_CMD_MII #define CONFIG_CMD_PING #define CONFIG_CMD_ENV #define CONFIG_CMD_NFS @@ -120,5 +121,8 @@ #define CONFIG_SH_ETHER 1 #define CONFIG_SH_ETHER_USE_PORT (1) #define CONFIG_SH_ETHER_PHY_ADDR (0x00) +#define CONFIG_PHYLIB +#define CONFIG_BITBANGMII +#define CONFIG_BITBANGMII_MULTI #endif /* __SH7763RDP_H */