From patchwork Mon May 13 12:02:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: SARTRE Leo X-Patchwork-Id: 243396 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 C2CF72C00A4 for ; Mon, 13 May 2013 22:06:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C43434A02E; Mon, 13 May 2013 14:06:26 +0200 (CEST) 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 nxDhdVuoyVNW; Mon, 13 May 2013 14:06:26 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5FC214A046; Mon, 13 May 2013 14:06:14 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BC5154A023 for ; Mon, 13 May 2013 14:06:04 +0200 (CEST) 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 HzZ20pSJmIRT for ; Mon, 13 May 2013 14:06:01 +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 mail1.adetelgroup.com (mail1.adetelgroup.com [109.7.94.227]) by theia.denx.de (Postfix) with SMTP id 7E7DC4A026 for ; Mon, 13 May 2013 14:05:56 +0200 (CEST) Received: from mail.adetelgroup.com ([192.168.102.3]) by mail1.adetelgroup.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 13 May 2013 14:05:50 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.5 Received: from 192.168.113.1 ([192.168.113.1]) by frontmail.adetel.com ([192.168.102.3]) with Microsoft Exchange Server HTTP-DAV ; Mon, 13 May 2013 12:05:50 +0000 MIME-Version: 1.0 In-Reply-To: <1368446578-13390-1-git-send-email-lsartre@adeneo-embedded.com> X-Mailer: git-send-email 1.7.10.4 Content-class: urn:content-classes:message Date: Mon, 13 May 2013 14:02:58 +0200 Message-ID: <3465D313FDFB824F9A9C8CD24FA4F6BC0108CCF4@frontmail.adetel.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH 2/2] Add instruction file (based on the README for the sabrelite) for booting the Congatec board from SD-Card. Thread-Index: Ac5P0jW2b0AlH/2lSVuRkZoiFG81cA== References: <1368446578-13390-1-git-send-email-lsartre@adeneo-embedded.com> From: "SARTRE Leo" To: X-OriginalArrivalTime: 13 May 2013 12:05:50.0786 (UTC) FILETIME=[35FD9220:01CE4FD2] Subject: [U-Boot] [PATCH 2/2] Add instruction file (based on the README for the sabrelite) for booting the Congatec board from SD-Card. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 Signed-off-by: Leo Sartre --- board/freescale/cgtqmx6/README | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 board/freescale/cgtqmx6/README 1.7.10.4 diff --git a/board/freescale/cgtqmx6/README b/board/freescale/cgtqmx6/README new file mode 100644 index 0000000..bcacc71 --- /dev/null +++ b/board/freescale/cgtqmx6/README @@ -0,1 +1,35 @@ +U-Boot for the Congatec Conga-QEVAl Evaluation Carrier board + +This file contains information for the port of U-Boot to the Congatec +Conga-QEVAl Evaluation Carrier board. + +1. Boot source, boot from SD card +--------------------------------- + +This version of u-boot works only on the SD card. By default, the +Congatec board boot from the SPI-NOR. +With the uboot version provided with the board you can write boot +registers to force the board to reboot and boot from the SD slot: + +conga-QMX6 U-Boot > mw.l 0x20d8040 0x3850 +conga-QMX6 U-Boot > mw.l 0x020d8044 0x10000000 +conga-QMX6 U-Boot > reset +resetting ... + +The the board will reboot and, if you burnt your SD correctly the +board (see (2) for instructions) will use u-boot that live into the SD +card. + +2. Build +-------- + +To build U-Boot for the Congatec board: + + make cgtqmx6_config + make u-boot.imx + +To copy the resulting u-boot.imx to the SD card: + + sudo dd if=u-boot.imx of=/dev/sXx bs=512 seek=2&&sudo sync + +Note: Replace sXx with the device representing the SD card in your system. --