From patchwork Wed Apr 8 19:54:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 459448 X-Patchwork-Delegate: sbabic@denx.de 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 168BE14016A for ; Thu, 9 Apr 2015 05:55:57 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3CCCDA7466; Wed, 8 Apr 2015 21:55:42 +0200 (CEST) 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 kuUz2r4ddftE; Wed, 8 Apr 2015 21:55:42 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A7986A742F; Wed, 8 Apr 2015 21:55:28 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 06756A7420 for ; Wed, 8 Apr 2015 21:55:19 +0200 (CEST) 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 zwfgGTCQOJX1 for ; Wed, 8 Apr 2015 21:55:18 +0200 (CEST) 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 mail-pd0-f173.google.com (mail-pd0-f173.google.com [209.85.192.173]) by theia.denx.de (Postfix) with ESMTPS id 893BEA7422 for ; Wed, 8 Apr 2015 21:55:15 +0200 (CEST) Received: by pdea3 with SMTP id a3so126198392pde.3 for ; Wed, 08 Apr 2015 12:55:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=nmXsuzgUEF6dqSewiw48PnXW/jr1Hy6qh9vzQHF+bXw=; b=GQzQQ/tOnmNWMRVvkSQ4TRlQmy9AUqZz3Gkm1Ey0DZSg00dyNYVwghWjcR289r2At9 OWsfKE0L5Jy1d/HzyPUgpS4JPPl2lzSUFGxjuNxSqPMXsRN5B9bOZqvjvN7OaHDY2cCC f7k+GvBFQ5QHAaQdsHWgjJvYwkCCE+6Gu7g/XCdNaH1mYyqqHR0k2es39FNRLtwTpCi5 TVHrDUfKa6/kuXIthf2qGwiqqhvcWt0TUFxw07G4b+R2h5J0NBpmmjEq5PuJeU20zqOI ZrnZkhQUN9KLjEvtbQHIDHIp7T4fVa3xfdI9Xsah4yyT8Z/uFXMObRMWBziyOxrG3GeP H/Sg== X-Gm-Message-State: ALoCoQnX/bEnu0XEsZhlFktXyDX13WpnDTrX+EgtabpQMjNdY42GyvnizmFAIJexXb4J+GFkX8fV X-Received: by 10.70.62.97 with SMTP id x1mr13774947pdr.41.1428522913769; Wed, 08 Apr 2015 12:55:13 -0700 (PDT) Received: from tharvey.gw (68-189-91-139.static.snlo.ca.charter.com. [68.189.91.139]) by mx.google.com with ESMTPSA id u5sm12130208pdu.57.2015.04.08.12.55.12 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 08 Apr 2015 12:55:13 -0700 (PDT) From: Tim Harvey To: Stefano Babic Date: Wed, 8 Apr 2015 12:54:32 -0700 Message-Id: <1428522904-8111-3-git-send-email-tharvey@gateworks.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1428522904-8111-1-git-send-email-tharvey@gateworks.com> References: <1428522904-8111-1-git-send-email-tharvey@gateworks.com> Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH 02/34] imx: ventana: add i210 support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" Signed-off-by: Tim Harvey --- board/gateworks/gw_ventana/gw_ventana.c | 4 ++++ include/configs/gw_ventana.h | 1 + 2 files changed, 5 insertions(+) diff --git a/board/gateworks/gw_ventana/gw_ventana.c b/board/gateworks/gw_ventana/gw_ventana.c index bb08cd2..303b13a 100644 --- a/board/gateworks/gw_ventana/gw_ventana.c +++ b/board/gateworks/gw_ventana/gw_ventana.c @@ -404,6 +404,10 @@ int board_eth_init(bd_t *bis) cpu_eth_init(bis); #endif +#ifdef CONFIG_E1000 + e1000_initialize(bis); +#endif + #ifdef CONFIG_CI_UDC /* For otg ethernet*/ usb_eth_initialize(bis); diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h index e60173f..76da532 100644 --- a/include/configs/gw_ventana.h +++ b/include/configs/gw_ventana.h @@ -174,6 +174,7 @@ /* Ethernet support */ #define CONFIG_FEC_MXC +#define CONFIG_E1000 #define CONFIG_MII #define IMX_FEC_BASE ENET_BASE_ADDR #define CONFIG_FEC_XCV_TYPE RGMII