GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011

Size: px
Start display at page:

Download "GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011"

Transcription

1 GM8126 U-BOOT User Guide Rev.: 0.2 Issue Date: May 2011

2

3 REVISION HISTORY Date Rev. From To Apr Original May Modified Chapters 5 and 8 Added Chapter 7 Copyright 2011 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2011 Grain Media and the Grain Media Logo are trademarks of Grain Media, Inc. in Taiwan and/or other countries. Other company, product and service names may be trademarks or service marks of others. All information contained in this document is subject to change without notice. The products described in this document are NOT intended for use in implantation or other life support application where malfunction may result in injury or death to persons. The information contained in this document does not affect or change Grain Media s product specification or warranties. Nothing in this document shall operate as an express or implied license or indemnity under the intellectual property rights of Grain Media or third parties. All information contained in this document was obtained in specific environments, and is presented as an illustration. The results obtained in other operating environments may vary. THE INFORMATION CONTAINED IN THIS DOCUMENT IS PROVIDED ON AN AS IS BASIS. In no event will Grain Media be liable for damages arising directly or indirectly from any use of the information contained in this document. Grain Media, Inc. 5F, No. 5, Li-Hsin Road III, Hsinchu Science Park, Hsinchu City, Taiwan 300, R.O.C. Grain Media's home page can be found at:

4

5 TABLE OF CONTENTS Chapter 1 Overview... 1 Chapter 2 Compiler Unpack... 4 Build SPI System Binaries Build NAND System Binaries... 6 Chapter 3 Add New Chip SPI Flash... 8 NAND Flash... 8 Chapter 4 Modify Address Setting SPI Flash NAND Flash Chapter 5 Chapter 6 Chapter 7 MAC Setting Boot Function Flash Command SPI Flash NAND Flash Chapter 8 Others i

6

7 Chapter 1 Overview U-BOOT is closely related to Linux. Some parts of the source code are originated in the Linux source tree so that some header files are in common and special provision supports the booting of the Linux images. When the peripheral chip is different from the on-board peripheral chip, the drivers should be modified according to the new hardware design and the new definition should be configured as required. Directory hierarchy: - board Board dependent files - common Misc architecture independent functions - cpu CPU specific files - disk Code for the disk drive partition handling - doc Documentation (Do not expect too much) - drivers Commonly used device drivers - examples Example code for standalone applications, and so on - include Header files - lib_arm Files generic to the ARM architecture 1

8 - lib_avr32 Files generic to the AVR32 architecture - lib_generic Files generic to all architectures - lib_i386 Files generic to the i386 architecture - lib_m68k Files generic to the m68k architecture - lib_mips Files generic to the MIPS architecture - lib_nios Files generic to the NIOS architecture - lib_ppc Files generic to the PowerPC architecture - lib_sparc Files generic to the SPARC architecture - net Networking code - post Power-On Self Test - tools Tools used to build the S-Record or U-BOOT images 2

9 Chapter 2 Compiler This chapter contains the following sections: 2.1 Unpack 2.2 Build SPI System 2.3 Build NAND System 3

10 The released U-BOOT for the GM8126 NAND system can be found in the u-boot directory. In that directory, users can find the pre-compiled image and the source archive. 2.1 Unpack Users can unpack the source archive by issuing the following command (Replace u-boot tar.gz with a filename as required): $ tar xvfz u-boot tar.gz Change to the created U-BOOT directory (Replace u-boot with a file name as required): $ cd u-boot Build SPI System Before compiling U-BOOT, the SPI configure of GM8126 has to be enabled. Open the GM8126 U-BOOT configure file, include/configs/gm8126.h, and ensure that the CONFIG_SPI*** option is defined and the CONFIG_NAND option is not defined. 4

11 2.2.1 Binaries Once U-BOOT has successfully compiled the following files, the compiled files will be stored in the u-boot directory: File u-boot u-boot.bin u-boot.srec Description Compiled ELF image U-BOOT is converted to a raw binary. u-boot.bin is converted to the Motorola S-records format. 2.3 Build NAND System Before compiling U-BOOT, the NAND configuration of GM8126 has to be enabled. Open the GM8126 U-BOOT configure file, include/configs/gm8126.h, and ensure that the CONFIG_NAND option is defined. 5

12 Then, issue the following commands to build an image: $ make gm8126_config $ make Binaries Once U-BOOT has successfully compiled the files listed in the table below, the compiled files will be stored in the u-boot directory. File u-boot u-boot.bin u-boot.srec Description Compiled ELF image U-BOOT is converted to a raw binary. u-boot.bin is converted to the Motorola S-records format. 6

13 Chapter 3 Add New Chip This chapter contains the following sections: 3.1 SPI Flash 3.2 NAND Flash 7

14 3.1 SPI Flash If users want to add a new SPI chip, the file listed below should be modified: u-boot \drivers\mtd\spi\winbond.c Users can search for the SELF string and update the SPI Flash as required: u-boot \include\configs\gm8126.h #define CONFIG_SPI_FLASH_SELF 1 #define PHYS_FLASH_SIZE 0x Issue the previous command if the Flash size must be updated: u-boot \drivers\mtd\spi\spi_flash.c Search for the SELF string and update the SPI Flash as required. 3.2 NAND Flash General NAND Flash uses 4-byte ID. 8

15 Chapter 4 Modify Address Setting This chapter contains the following sections: 4.1 SPI Flash 4.2 NAND Flash 9

16 If users want to add a new SPI chip, the following file should be modified: u-boot \include\configs\gm8126.h 4.1 SPI Flash #define CONFIG_ENV_OFFSET 0x6E0000 #define CONFIG_ENV_SIZE 0x20000 #define CONFIG_ENV_SECT_SIZE 0x NAND Flash #define CONFIG_ENV_OFFSET 0x #define CONFIG_ENV_SIZE 0x20000 /* must reserve 0x20000 for erase */ 10

17 Chapter 5 MAC Setting If users want to add a new SPI chip, the following files should be modified: Please copy the fw_env.config file to the rootfs-cpio etc directory and copy the fw_printenv AP to bin or the /usr/sbin directory. If users need to modify the MTD5 setting or the Flash address setting, please modify the fw_env.config file as required. It is not recommended modifying these files at the initial stage, if the MAC setting works, then users can modify the setting as required. If users modify the size setting value, the u-boot \include\configs\gm8126.h CONFIG_ENV setting value should be modified at the same time and compiler again. 11

18 For example: MTD device name: /dev/mtd5 (U-BOOT environment) Device offset: 0x0000 Environment size: 0x20000 Flash sector size: 0x20000 Number of sectors: 0x1 Please refer to the sample below for the fw_env.config file. # NAND example /dev/mtd5 0x x x x1 u-boot \include\configs\gm8126.h => printenv bootargs= bootcmd=sf probe 0:0;sf read 0x xd6100 0x800000;go 0x bootdelay=3 baudrate=38400 ethaddr=00:42:70:00:30:22 ipaddr= serverip= gatewayip= netmask= ethact=ftmac110#0 ver=u-boot (Apr :56:19) Environment size: 268/ bytes => saveenv Saving Environment to SPI Flash... Erasing SPI flash...erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e

19 ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e ##Erase: 20 6e a0 00 ##Erase: 20 6e b0 00 ##Erase: 20 6e c0 00 ##Erase: 20 6e d0 00 ##Erase: 20 6e e0 00 ##Erase: 20 6e f0 00 ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f ##Erase: 20 6f a0 00 ##Erase: 20 6f b0 00 ##Erase: 20 6f c0 00 ##Erase: 20 6f d0 00 ##Erase: 20 6f e0 00 ##Erase: 20 6f f0 00 ##Writing to SPI flash...####################################################### #########################done => 13

20 fw_printenv prints all environment variables. If users want to pass ethaddr, please run the fw_printenv ethaddr command. If users want to pass ipaddr, please run the fw_printenv ipaddr command. / # insmod /lib/modules/ftmac100.ko FTMAC with FARADAY Internal PHY support FTMAC110 Driver (Linux 2.6) 01/10/11 - (C) 2011 GM Corp. reset Faraday Internal PHY. / # mdev -s / # fw_printenv bootargs= bootcmd=sf probe 0:0;sf read 0x xd6100 0x800000;go 0x bootdelay=3 baudrate=38400 ethaddr=00:42:70:00:30:22 ipaddr= serverip= gatewayip= netmask= ethact=ftmac110#0 ver=u-boot (Apr :56:19) / # ifconfig / # fw_printenv ethaddr ADDR:00:e42:th70:a00:d30:d22 r=00:42:70:00:30:22 ftmac110_link_change:2048 <SPEED100> ftmac110_link_change:2062 <FULL> / # ifconfig eth0 Link encap:ethernet HWaddr 00:42:70:00:30:22 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:10 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:2233 (2.1 KiB) TX bytes:0 (0.0 B) Interrupt:3 Base address:0x6000 / # 14

21 Chapter 6 Boot Function If users want to boot from U-BOOT and not using the non-os boot code, the following line should be disabled: u-boot \include\configs\gm8126.h #define CONFIG_SKIP_LOWLEVEL_INIT 1 15

22

23 Chapter 7 Flash Command This chapter contains the following sections: 4.1 SPI Flash 4.2 NAND Flash 17

24 If users want to run the read, write, or erase command, this command should be set as follow: 7.1 SPI Flash Detect chip (If you want to run SPI flash r/w/e command, please set this command first) => sf probe 0:0 #SF: Got idcode ef KiB W25Q64CV at 0:0 is now current device => => help sf sf probe [bus:]cs [hz] [mode] - init flash device on given SPI bus and chip select sf read addr offset len - read `len' bytes starting at `offset' to memory at `addr' sf write addr offset len - write `len' bytes from memory at `addr' to flash at `offset' sf erase offset len - erase `len' bytes from `offset' 7.2 NAND Flash => nand info Device 0: NAND 128MiB 3,3V 8-bit, sector size 256 KiB => nand read addr offset len - read `len' bytes starting at `offset' to memory at `addr' nand write addr offset len - write `len' bytes from memory at `addr' to flash at `offset' 18

25 nand erase offset len - erase `len' bytes from `offset' 19

26

27 Chapter 8 Others Large size or new NAND Flash of using 5-byte ID is not supported in this version of U-BOOT. When the change of the DDR timing or size is not modified by U-BOOT, it should be modified by nsboot, and the modification is defined in the SDK/Spi_nand/nsboot/source/nsboot_mp.tar.gz head.s file. 21

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010 GM8126 MAC DRIVER User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2010

More information

GM8126 I2C. User Guide Rev.: 1.0 Issue Date: December 2010

GM8126 I2C. User Guide Rev.: 1.0 Issue Date: December 2010 GM8126 I2C User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2010 Grain

More information

APPLICATION NOTE. Scope. Reference Documents. Software Ethernet Bridge on SAMA5D3/D4. Atmel SMART SAMA5D3/D4 Series

APPLICATION NOTE. Scope. Reference Documents. Software Ethernet Bridge on SAMA5D3/D4. Atmel SMART SAMA5D3/D4 Series SMART APPLICATION NOTE Software Ethernet Bridge on SAMA5D3/D4 Atmel SMART SAMA5D3/D4 Series Scope The Atmel SMART SAMA5D3/D4 series are high-performance, power-efficient embedded MPUs based on the ARM

More information

IP over IB Protocol. Introduction CHAPTER

IP over IB Protocol. Introduction CHAPTER CHAPTER 3 The following sections appear in this chapter: Introduction, page 3-1 Manually Configure IPoIB for Default IB Partition, page 3-2 Subinterfaces, page 3-2 Verify IPoIB Functionality, page 3-5

More information

Let us ping! First we will learn the Hello World of a networked machine.

Let us ping! First we will learn the Hello World of a networked machine. AN INTRODUCTION TO LINUX NETWORKING In this article, we ll explore networking under GNU/Linux. You ll find it interesting to manage the entire network through certain valid keystrokes known as commands.

More information

U-boot quick start guide

U-boot quick start guide Rev. 01 15 February 2007 User guide Document information Info Keywords Abstract Content U-boot, LPC2294, LPC2292, LPC2290/01, LPC2220, LPC2214, LPC2212, LPC2210/01 This document is a simple user guide

More information

LS9200 User Guide LinkSprite Technologies, Inc.

LS9200 User Guide LinkSprite Technologies, Inc. LS9200 User Guide LinkSprite Technologies, Inc. 1 / 17 Table of Contents 1. Foreword... 3 2. Features... 3 3. Part and jumper description... 4 Part description... 4 LED and Key description... 4 Jumper

More information

JMB36X. PCI Express to SATA II/PATA Host Controller. RAID AP Utility User Guide

JMB36X. PCI Express to SATA II/PATA Host Controller. RAID AP Utility User Guide JMB36X PCI Express to SATA II/PATA Host Controller RAID AP Utility User Guide Rev. 1.0 JMicron Technology Corporation 4F, No.18, Prosperity 2 nd Road, Science Based Industrial Park, Hsinchu, Taiwan, R.O.C

More information

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011 GM8126 LINUX User Guide Rev.: 0.1 Issue Date: January 2011 REVISION HISTORY Date Rev. From To Jan. 2011 0.1 - Original Copyright 2011 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2011 Grain

More information

USER GUIDE. ATWILC1000 Getting Started with SAMA5D3 Xplained Board. Atmel SmartConnect. Introduction. Features

USER GUIDE. ATWILC1000 Getting Started with SAMA5D3 Xplained Board. Atmel SmartConnect. Introduction. Features USER GUIDE ATWILC1000 Getting Started with SAMA5D3 Xplained Board Atmel SmartConnect Introduction This document explains how to get started with the Atmel SmartConnect ATWILC1000 on SAMA5D3 Xplained board.

More information

GM8126 EVB. User Guide Rev.: 1.1 Issue Date: July 2011

GM8126 EVB. User Guide Rev.: 1.1 Issue Date: July 2011 GM8126 EVB User Guide Rev.: 1.1 Issue Date: July 2011 REVISION HISTORY Date Rev. From To Feb. 2011 1.0 - Original Jul. 2011 1.1 - Modified Section 3.1 Copyright 2011 Grain Media, Inc. All Rights Reserved.

More information

Getting Started U-boot

Getting Started U-boot Getting Started U-boot Document Description Keywords Abstract U-boot, lpc2294 This document is a simple user guide for how to use u-boot on lpc2294 mcu: setup u-boot and toolkit; make and program the image

More information

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 (2U 19'' width unit) Power cord Support hardware for 19'' cabinet Prerequisites You need a computer equipped with Internet browser.

More information

JMS583 USB 3.1 Gen 2 to PCIe Gen3x2 Bridge Controller

JMS583 USB 3.1 Gen 2 to PCIe Gen3x2 Bridge Controller PRODUCT BRIEF JMS583 USB 31 Gen 2 to PCIe Gen3x2 Bridge Controller Document No: PDB-18001 / Revision: 100 / Date: 5/15/2018 JMicron Technology Corporation 1F, No 13, Innovation Road 1, Science-Based Industrial

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

The network interface configuration property screens can be accessed by double clicking the network icon in the Windows Control Panel.

The network interface configuration property screens can be accessed by double clicking the network icon in the Windows Control Panel. Introduction The complete instructions for setting up the PowerPC 750FX Evaluation Kit are provided in the PowerPC 750FX Evaluation Board User's Manual which can be found on the 750FX Evaluation Kit CD.

More information

How to Recover the OS7030

How to Recover the OS7030 How to Recover the OS7030 What you will need: - You will need to make up a serial cable to connect to the SIO connector inside the OS7030. PC serial port OS7030 SIO Connector 9 Pin D Sub Female connector

More information

PetaLinux SDK Guide to QEMU System Simulation

PetaLinux SDK Guide to QEMU System Simulation PetaLinux SDK Guide to QEMU System Simulation v1.1 November 27, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 PetaLinux Software Simulation with QEMU...3

More information

Use U-Boot. U-Boot Main Commands. U-Boot script capability

Use U-Boot. U-Boot Main Commands. U-Boot script capability Use U-Boot U-Boot Main Commands setenv this command is used to set variables saveenv this command saves variables previously set in the environment permanent storage space printenv this command print the

More information

IR REFLOW PROFILE. User Guide Rev.: 1.0 Issue Date: January 2008

IR REFLOW PROFILE. User Guide Rev.: 1.0 Issue Date: January 2008 IR REFLOW PROFILE User Guide Rev.: 1.0 Issue Date: January 2008 REVISION HISTORY Date Rev. From To Jan. 2008 1.0 - Original Copyright Faraday Technology, 2008 All Rights Reserved. Printed in Taiwan 2008

More information

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide StampA5D3x/PortuxA5/PanelA5 Quickstart Guide StampA5D3x/PortuxA5/PanelA5 StampA5D3x/PortuxA5/PanelA5: Quickstart Guide Copyright 2015 taskit GmbH All rights to this documentation and to the product(s)

More information

Enabling CDC_ETHER Connection for Skywire GSM CAT1

Enabling CDC_ETHER Connection for Skywire GSM CAT1 Enabling CDC_ETHER Connection for Skywire GSM CAT1 NimbeLink Corp Updated: February 2018 PN 30262 rev 4 NimbeLink Corp. 2018. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Enabling CDC-ETHER Connection for Skywire CAT1

Enabling CDC-ETHER Connection for Skywire CAT1 Enabling CDC-ETHER Connection for Skywire CAT1 NimbeLink Corp Updated: May 2017 PN 30111 rev 5 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction 2 1.1 Orderable

More information

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement Copyright 2017, fp Technologies, Inc. All Rights Reserved These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement You will need to

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

More information

CANopen Object Browser, Version 0.2

CANopen Object Browser, Version 0.2 CANopen Object Browser, Version 0.2 CANopen Object Browser for Linux The CANopen Object Browser is a tool to display and browse through a CANopen Object Dictionary based on EDS-Files. The program allows

More information

GM8126 SCALER FOR VIDEO GRAPHIC

GM8126 SCALER FOR VIDEO GRAPHIC GM8126 SCALER FOR VIDEO GRAPHIC User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY GM8126 Scaler for Video Graph User Guide Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain

More information

Wi-Fi Guide: Edimax USB Adapter on BBG

Wi-Fi Guide: Edimax USB Adapter on BBG Wi-Fi Guide: Edimax USB Adapter on BBG August 3 rd 2017 Table of Contents: Page 1: Page 2: Page 3: Page 4: Page 5: Introduction & Hardware requirements Getting Started Connecting to a network using Network

More information

Renesas Koelsch Hardware Setup and Software Installation

Renesas Koelsch Hardware Setup and Software Installation Renesas Koelsch Hardware Setup and Software Installation Table of content Introduction Master GDP-ivi10 GDP-ivi9 GDP-ivi7 Software setup Pre-built binaries Quick Start Obtain and Install Renesas Graphics

More information

JMS580 USB 3.1 Gen2 to SATA 6Gb/s Bridge Controller

JMS580 USB 3.1 Gen2 to SATA 6Gb/s Bridge Controller PRODUCT BRIEF JMS580 USB 31 Gen2 to SATA 6Gb/s Bridge Controller Document No: PDB-17001 / Revision: 101 / Date: 9/20/2017 JMicron Technology Corporation 1F, No 13, Innovation Road 1, Science-Based Industrial

More information

Boot loader in embedded systems

Boot loader in embedded systems The success's road Boot loader in embedded systems www.farsight.com.cn 内容安排 v v v v v v v 1 Bootloader 在嵌入式 linux 设备中的作用 2 u-boot 介绍 3 u-boot 启动代码分析 (S3C2410) 4 u-boot 中如何增加对网络芯片的支持 5 如何在 u-boot 中增加自定义命令

More information

COMX-P4080. Release Notes L69C February 2011

COMX-P4080. Release Notes L69C February 2011 COMX-P4080 Release Notes 6806800L69C February 2011 Copyright Copyright 2011 Emerson Network Power All rights reserved. Emerson Network Power is registered in the U.S. Patent and Trademark Offices. All

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

Chapter 5 Network Layer

Chapter 5 Network Layer Chapter 5 Network Layer Network Layer IPv4 2 IP Header Application Header + data 3 IP IP IP IP 4 Focus on Transport Layer IP IP 5 Network Layer The Network layer (Layer 3) provides services to exchange

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Configuring Real Servers for DSR

Configuring Real Servers for DSR Configuring Real Servers for DSR VERSION: 1.1 UPDATED: JULY 2013 Copyright 2002-2013 KEMP Technologies, Inc. All Rights Reserved. Page 1 / 20 Copyright Notices Copyright 2002-2013 KEMP Technologies, Inc..

More information

Blueprints. Quick Start Guide for installing and running KVM

Blueprints. Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Note Before using this information and the product it supports, read the information

More information

AVR32401: AVR32 AP7 Linux Interfacing DataFlash. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR32401: AVR32 AP7 Linux Interfacing DataFlash. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR32401: AVR32 AP7 Linux Interfacing DataFlash Features JFFS2 file system Communication through SPI interface 1 Introduction This application note serves as an example of how to connect, set up and use

More information

Bootloader D. Balakrishna, Research Associate, IIIT-H Bootloaders are important when we are developing embedded systems, depending on the capabilities of the board and processor on which an embedded system

More information

Access Server: User's and Developer's Guide <<< Previous Next >>>

Access Server: User's and Developer's Guide <<< Previous Next >>> 1 of 14 12/9/2008 10:18 AM Access Server: User's and Developer's Guide > Chapter 2. Getting Started with Access Server Access Server can be controlled in three ways: by using the WWW

More information

CIS Test 1- Practice - Fall 2011

CIS Test 1- Practice - Fall 2011 CIS 192 - Test 1- Practice - Fall 2011 Name Each question worth 2 points: Tip: When not logged in as root, you can still use many of the network commands but you must preface them with /sbin/ because you

More information

Hostname and IP Address

Hostname and IP Address 1/19 IP Addressing Surasak Sanguanpong nguan@ku.ac.th http://www.cpe.ku.ac.th/~nguan Last updated: 27 June 2002 Hostname and IP Address 2/19 browser What is the IP address of www.isoc.org? www.isoc.org

More information

GM8126 GM8126 CAPTURE. User Guide Rev.: 1.2 Issue Date: June 2011

GM8126 GM8126 CAPTURE. User Guide Rev.: 1.2 Issue Date: June 2011 GM8126 GM8126 CAPTURE User Guide Rev.: 1.2 Issue Date: June 2011 REVISION HISTORY Date Rev. From To Nov. 2010 1.0 - Original Jan. 2011 1.1 - Updated the module parameters in Chapter 3 Jun. 2011 1.2 -

More information

Quick guide for configuring a system with multiple IP-LINKs

Quick guide for configuring a system with multiple IP-LINKs Quick guide for configuring a system with multiple IP-LINKs October 4 th 2005, KK. This guide will show an example configurations for a system with multiple IP-LINKs. Example 1, three devices connected

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003 [CRT09] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 MODULE NO: CPU5003 Date: Wednesday 21 st January 2015 Time: 10:00 13:00 INSTRUCTIONS

More information

U-boot Porting guide. Saurin Suthar. Dashboard April 2007 Issue

U-boot Porting guide. Saurin Suthar. Dashboard April 2007 Issue U-boot Porting guide Saurin Suthar U-BOOT PORTING GUIDE U-BOOT OVERVIEW u-boot(universal Bootloader) is an open source, multi platform bootloader. u-boot supports interactive commands, environment variables,

More information

LTIB for i.mx28, a step-by-step guide

LTIB for i.mx28, a step-by-step guide LTIB for i.mx28, a step-by-step guide Note: This guide shows how to get a target system building and running on an i.mx28 EVK board. Install LTIB Configure and build First time configuration LTIB configuration

More information

VortiQa Enterprise Quick Start Guide

VortiQa Enterprise Quick Start Guide Freescale Semiconductor Document Number: VQSEQSG Quick Start Guide Rev. 0, 06/2009 VortiQa Enterprise Quick Start Guide 1 Introduction This document describes how to set up and install the VortiQa software

More information

NGS IoT Bone (rev. MRF-1)

NGS IoT Bone (rev. MRF-1) BeagleBoneBlack IoT cape IEEE802.15.4 cape with Microchip MRF24J40MD component NGS IoT Bone (rev. MRF-1) Code : NGS_IoT_Bone_rev_MRF_1 Page intentionally left blank New Generation Sensors S.r.l. 2/16 Warranty,

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

Sirindhorn International Institute of Technology Thammasat University

Sirindhorn International Institute of Technology Thammasat University 1 Name...ID....Section. Seat No.. Sirindhorn International Institute of Technology Thammasat University Midterm Examination: Semester 2/2007 Course Title : ITS 332 Information Technology II Lab (Networking)

More information

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide Part Number 733-0207 www.hp.com/networking Revision A www.netscout.com September 28, 2010 Copyright 2008 Hewlett-Packard

More information

EDBG. Description. Programmers and Debuggers USER GUIDE

EDBG. Description. Programmers and Debuggers USER GUIDE Programmers and Debuggers EDBG USER GUIDE Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging

More information

GMSplus Customer Connection Test Procedure

GMSplus Customer Connection Test Procedure GMS-xx Customer Connection Test Procedure Page 1/14 GMSplus Customer Connection Test Procedure Company: Author: Checked: Approved: Distribution: GeoSIG Ltd Wiesenstrasse 39, 8952 Schlieren, Switzerland,

More information

Configuring the BeagleBone Black s Ethernet Port for SSH Access

Configuring the BeagleBone Black s Ethernet Port for SSH Access Configuring the BeagleBone Black s Ethernet Port for SSH Access NimbeLink Corp Updated: April 2016 PN 30112 rev 1 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

UPGRADING THE ARCTIC FIRMWARE

UPGRADING THE ARCTIC FIRMWARE Viola Systems Ltd. tel +358-(0)201-226 226 Lemminkäisenkatu 14-18B fax +358-(0)201-226 220 FIN-20520, Turku e-mail support@violasystems.com Finland APPLICATION NOTE VA-09-5-2 UPGRADING THE ARCTIC FIRMWARE

More information

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LAB REFERENCE & TOPOLOGY INFORMATION... 3 3 DELETE THE EXISTING OUT OF BAND NODE MANAGEMENT ADDRESSES CONFIGURATION FOR YOUR DESIGNATED ACI FABRIC... 4 4 CONFIGURE

More information

CHAPTER 7 DEMONSTRATE THE PAN IN LINUX

CHAPTER 7 DEMONSTRATE THE PAN IN LINUX CHAPTER 7 DEMONSTRATE THE PAN IN LINUX SYSTEM The new model - Network Access Point Group Network 7.1 DEMONSTRATION Software: All machines are installed with Linux Redhat 8.0 Hardware list:- There are two

More information

Preliminary Datasheet

Preliminary Datasheet JMS561U SuperSpeed USB to Dual SATA Gen3 Ports Bridge and SATA Copier Preliminary Datasheet JMicron 2014. All rights reserved. Page 1 Copying prohibited. Revision History Version Date Revision Description

More information

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img)

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) This Application Note provides instructions on how to start-up the phycore-pxa270, download U-Boot to the phycore-pxa270

More information

HPS SoC Boot Guide - Cyclone V SoC Development Kit

HPS SoC Boot Guide - Cyclone V SoC Development Kit 2014.07.03 AN-709 Subscribe Introduction This document describes the available boot stages and source modes for both the HPS and FPGA fabric. The boot sequence is a multi-stage process, where each stage

More information

IBM Flex System IB port QDR InfiniBand Adapter. User s Guide

IBM Flex System IB port QDR InfiniBand Adapter. User s Guide IBM Flex System IB6132 2-port QDR InfiniBand Adapter User s Guide ii IBM Flex System IB6132 2-port QDR InfiniBand Adapter User s Guide IBM Flex System IB6132 2-port QDR InfiniBand Adapter User s Guide

More information

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration.

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration. 1 of 7 04/18/09 15:39 BeagleBoardNAND From elinux.org This page is about using (booting/running from) NAND (http://en.wikipedia.org/wiki/flash_memory#nand_flash) memory on BeagleBoard. Parts of this page

More information

Monospace $ ls -latr pictures # less /var/log/messages $ # ipchains turboclusteradmin # mount /mnt/cdrom # cd /mnt/cdrom TLCS-install #./TLCS-install redhat turbolinux

More information

JMF60X B NAND Flash Support List And Performance Table

JMF60X B NAND Flash Support List And Performance Table JMF60X B NAND Flash Support List And Performance Table Ver. 1.6 JMicron 2008. All rights reserved. Page 1 Copying prohibited. Revision History Version Date Revision Description 1.0~1.5 2008 *.xls file.

More information

AN3154 Application note

AN3154 Application note Application note CAN protocol used in the STM32 bootloader Introduction This application note describes the CAN protocol used in the STM32 microcontroller bootloader. It details each supported command.

More information

Canopy Wireless Broadband Platform

Canopy Wireless Broadband Platform 1 Canopy Wireless Broadband Platform Frequently Asked Questions Software Ordering and License Fulfillment Process CONTENTS GENERAL SOFTWARE ORDERING PROCESS...2 USING THE LICENSING PORTAL...5 LICENSE MANAGERS

More information

How to handle the spare-byte area of Macronix 36nm NAND Flash

How to handle the spare-byte area of Macronix 36nm NAND Flash How to handle the spare-byte area of Macronix 36nm NAND Flash Some NAND Flash come with a non-standard spare area that is larger than what is commonly used by Linux for error correction. MX30LF2G28AB and

More information

TOWERRAID TR4UTBPN. RAID MONITORING GUIDE v1.0

TOWERRAID TR4UTBPN. RAID MONITORING GUIDE v1.0 TOWERRAID TR4UTBPN RAID MONITORING GUIDE v1.0 Copyright Sans Digital 2009~2010. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed or translated into any language

More information

Getting Started with FreeRTOS BSP for i.mx 7Dual

Getting Started with FreeRTOS BSP for i.mx 7Dual Freescale Semiconductor, Inc. Document Number: FRTOS7DGSUG User s Guide Rev. 0, 08/2015 Getting Started with FreeRTOS BSP for i.mx 7Dual 1 Overview The FreeRTOS BSP for i.mx 7Dual is a Software Development

More information

AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly

AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly AVR 8-bit Microcontrollers AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly APPLICATION NOTE Table of Contents 1. What has Changed...3 1.1. What This Means and How to Adapt...4 2.

More information

NAND FLASH CONTROLLER WITH AHB INTERFACE

NAND FLASH CONTROLLER WITH AHB INTERFACE FTNANDC024 NAND FLASH CONTROLLER WITH AHB INTERFACE Block Data Sheet Rev.: 1.8 Issue Date: August 2013 REVISION HISTORY FTNANDC024 Block Data Sheet Date Rev. From To Jun. 2011 1.0 - Original Aug. 2011

More information

Configuring a Standalone VCL Environment using VMware Server 2.0

Configuring a Standalone VCL Environment using VMware Server 2.0 Configuring a Standalone VCL Environment using VMware Server 2.0 DISCLAIMER! This document provides instuctions for configuring a standalone VCL environment running on a single computer which is able to

More information

JMF61X. NAND Flash And SDRAM Support List & Performance List For F/W (091102) JMicron Technology Corporation

JMF61X. NAND Flash And SDRAM Support List & Performance List For F/W (091102) JMicron Technology Corporation NAND Flash And SDRAM Support List & Performance List For F/W (091102) Document No.: 61X-00001 / Revision: 0.0.4 / Release Date: 11-02-2009 JMicron Technology Corporation 1F, No. 13, Innovation Road 1,

More information

Overview for Axxia 5600 and Axxia 6700

Overview for Axxia 5600 and Axxia 6700 Overview for Axxia 5600 and Axxia 6700 Axxia Systems use a 3 stage boot process to initialize the system and allow an operating system to be loaded. 1. The first stage is part of the asic and loads the

More information

IBM Flex System EN port 10Gb RoCE Adapter. User s Guide

IBM Flex System EN port 10Gb RoCE Adapter. User s Guide IBM Flex System EN4132 2- port 10Gb RoCE Adapter User s Guide IBM Flex System EN4132 2- port 10Gb RoCE Adapter User s Guide Note: Before using this information and the product it supports, read the general

More information

NVIDIA Professional Application Center

NVIDIA Professional Application Center NVIDIA Professional Application Center Network Licensing Guide 5 May 2017 Document version 2.0 Copyright Information 2017 NVIDIA Corporation. All rights reserved. This document is protected under copyright

More information

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Inhaltsverzeichnis Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices... 1 1. Installation

More information

SAMA5D2 Quad SPI (QSPI) Performance. Introduction. SMART ARM-based Microprocessor APPLICATION NOTE

SAMA5D2 Quad SPI (QSPI) Performance. Introduction. SMART ARM-based Microprocessor APPLICATION NOTE SMART ARM-based Microprocessor SAMA5D2 Quad SPI (QSPI) Performance APPLICATION NOTE Introduction The Atmel SMART SAMA5D2 Series is a high-performance, powerefficient embedded MPU based on the ARM Cortex

More information

PetaLinux SDK User Guide. Firmware Upgrade Guide

PetaLinux SDK User Guide. Firmware Upgrade Guide PetaLinux SDK User Guide Notice of Disclaimer The information disclosed to you hereunder (the "Materials") is provided solely for the selection and use of Xilinx products. To the maximum extent permitted

More information

Create Test Environment

Create Test Environment Create Test Environment Describes how to set up the Trafodion test environment used by developers and testers Prerequisites Python Passwordless ssh If you already have an existing set of ssh keys If you

More information

New System Setup Guide

New System Setup Guide New System Setup Guide Logging into PBXact UC Quick Setup Wizard STEP 1: Time Zone and Email STEP 2: Extension Creation STEP 3: Extension Customization Dashboard Module Configuration Extensions IVR Inbound

More information

WLAN on DILNetPC DNP9200 External SWAP Device on DNP9200

WLAN on DILNetPC DNP9200 External SWAP Device on DNP9200 WLAN on DILNetPC DNP9200 External SWAP Device on DNP9200 Picture 1: DNP9200 + eval board SK23, external mini USB2.0 Hub with a 11Mbps WLAN USB Adapter and 1GB high speed(192x) USB SWAP device. Attention:

More information

Multifunction Serial Interface (PDL_MFS) Features. General Description. When to Use a PDL_MFS Component. Quick Start 1.0

Multifunction Serial Interface (PDL_MFS) Features. General Description. When to Use a PDL_MFS Component. Quick Start 1.0 1.0 Features Configures the Multi-Function Serial (MFS) Interface to one of the following modes: UART (Asynchronous normal serial interface) Clock synchronous serial interface (SPI and I 2 S can be supported)

More information

Bootloader commands - Openmoko

Bootloader commands - Openmoko Wiki Docs Planet Projects Lists Bootloader commands From Openmoko English عربي Български Česky Deutsch Eesti Español فارسی suomi Français Ελληνικά עברית Magyar Italiano 日本語 한국어 Nederlands Polski Português

More information

MBL Users Manual For EV44B0-II Board

MBL Users Manual For EV44B0-II Board For EV44B0-II Board MICETEK International Inc., 1/28 Glossary MBL MICETEK BOOT LOADER MICETEK International Inc., 2/28 Table of Contents Introduction... 5 Memory Map... 6 Flash Memory Map... 6 DRAM Memory

More information

DS2 Products Auto-Update Tool BSP

DS2 Products Auto-Update Tool BSP 1.01-05192015-174700 USER GUIDE DS2 Products Auto-Update Tool BSP V1.3 Copyright Copyright 2013 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted,

More information

GLOMATION. Embedded Single Board Computer GESBC-9G10 User s Manual

GLOMATION. Embedded Single Board Computer GESBC-9G10 User s Manual GLOMATION Embedded Single Board Computer GESBC-9G10 User s Manual Table of Contents Chapter 1 Introducing the GESBC-9G10 Single Board Computer... 4 GESBC-9G10 Overview... 4 Advanced Features... 4 AT91SAM9G10...

More information

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute NETAPP UNIVERSITY Clustered Data ONTAP 8.3 Update 2, IPspaces Self-paced Lab Course ID: STRSW-SPL-CDOT83UPD2 Content Version: 1.0 ATTENTION The information contained in this course is intended only for

More information

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12 Linux Computer networks - Administration 1DV202 Configuration files /etc/hosts /etc/resolv.conf /etc/network/interfaces /etc/hosts 127.0.0.1 localhost.localdomain localhost 127.0.1.1 lokal.kalmar.se lokal

More information

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host.

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host. Networking Guide for BeagleBone (Black or Green) by Brian Fraser Last update: Nov 17, 2017 This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green

More information

GM8126 SDK CHANGE LOG. Change Log Rev.: v1.0 Issue Date: Jan. 2011

GM8126 SDK CHANGE LOG. Change Log Rev.: v1.0 Issue Date: Jan. 2011 GM8126 SDK CHANGE LOG Change Log Rev.: v1.0 Issue Date: Jan. 2011 Date Rev. From To Oct. 2010 0.1 Jan. 2011 v1.0 Jun. 2011 V1.1 DOCUMENT REVISION HISTORY Copyright 2010 Grain Media, Inc. All Rights Reserved.

More information

User Guide. FA5 ICE RDI Driver. User Guide. Preliminary. Jan Version 0.1

User Guide. FA5 ICE RDI Driver. User Guide. Preliminary. Jan Version 0.1 User Guide FA5 ICE RDI Driver User Guide Preliminary Jan. 2004 Version 0.1 Revision History Date Rev. Author Reason for rewrite Original conditions New conditions Sections effected Jan. 2004 0.1 Jerry

More information

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP LPC1700 secondary USB bootloader Rev. 01 8 September 2009 Application note Document information Info Keywords Abstract Content LPC1700, Secondary USB Bootloader, ISP, IAP This application note describes

More information

MCAM335x Linux User's Guide

MCAM335x Linux User's Guide Pag. 1 of 17 MCAM335x Linux User's Guide Pag. 2 of 17 Contents MCAM335x Linux User's Guide... 1 About this Manual... 4 Installation... 4 Introduction... 4 Prerequisites... 4 Install LSP packages... 5 U

More information

IS916D NAND Flash Performance List

IS916D NAND Flash Performance List IS916D NAND Flash Performance List Ver. 1.0.1 May 8 2012 1 Copyright Innostor Technology Corporation All Rights Reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

AX88796C Product Introduction

AX88796C Product Introduction AX88796C Product Introduction Revision 1.10 Mar. 31 st, 2010 1 Revision History Revision Date Description 1.00 2010/03/10 Initial release. 1.10 2010/03/31 1. Modified some descriptions in Section 1. 2.

More information

UPGRADING ARCTIC CONTROL S FIRMWARE

UPGRADING ARCTIC CONTROL S FIRMWARE Viola Systems Ltd. tel +358-(0)201-226 226 Lemminkäisenkatu 14-18A fax +358-(0)201-226 220 FIN-20520, Turku e-mail support@violasystems.com Finland APPLICATION NOTE VA-10-1-2 UPGRADING ARCTIC CONTROL S

More information

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual Glomation Embedded Single Board Computer GESBC-3130S User s Manual Table of Contents Chapter 1 Introducing the GESBC-3130S Single Board Computer... 4 GESBC-3130S Overview... 4 Advanced Features... 4 LPC-3130...

More information

Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0

Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0 Freescale Semiconductor Application Note Document Number: AN3986 Rev. 0, 02/2010 Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0 by Multimedia Applications Division Freescale Semiconductor,

More information