blob: 7240648796b5e48d80b1e1cbec906ee80f7a77c0 [file] [log] [blame]
TsiChungLiewaa5f1f92008-01-14 17:23:08 -06001Freescale MCF5373EVB ColdFire Development Board
2================================================
3
4TsiChung Liew(Tsi-Chung.Liew@freescale.com)
5Created 11/08/07
6===========================================
7
8
9Changed files:
10==============
11
12- board/freescale/m5373evb/m5373evb.c Dram setup
13- board/freescale/m5373evb/mii.c Mii access
14- board/freescale/m5373evb/Makefile Makefile
15- board/freescale/m5373evb/config.mk config make
16- board/freescale/m5373evb/u-boot.lds Linker description
17
Peter Tysera4145532010-04-12 22:28:12 -050018- arch/m68k/cpu/mcf532x/cpu.c cpu specific code
19- arch/m68k/cpu/mcf532x/cpu_init.c FBCS, Mux pins, icache and RTC extra regs
20- arch/m68k/cpu/mcf532x/interrupts.c cpu specific interrupt support
21- arch/m68k/cpu/mcf532x/speed.c system, pci, flexbus, and cpu clock
22- arch/m68k/cpu/mcf532x/Makefile Makefile
23- arch/m68k/cpu/mcf532x/config.mk config make
24- arch/m68k/cpu/mcf532x/start.S start up assembly code
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060025
Patrick Delaunayadd83912020-02-28 15:18:14 +010026- board/freescale/m5373evb/README This readme file
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060027
28- drivers/net/mcffec.c ColdFire common FEC driver
29- drivers/serial/mcfuart.c ColdFire common UART driver
30- drivers/rtc/mcfrtc.c Realtime clock Driver
31
32- include/asm-m68k/bitops.h Bit operation function export
33- include/asm-m68k/byteorder.h Byte order functions
34- include/asm-m68k/fec.h FEC structure and definition
35- include/asm-m68k/fsl_i2c.h I2C structure and definition
36- include/asm-m68k/global_data.h Global data structure
37- include/asm-m68k/immap.h ColdFire specific header file and driver macros
38- include/asm-m68k/immap_532x.h mcf532x specific header file
39- include/asm-m68k/io.h io functions
40- include/asm-m68k/m532x.h mcf532x specific header file
41- include/asm-m68k/posix_types.h Posix
42- include/asm-m68k/processor.h header file
43- include/asm-m68k/ptrace.h Exception structure
44- include/asm-m68k/rtc.h Realtime clock header file
45- include/asm-m68k/string.h String function export
46- include/asm-m68k/timer.h Timer structure and definition
47- include/asm-m68k/types.h Data types definition
48- include/asm-m68k/uart.h Uart structure and definition
Bin Menga1875592016-02-05 19:30:11 -080049- include/asm-m68k/u-boot.h U-Boot structure
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060050
51- include/configs/M5373EVB.h Board specific configuration file
52
Peter Tyserea0364f2010-04-12 22:28:04 -050053- arch/m68k/lib/board.c board init function
54- arch/m68k/lib/cache.c
55- arch/m68k/lib/interrupts Coldfire common interrupt functions
56- arch/m68k/lib/m68k_linux.c
57- arch/m68k/lib/time.c Timer functions (Dma timer and PIT)
58- arch/m68k/lib/traps.c Exception init code
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060059
601 MCF5373 specific Options/Settings
61====================================
621.1 pre-loader is no longer suppoer in thie coldfire family
63
641.2 Configuration settings for M5373EVB Development Board
65CONFIG_MCF532x -- define for all MCF532x CPUs
66CONFIG_M5373 -- define for all Freescale MCF5373 CPUs
67CONFIG_M5373EVB -- define for M5373EVB board
68
69CONFIG_MCFUART -- define to use common CF Uart driver
Tom Rini65cc0e22022-11-16 13:10:41 -050070CFG_SYS_UART_PORT -- define UART port number, start with 0, 1 and 2
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060071CONFIG_BAUDRATE -- define UART baudrate
72
73CONFIG_MCFRTC -- define to use common CF RTC driver
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074CONFIG_SYS_MCFRTC_BASE -- provide base address for RTC in immap.h
75CONFIG_SYS_RTC_OSCILLATOR -- define RTC clock frequency
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060076RTC_DEBUG -- define to show RTC debug message
Bin Menga1875592016-02-05 19:30:11 -080077CONFIG_CMD_DATE -- enable to use date feature in U-Boot
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060078
79CONFIG_MCFFEC -- define to use common CF FEC driver
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060080CONFIG_MII -- enable to use MII driver
81CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery
83CONFIG_SYS_RX_ETH_BUFFER -- Set FEC Receive buffer
84CONFIG_SYS_FAULT_ECHO_LINK_DOWN--
85CONFIG_SYS_FEC0_PINMUX -- Set FEC0 Pin configuration
86CONFIG_SYS_FEC0_MIIBASE -- Set FEC0 MII base register
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060087MCFFEC_TOUT_LOOP -- set FEC timeout loop
88
Marek Vasut35d48ea2023-03-23 01:20:39 +010089CONFIG_MCFTMR -- define to use DMA timer
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060090
Heiko Schocher00f792e2012-10-24 13:48:22 +020091CONFIG_SYS_I2C_FSL -- define to use FSL common I2C driver
Heiko Schocherea818db2013-01-29 08:53:15 +010092CONFIG_SYS_I2C_SOFT -- define for I2C bit-banged
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093CONFIG_SYS_I2C_SPEED -- define for I2C speed
94CONFIG_SYS_I2C_SLAVE -- define for I2C slave address
95CONFIG_SYS_I2C_OFFSET -- define for I2C base address offset
96CONFIG_SYS_IMMR -- define for MBAR offset
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060097
Tom Rini65cc0e22022-11-16 13:10:41 -050098CFG_SYS_MBAR -- define MBAR offset
TsiChungLiewaa5f1f92008-01-14 17:23:08 -060099
100CONFIG_MONITOR_IS_IN_RAM -- Not support
101
Tom Rini65cc0e22022-11-16 13:10:41 -0500102CFG_SYS_INIT_RAM_ADDR -- defines the base address of the MCF5373 internal SRAM
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600103
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104CONFIG_SYS_CSn_BASE -- defines the Chip Select Base register
105CONFIG_SYS_CSn_MASK -- defines the Chip Select Mask register
106CONFIG_SYS_CSn_CTRL -- defines the Chip Select Control register
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600107
Tom Riniaa6e94d2022-11-16 13:10:37 -0500108CFG_SYS_SDRAM_BASE -- defines the DRAM Base
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600109
1102. MEMORY MAP UNDER U-BOOT AND LINUX KERNEL
111===========================================
1122.1. System memory map:
113 Flash: 0x00000000-0x3FFFFFFF (1024MB)
114 DDR: 0x40000000-0x7FFFFFFF (1024MB)
115 SRAM: 0x80000000-0x8FFFFFFF (256MB)
116 IP: 0xF0000000-0xFFFFFFFF (256MB)
117
Bin Menga1875592016-02-05 19:30:11 -08001182.2. For the initial bringup, we adopted a consistent memory scheme between U-Boot and
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600119 linux kernel, you can customize it based on your system requirements:
120 Flash0: 0x00000000-0x00FFFFFF (16MB)
121
122 DDR: 0x40000000-0x4FFFFFFF (256MB)
123 SRAM: 0x80000000-0x80007FFF (32KB)
124 IP: 0xFC000000-0xFC0FFFFF (64KB)
125
1263. COMPILATION
127==============
1283.1 To create U-Boot the gcc-4.1-xx compiler set (ColdFire ELF or
129uClinux version) from codesourcery.com was used. Download it from:
130http://www.codesourcery.com/gnu_toolchains/coldfire/download.html
131
1323.2 Compilation
133 export CROSS_COMPILE=cross-compile-prefix
134 cd u-boot-1.x.x
135 make distclean
136 make M5373EVB_config
137 make
138
1394. SCREEN DUMP
140==============
1414.1 M5373EVB Development board
142 (NOTE: May not show exactly the same)
143
144U-Boot 1.3.0 (Nov 8 2007 - 12:44:08)
145
146CPU: Freescale MCF5373 (Mask:65 Version:1)
147 CPU CLK 240 Mhz BUS CLK 80 Mhz
148Board: Freescale FireEngine 5373 EVB
149I2C: ready
150DRAM: 32 MB
151FLASH: 2 MB
152In: serial
153Out: serial
154Err: serial
155NAND: 16 MiB
156Net: FEC0
157-> print
158bootdelay=1
159baudrate=115200
160ethaddr=00:e0:0c:bc:e5:60
161hostname=M5373EVB
162netdev=eth0
163loadaddr=40010000
164load=tftp ${loadaddr) ${u-boot}
165upd=run load; run prog
166prog=prot off 0 2ffff;era 0 2ffff;cp.b ${loadaddr} 0 ${filesize};save
167ethact=FEC0
168u-boot=u-boot.bin
169gatewayip=192.168.1.1
170netmask=255.255.255.0
171ipaddr=192.168.1.3
172serverip=192.168.1.2
173stdin=serial
174stdout=serial
175stderr=serial
176mem=261632k
177
178Environment size: 401/8188 bytes
179-> bdinfo
180memstart = 0x40000000
181memsize = 0x02000000
182flashstart = 0x00000000
183flashsize = 0x00200000
184flashoffset = 0x00000000
185sramstart = 0x80000000
186sramsize = 0x00008000
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100187mbar = 0xFC000000
188busfreq = 80 MHz
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600189ethaddr = 00:E0:0C:BC:E5:60
190ip_addr = 192.168.1.3
191baudrate = 115200 bps
192->
193-> help
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100194? - alias for 'help'
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100195base - print or set address offset
196bdinfo - print Board Info structure
197boot - boot default, i.e., run 'bootcmd'
198bootd - boot default, i.e., run 'bootcmd'
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600199bootelf - Boot from an ELF image in memory
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100200bootm - boot application image from memory
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600201bootp - boot image via network using BootP/TFTP protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100202bootvx - Boot vxWorks from an ELF image
203cmp - memory compare
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600204coninfo - print console devices and information
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100205cp - memory copy
206crc32 - checksum calculation
207date - get/set/reset date & time
208dcache - enable or disable data cache
209echo - echo args to console
210erase - erase FLASH memory
211flinfo - print FLASH memory information
212go - start application at address 'addr'
213help - print online help
Peter Tyser0f89c542009-04-18 22:34:03 -0500214i2c - I2C sub-system
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100215icache - enable or disable instruction cache
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100216iminfo - print header information for application image
217imls - list all images found in flash
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600218itest - return true/false on integer compare
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100219loadb - load binary file over serial line (kermit mode)
220loads - load S-Record file over serial line
221loady - load binary file over serial line (ymodem mode)
222loop - infinite loop on address range
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600223ls - list files in a directory (default /)
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100224md - memory display
225mii - MII utility commands
226mm - memory modify (auto-incrementing)
227mtest - simple RAM test
228mw - memory write (fill)
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600229nand - NAND sub-system
230nboot - boot from NAND device
231nfs - boot image via network using NFS protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100232nm - memory modify (constant address)
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600233ping - send ICMP ECHO_REQUEST to network host
234printenv- print environment variables
235protect - enable or disable FLASH write protection
236rarpboot- boot image via network using RARP/TFTP protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100237reset - Perform RESET of the CPU
238run - run commands in an environment variable
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600239saveenv - save environment variables to persistent storage
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100240setenv - set environment variables
241sleep - delay execution for some time
Peter Tyser3202d332009-09-16 21:38:10 -0500242source - run script from memory
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600243tftpboot- boot image via network using TFTP protocol
244version - print monitor version
245-> tftp 0x40800000 uImage
246Using FEC0 device
247TFTP from server 192.168.1.3; our IP address is 192.168.1.3 Filename 'uImage'.
248Load address: 0x40800000
249Loading: #################################################################
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100250 #################################################################
251 ##########
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600252done
253Bytes transferred = 2053270 (1f5496 hex)
254-> bootm 0x40800000
255## Booting image at 40800000 ...
256 Image Name: Linux Kernel Image
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100257 Created: 2007-11-07 20:33:08 UTC
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600258 Image Type: M68K Linux Kernel Image (gzip compressed)
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100259 Data Size: 2053206 Bytes = 2 MB
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600260 Load Address: 40020000
261 Entry Point: 40020000
262 Verifying Checksum ... OK
263 Uncompressing Kernel Image ... OK
264Linux version 2.6.22-uc1 (mattw@loa) (gcc version 4.2.1 (Sourcery G++ Lite 4.2-7
265
266
267uClinux/COLDFIRE(m537x)
268COLDFIRE port done by Greg Ungerer, gerg@snapgear.com Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne Built 1 zonelists. Total pages: 8128 Kernel command line: rootfstype=romfs PID hash table entries: 128 (order: 7, 512 bytes) Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) Memory available: 28092k/32768k RAM, (1788k kernel code, 244k data) Mount-cache hash table entries: 512
269NET: Registered protocol family 16
270USB-MCF537x: (HOST module) EHCI device is registered
271USB-MCF537x: (OTG module) EHCI device is registered
272USB-MCF537x: (OTG module) UDC device is registered
273usbcore: registered new interface driver usbfs
274usbcore: registered new interface driver hub
275usbcore: registered new device driver usb
276NET: Registered protocol family 2
277IP route cache hash table entries: 1024 (order: 0, 4096 bytes) TCP established hash table entries: 1024 (order: 1, 8192 bytes) TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
278TCP: Hash tables configured (established 1024 bind 1024) TCP reno registered
Albert ARIBAUDfa82f872011-08-04 18:45:45 +0200279JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600280io scheduler noop registered
281io scheduler cfq registered (default)
282ColdFire internal UART serial driver version 1.00 ttyS0 at 0xfc060000 (irq = 90) is a builtin ColdFire UART
283ttyS1 at 0xfc064000 (irq = 91) is a builtin ColdFire UART
284ttyS2 at 0xfc068000 (irq = 92) is a builtin ColdFire UART RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
285loop: module loaded
286nbd: registered device at major 43
287usbcore: registered new interface driver ub FEC ENET Version 0.2
288fec: PHY @ 0x1, ID 0x20005c90 -- DP83848
289eth0: ethernet 00:e0:0c:bc:e5:60
290uclinux[mtd]: RAM probe address=0x4021c22c size=0x22b000 Creating 1 MTD partitions on "RAM":
2910x00000000-0x0022b000 : "ROMfs"
292uclinux[mtd]: set ROMfs to be root filesystem NAND device: Manufacturer ID: 0x20, Chip ID: 0x73 (ST Micro NAND 16MiB 3,3V 8-b) Scanning device for bad blocks Creating 1 MTD partitions on "NAND 16MiB 3,3V 8-bit":
2930x00000000-0x01000000 : "M53xx flash partition 1"
294QSPI: spi->max_speed_hz 300000
295QSPI: Baud set to 255
296SPI: Coldfire master initialized
297M537x - Disable UART1 when using Audio
298udc: Freescale MCF53xx UDC driver version 27 October 2006 init
299udc: MCF53xx USB Device is found. ID=0x5 Rev=0x41 i2c /dev entries driver
300usbcore: registered new interface driver usbhid
301drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver TCP cubic registered
302NET: Registered protocol family 1
303NET: Registered protocol family 17
304VFS: Mounted root (romfs filesystem) readonly.
305Freeing unused kernel memory: 64k freed (0x401f5000 - 0x40204000) init started: BusyBox v1.00 (2007.11.07-19:57+0000) multi-call binary?Setting e Mounting filesystems
306mount: Mounting devpts on /dev/pts failed: No such device
307mount: Mounting usbfs on /proc/bus/usb failed: No such file or directory Starting syslogd and klogd Setting up networking on loopback device:
308Setting up networking on eth0:
309info, udhcpc (v0.9.9-pre) started
310eth0: config: auto-negotiation on, 100FDX, 100HDX, 10FDX, 10HDX.
311debug, Sending discover...
312debug, Sending discover...
313debug, Sending select for 172.27.0.130...
314info, Lease of 172.27.0.130 obtained, lease time 43200 deleting routers
315route: SIOC[ADD|DEL]RT: No such process
316adding dns 172.27.0.1
317Starting the boa webserver:
318Setting time from ntp server: ntp.cs.strath.ac.uk
319ntp.cs.strath.ac.uk: Unknown host
320
321
322BusyBox v1.00 (2007.11.07-19:57+0000) Built-in shell (msh) Enter 'help' for a list of built-in commands.
323
324#