;-------------------------------------------------------------------------- ; ; ; PEEDI sample target configuration file ; ; Ronetix ; ; Supported devices : LPC2929 microcontroller ; Board : Custom board with external 10MHz oscillator ; ; Revision : 1.0 ; ; Date : September 26, 2012 ; ; The file is delivered "AS IS" without warranty or condition of any ; kind, either express, implied or statutory. This includes without ; limitation any warranty or condition with respect to merchantability or ; fitness for any particular purpose, or against the infringements of ; intellectual property rights of others. ; ;-------------------------------------------------------------------------- ;-------------------------------------------------------------------------- ; The following section contains licenses that are required for PEEDI to ; operate. These licenses must be filled before using this file. ; The [LICENSE] section may contain license keys for one or more PEEDIs. ; ; Example: ; [LICENSE] ; KEY = UPDATE_24MAY2010, 1111-1111-1111-1 ; KEY = XXXXX, 2222-2222-2222-2 ; ; The [LICENSE] section may point to an external file which contains ; license keys for one or more PEEDIs. The external file must include ; the text [LICENSE] followed by all keys. ; ; Example: ; [LICENSE] ; FILE = tftp://192.168.3.1/license.txt ; or ; FILE=eep:license.txt ; or ; FILE = ftp://user:password@192.168.3.1/license.txt ; ; ; PEEDI is shipped with license keys stored in "eep:license.txt" and ; printed on a label on the bottom side of PEEDI. ; [LICENSE] FILE=eep:license.txt ;-------------------------------------------------------------------------- [DEBUGGER] PROTOCOL = gdb_remote ; gdb remote REMOTE_PORT = 2000 ; TCP/IP port [TARGET] PLATFORM = ARM ; platform is ARM [PLATFORM_ARM] JTAG_CHAIN = 4, 4 ; list of IR length of all ; TAP controller in JTAG chain JTAG_CLOCK = 1000, 10000 ; JTAG Clock in [kHz] - 10kHz ; JTAG clock for init operations and ; 1.0MHz for normal work TRST_TYPE = PUSHPULL ; type of TRST output: OPENDRAIN ; or PUSHPULL RESET_TIME = 20 ; length of RESET pulse in ms; 0 means ; no RESET CORE0 = ARM968E, 0 ; TAP is ARM968E CPU CORE0_STARTUP_MODE = RESET ; startup mode after reset: ; if RESET than no code is executed after reset ; if STOP,XX then the target executes code for XX period in ms. ; if RUN then the target executes code until stopped by the telnet "halt" command CORE0_BREAK_PATTERN = 0xDFFFDFFF ; software breakpoint pattern CORE0_BREAKMODE = soft ; breakpoint mode: ; soft - use software breakpoints ; hard - use hardware breakpoints CORE0_INIT = INIT_LPC2929 ; init section for LPC2929 board CORE0_FLASH0 = FLASH_LPC2929 ; FLASH section parameters CORE0_ENDIAN = LITTLE ; core is little endian CORE0_WORKSPACE = 0x80000000, 0xC000 ; Default path to be used if only a file name (without the full path) is ; provided to a PEEDI command or for the FILE parameter in the Flash sections ; Examples: ; In a console: ; "flash prog tftp://192.168.3.1/image.elf" ; is equal to ; "flash prog image.elf" ; ; In a Flash Profile: ; FILE="tftp://192.168.3.1/image.bin", BIN, 0 ; is equal to ; FILE="image.bin", BIN, 0 ; CORE0_PATH = "tftp://192.168.3.1" ;CORE0_PATH = "card://" CORE0_FILE = "myfile.bin", BIN, 0x40000000 ; default file [INIT_LPC2929] ; Crystal-oscillator control register mem write 0xFFFF8020 0x00000001 ; XTAL-Osc = enabled, Bypass = OFF, HF = OFF ;set sys_clk = 10Mhz ;CLK_SEL = XTAL, IDIV = 1 mem write 0xFFFF8070 0x01000000 ;PLL control register ;Disable PLL ;P23EN = OFF, PD = ON mem write 0xFFFF8028 0x00000001 ;PLL control register ;Enable PLL ;Fclkin = 10MHz, Fclkout = 160Mhz, Fcco = 320Mhz ;CLK_SEL = Crystal Osc., MSEL = 15 (M=16), AUTOBLOK = OFF, PSEL = 0 (P=2), ;DIRECT = OFF, P23EN = ON (120�,240�), BYPASS = OFF, PD = OFF mem write 0xFFFF8028 0x010F0004 wait 20 ; set sys_clk = 80Mhz mem write 0xFFFF8070 0x02000004 ; CLK_SEL = PLL, IDIV = 2 [FLASH_LPC2929] CHIP = LPC2929 ; flash chip ACCESS_METHOD = AGENT CPU_CLOCK = 160000 ; CPU clock is 160 MHz FILE = test256k.bin, 0x20000000 ; file to program AUTO_ERASE = NO ; erase before program [SERIAL] ; serial port configuration BAUD = 115200 STOP_BITS = 1 PARITY = NONE TCP_PORT = 0 ; enable CLI over RS232 ;TCP_PORT = 2023 ; enable serial over TCP/IP [TELNET] PROMPT = "LPC> " ; telnet prompt ;BACKSPACE = 127 ; comment out for autodetect [DISPLAY] BRIGHTNESS = 20 ; LED indicator brightness VOLUME = 25 ; beeper volume [ACTIONS] ; user defined scripts ;AUTORUN = 2 ; executed on every target connect 1 = erase 2 = prog 3 = dump_ram 4 = dump_flash [erase] ; erase flash flash erase [prog] ; program flash flash prog [dump_ram] ; dump part of RAM memory dump 0x80000000 0x1000 tftp://192.168.1.1/ram.bin [dump_flash] ; dump part of FLASH memory dump 0x20000000 0x1000 tftp://192.168.1.1/flash.bin