blob: 6b4fbe5c25d30b60ae9e99d6f7b4d3d8dadf8a78 [file] [log] [blame]
TsiChungLiew57a12722008-01-15 14:15:46 -06001Freescale MCF5475EVB ColdFire Development Board
2================================================
3
4TsiChung Liew(Tsi-Chung.Liew@freescale.com)
5Created Jan 08, 2008
6===========================================
7
8
9Changed files:
10==============
11
12- board/freescale/m547xevb/m547xevb.c Dram setup, IDE pre init, and PCI init
13- board/freescale/m547xevb/mii.c MII init
14- board/freescale/m547xevb/Makefile Makefile
15- board/freescale/m547xevb/config.mk config make
16- board/freescale/m547xevb/u-boot.lds Linker description
17
Peter Tysera4145532010-04-12 22:28:12 -050018- arch/m68k/cpu/mcf547x_8x/cpu.c cpu specific code
19- arch/m68k/cpu/mcf547x_8x/cpu_init.c Flexbus ChipSelect, Mux pins setup, icache and RTC extra regs
20- arch/m68k/cpu/mcf547x_8x/interrupts.c cpu specific interrupt support
21- arch/m68k/cpu/mcf547x_8x/slicetimer.c Timer support
22- arch/m68k/cpu/mcf547x_8x/speed.c system, pci, flexbus, and cpu clock
23- arch/m68k/cpu/mcf547x_8x/Makefile Makefile
24- arch/m68k/cpu/mcf547x_8x/config.mk config make
25- arch/m68k/cpu/mcf547x_8x/start.S start up assembly code
TsiChungLiew57a12722008-01-15 14:15:46 -060026
Patrick Delaunayadd83912020-02-28 15:18:14 +010027- board/freescale/m547xevb/README This readme file
TsiChungLiew57a12722008-01-15 14:15:46 -060028
29- drivers/dma/MCD_dmaApi.c DMA API functions
30- drivers/dma/MCD_tasks.c DMA Tasks
31- drivers/dma/MCD_tasksInit.c DMA Tasks Init
32- drivers/net/fsl_mcdmafec.c ColdFire common DMA FEC driver
33- drivers/serial/mcfuart.c ColdFire common UART driver
34
35- include/MCD_dma.h DMA header file
36- include/MCD_progCheck.h DMA header file
37- include/MCD_tasksInit.h DMA header file
38- include/asm-m68k/bitops.h Bit operation function export
39- include/asm-m68k/byteorder.h Byte order functions
40- include/asm-m68k/errno.h Error Number definition
41- include/asm-m68k/fec.h FEC structure and definition
42- include/asm-m68k/fsl_i2c.h I2C structure and definition
43- include/asm-m68k/fsl_mcddmafec.h DMA FEC structure and definition
44- include/asm-m68k/global_data.h Global data structure
45- include/asm-m68k/immap.h ColdFire specific header file and driver macros
46- include/asm-m68k/immap_547x_8x.h mcf547x_8x specific header file
47- include/asm-m68k/io.h io functions
48- include/asm-m68k/m547x_8x.h mcf547x_8x specific header file
49- include/asm-m68k/posix_types.h Posix
50- include/asm-m68k/processor.h header file
51- include/asm-m68k/ptrace.h Exception structure
52- include/asm-m68k/rtc.h Realtime clock header file
53- include/asm-m68k/string.h String function export
54- include/asm-m68k/timer.h Timer structure and definition
55- include/asm-m68k/types.h Data types definition
56- include/asm-m68k/uart.h Uart structure and definition
Bin Menga1875592016-02-05 19:30:11 -080057- include/asm-m68k/u-boot.h U-Boot structure
TsiChungLiew57a12722008-01-15 14:15:46 -060058
59- include/configs/M5475EVB.h Board specific configuration file
60
Peter Tyserea0364f2010-04-12 22:28:04 -050061- arch/m68k/lib/board.c board init function
62- arch/m68k/lib/cache.c
63- arch/m68k/lib/interrupts Coldfire common interrupt functions
64- arch/m68k/lib/m68k_linux.c
65- arch/m68k/lib/traps.c Exception init code
TsiChungLiew57a12722008-01-15 14:15:46 -060066
671 MCF547x specific Options/Settings
68====================================
691.1 pre-loader is no longer suppoer in thie coldfire family
70
711.2 Configuration settings for M5475EVB Development Board
72CONFIG_MCF547x_8x -- define for all MCF547x_8x CPUs
73CONFIG_M547x -- define for all Freescale MCF547x CPUs
74CONFIG_M5475 -- define for M5475EVB board
75
76CONFIG_MCFUART -- define to use common CF Uart driver
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077CONFIG_SYS_UART_PORT -- define UART port number, start with 0, 1 and 2
TsiChungLiew57a12722008-01-15 14:15:46 -060078CONFIG_BAUDRATE -- define UART baudrate
79
80CONFIG_FSLDMAFEC -- define to use common dma FEC driver
TsiChungLiew57a12722008-01-15 14:15:46 -060081CONFIG_MII -- enable to use MII driver
82CONFIG_CF_DOMII -- enable to use MII feature in cmd_mii.c
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020083CONFIG_SYS_DISCOVER_PHY -- enable PHY discovery
84CONFIG_SYS_RX_ETH_BUFFER -- Set FEC Receive buffer
85CONFIG_SYS_FAULT_ECHO_LINK_DOWN--
86CONFIG_SYS_FEC0_PINMUX -- Set FEC0 Pin configuration
87CONFIG_SYS_FEC1_PINMUX -- Set FEC1 Pin configuration
88CONFIG_SYS_FEC0_MIIBASE -- Set FEC0 MII base register
89CONFIG_SYS_FEC1_MIIBASE -- Set FEC0 MII base register
TsiChungLiew57a12722008-01-15 14:15:46 -060090MCFFEC_TOUT_LOOP -- set FEC timeout loop
Bin Menga1875592016-02-05 19:30:11 -080091CONFIG_HAS_ETH1 -- define to enable second FEC in U-Boot
TsiChungLiew57a12722008-01-15 14:15:46 -060092
93CONFIG_CMD_USB -- enable USB commands
94CONFIG_USB_OHCI_NEW -- enable USB OHCI driver
95CONFIG_USB_STORAGE -- enable USB Storage device
96CONFIG_DOS_PARTITION -- enable DOS read/write
97
98CONFIG_SLTTMR -- define to use SLT timer
99
Heiko Schocher00f792e2012-10-24 13:48:22 +0200100CONFIG_SYS_I2C_FSL -- define to use FSL common I2C driver
Heiko Schocherea818db2013-01-29 08:53:15 +0100101CONFIG_SYS_I2C_SOFT -- define for I2C bit-banged
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102CONFIG_SYS_I2C_SPEED -- define for I2C speed
103CONFIG_SYS_I2C_SLAVE -- define for I2C slave address
104CONFIG_SYS_I2C_OFFSET -- define for I2C base address offset
105CONFIG_SYS_IMMR -- define for MBAR offset
TsiChungLiew57a12722008-01-15 14:15:46 -0600106
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100107CONFIG_PCI -- define for PCI support
108CONFIG_PCI_PNP -- define for Plug n play support
TsiChungLiew57a12722008-01-15 14:15:46 -0600109CONFIG_SKIPPCI_HOSTBRIDGE -- SKIP PCI Host bridge
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110CONFIG_SYS_PCI_MEM_BUS -- PCI memory logical offset
111CONFIG_SYS_PCI_MEM_PHYS -- PCI memory physical offset
112CONFIG_SYS_PCI_MEM_SIZE -- PCI memory size
113CONFIG_SYS_PCI_IO_BUS -- PCI IO logical offset
114CONFIG_SYS_PCI_IO_PHYS -- PCI IO physical offset
115CONFIG_SYS_PCI_IO_SIZE -- PCI IO size
116CONFIG_SYS_PCI_CFG_BUS -- PCI Configuration logical offset
117CONFIG_SYS_PCI_CFG_PHYS -- PCI Configuration physical offset
118CONFIG_SYS_PCI_CFG_SIZE -- PCI Configuration size
TsiChungLiew57a12722008-01-15 14:15:46 -0600119
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120CONFIG_SYS_MBAR -- define MBAR offset
TsiChungLiew57a12722008-01-15 14:15:46 -0600121
122CONFIG_MONITOR_IS_IN_RAM -- Not support
123
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200124CONFIG_SYS_INIT_RAM_ADDR -- defines the base address of the MCF547x internal SRAM
TsiChungLiew57a12722008-01-15 14:15:46 -0600125
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126CONFIG_SYS_CSn_BASE -- defines the Chip Select Base register
127CONFIG_SYS_CSn_MASK -- defines the Chip Select Mask register
128CONFIG_SYS_CSn_CTRL -- defines the Chip Select Control register
TsiChungLiew57a12722008-01-15 14:15:46 -0600129
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200130CONFIG_SYS_SDRAM_BASE -- defines the DRAM Base
TsiChungLiew57a12722008-01-15 14:15:46 -0600131
1322. MEMORY MAP UNDER U-BOOT AND LINUX KERNEL
133===========================================
1342.1. System memory map:
135 Flash: 0xFF800000-0xFFFFFFFF (8MB)
136 DDR: 0x00000000-0x3FFFFFFF (1024MB)
137 SRAM: 0xF2000000-0xF2000FFF (4KB)
138 PCI: 0x70000000-0x8FFFFFFF (512MB)
139 IP: 0xF0000000-0xFFFFFFFF (256MB)
140
1413. COMPILATION
142==============
1433.1 To create U-Boot the gcc-4.x compiler set (ColdFire ELF or uclinux
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100144 version) from codesourcery.com was used. Download it from:
TsiChungLiew57a12722008-01-15 14:15:46 -0600145 http://www.codesourcery.com/gnu_toolchains/coldfire/download.html
146
1473.2 Compilation
148 export CROSS_COMPILE=cross-compile-prefix
149 cd u-boot-1.x.x
150 make distclean
151 make M5475AFE_config, or - boot 2MB, RAM 64MB
152 make M5475BFE_config, or - boot 2MB, code 16MB, RAM 64MB
153 make M5475CFE_config, or - boot 2MB, code 16MB, Video, USB, RAM 64MB
154 make M5475DFE_config, or - boot 2MB, USB, RAM 64MB
155 make M5475EFE_config, or - boot 2MB, Video, USB, RAM 64MB
156 make M5475FFE_config, or - boot 2MB, code 32MB, Video, USB, RAM 128MB
157 make M5475GFE_config, or - boot 2MB, RAM 64MB
158 make
159
1605. SCREEN DUMP
161==============
1625.1
163
164U-Boot 1.3.1 (Jan 8 2008 - 12:47:44)
165
166CPU: Freescale MCF5475
167 CPU CLK 266 Mhz BUS CLK 133 Mhz
168Board: Freescale FireEngine 5475 EVB
169I2C: ready
170DRAM: 64 MB
171FLASH: 18 MB
172In: serial
173Out: serial
174Err: serial
175Net: FEC0, FEC1
176-> pri
177bootdelay=1
178baudrate=115200
179ethaddr=00:e0:0c:bc:e5:60
180eth1addr=00:e0:0c:bc:e5:61
181ipaddr=192.162.1.2
182serverip=192.162.1.1
183gatewayip=192.162.1.1
184netmask=255.255.255.0
185hostname=M547xEVB
186netdev=eth0
187loadaddr=10000
188u-boot=u-boot.bin
189load=tftp ${loadaddr) ${u-boot}
190upd=run load; run prog
191prog=prot off bank 1;era ff800000 ff82ffff;cp.b ${loadaddr} ff800000 ${filesize};save
192stdin=serial
193stdout=serial
194stderr=serial
195ethact=FEC0
196mem=65024k
197
198Environment size: 433/8188 bytes
199-> bdin
200memstart = 0x00000000
201memsize = 0x04000000
202flashstart = 0xFF800000
203flashsize = 0x01200000
204flashoffset = 0x00000000
205sramstart = 0xF2000000
206sramsize = 0x00001000
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100207mbar = 0xF0000000
TsiChungLiew57a12722008-01-15 14:15:46 -0600208busfreq = 133.333 MHz
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100209pcifreq = 0 MHz
TsiChungLiew57a12722008-01-15 14:15:46 -0600210ethaddr = 00:E0:0C:BC:E5:60
211eth1addr = 00:E0:0C:BC:E5:61
212ip_addr = 192.162.1.2
213baudrate = 115200 bps
214-> ?
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100215? - alias for 'help'
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100216base - print or set address offset
217bdinfo - print Board Info structure
218boot - boot default, i.e., run 'bootcmd'
219bootd - boot default, i.e., run 'bootcmd'
TsiChungLiew57a12722008-01-15 14:15:46 -0600220bootelf - Boot from an ELF image in memory
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100221bootm - boot application image from memory
TsiChungLiew57a12722008-01-15 14:15:46 -0600222bootp - boot image via network using BootP/TFTP protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100223bootvx - Boot vxWorks from an ELF image
224cmp - memory compare
TsiChungLiew57a12722008-01-15 14:15:46 -0600225coninfo - print console devices and information
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100226cp - memory copy
227crc32 - checksum calculation
228dcache - enable or disable data cache
229echo - echo args to console
230erase - erase FLASH memory
231flinfo - print FLASH memory information
232go - start application at address 'addr'
233help - print online help
Peter Tyser0f89c542009-04-18 22:34:03 -0500234i2c - I2C sub-system
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100235icache - enable or disable instruction cache
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100236iminfo - print header information for application image
237imls - list all images found in flash
TsiChungLiew57a12722008-01-15 14:15:46 -0600238itest - return true/false on integer compare
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100239loadb - load binary file over serial line (kermit mode)
240loads - load S-Record file over serial line
241loady - load binary file over serial line (ymodem mode)
242loop - infinite loop on address range
243md - memory display
244mii - MII utility commands
245mm - memory modify (auto-incrementing)
246mtest - simple RAM test
247mw - memory write (fill)
TsiChungLiew57a12722008-01-15 14:15:46 -0600248nfs - boot image via network using NFS protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100249nm - memory modify (constant address)
250pci - list and access PCI Configuration Space
TsiChungLiew57a12722008-01-15 14:15:46 -0600251ping - send ICMP ECHO_REQUEST to network host
252printenv- print environment variables
253protect - enable or disable FLASH write protection
254rarpboot- boot image via network using RARP/TFTP protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100255reset - Perform RESET of the CPU
256run - run commands in an environment variable
TsiChungLiew57a12722008-01-15 14:15:46 -0600257saveenv - save environment variables to persistent storage
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100258setenv - set environment variables
259sleep - delay execution for some time
Peter Tyser3202d332009-09-16 21:38:10 -0500260source - run script from memory
TsiChungLiew57a12722008-01-15 14:15:46 -0600261tftpboot- boot image via network using TFTP protocol
Wolfgang Denk865f0f92008-01-23 14:31:17 +0100262usb - USB sub-system
TsiChungLiew57a12722008-01-15 14:15:46 -0600263usbboot - boot from USB device
264version - print monitor version
265-> usb start
266(Re)start USB...
267USB: OHCI pci controller (1131, 1561) found @(0:17:0)
268OHCI regs address 0x80000000
269scanning bus for devices... 2 USB Device(s) found
270 scanning bus for storage devices... 1 Storage Device(s) found
271->