Blame view

doc/README.mpc8313erdb 2.77 KB
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
1
2
3
4
  Freescale MPC8313ERDB Board
  -----------------------------------------
  
  1.	Board Switches and Jumpers
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
5
  	S3 is used to set CONFIG_SYS_RESET_SOURCE.
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
6
7
  
  	To boot the image at 0xFE000000 in NOR flash, use these DIP
be5a71902   Dave Liu   mpc83xx: clean up...
8
  	switch settings for S3 S4:
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
9
10
11
12
13
14
15
  
  	+------+	+------+
  	|      |	| **** |
  	| **** |	|      |
  	+------+ ON	+------+ ON
  	  4321		  4321
  	(where the '*' indicates the position of the tab of the switch.)
5cdade07b   Scott Wood   mpc8313erdb: Docu...
16
17
18
19
20
21
22
23
24
25
26
  	To boot the image at the beginning of NAND flash, use these
  	DIP switch settings for S3 S4:
  
  	+------+	+------+
  	| *    |	|  *** |
  	|  *** |	| *    |
  	+------+ ON	+------+ ON
  	  4321		  4321
  	(where the '*' indicates the position of the tab of the switch.)
  
  	When booting from NAND, use u-boot-nand.bin, not u-boot.bin.
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
27
28
29
30
31
32
33
  2.	Memory Map
  	The memory map looks like this:
  
  	0x0000_0000	0x07ff_ffff	DDR		 128M
  	0x8000_0000	0x8fff_ffff	PCI MEM		 256M
  	0x9000_0000	0x9fff_ffff	PCI_MMIO	 256M
  	0xe000_0000	0xe00f_ffff	IMMR		 1M
53677ef18   Wolfgang Denk   Big white-space c...
34
  	0xe200_0000	0xe20f_ffff	PCI IO		 16M
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
35
36
37
38
39
  	0xe280_0000	0xe280_7fff	NAND FLASH (CS1) 32K
  	0xf000_0000	0xf001_ffff	VSC7385 (CS2)	 128K
  	0xfa00_0000	0xfa00_7fff	Board Status/	 32K
  					LED Control (CS3)
  	0xfe00_0000	0xfe7f_ffff	NOR FLASH (CS0)	 8M
5cdade07b   Scott Wood   mpc8313erdb: Docu...
40
41
  	When booting from NAND, NAND flash is CS0 and NOR flash
  	is CS1.
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  3.	Definitions
  
  3.1	Explanation of NEW definitions in:
  
  	include/configs/MPC8313ERDB.h
  
  	CONFIG_MPC83xx		MPC83xx family
  	CONFIG_MPC831x		MPC831x specific
  	CONFIG_MPC8313ERDB	MPC8313ERDB board specific
  
  4.	Compilation
  
  	Assuming you're using BASH (or similar) as your shell:
  
  	export CROSS_COMPILE=your-cross-compiler-prefix-
  	make distclean
5cdade07b   Scott Wood   mpc8313erdb: Docu...
58
59
60
61
62
63
  	make MPC8313ERDB_XXX_config
  	(where XXX is:
  	   33 - 33 MHz oscillator, boot from NOR flash
  	   66 - 66 MHz oscillator, boot from NOR flash
  	   NAND_33 - 33 MHz oscillator, boot from NAND flash
  	   NAND_66 - 66 MHz oscillator, boot from NAND flash)
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
64
65
66
67
68
  	make
  
  5.	Downloading and Flashing Images
  
  5.1	Reflash U-boot Image using U-boot
5cdade07b   Scott Wood   mpc8313erdb: Docu...
69
  	NOR flash:
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
70
71
72
73
74
75
76
77
  	=>run tftpflash
  
  	You may want to try
  	=>tftpboot $loadaddr $uboot
  	first, to make sure that the TFTP load will succeed before it
  	goes ahead and wipes out your current firmware.  And of course,
  	have an alternate means of programming the flash available
  	if the new u-boot doesn't boot.
5cdade07b   Scott Wood   mpc8313erdb: Docu...
78
79
80
81
82
83
84
85
  	NAND flash:
  
  	=>tftpboot $loadaddr <filename>
  	=>nand erase 0 0x80000
  	=>nand write $loadaddr 0 0x80000
  
  	...where 0x80000 is the filesize rounded up to
  	the next 0x20000 increment.
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  5.2	Downloading and Booting Linux Kernel
  
  	Ensure that all networking-related environment variables are set
  	properly (including ipaddr, serverip, gatewayip (if needed),
  	netmask, ethaddr, eth1addr, rootpath (if using NFS root),
  	fdtfile, and bootfile).
  
  	Then, do one of the following, depending on whether you
  	want an NFS root or a ramdisk root:
  
  	=>run nfsboot
  	or
  	=>run ramboot
  
  6	Notes
96b8a0543   Scott Wood   mpc83xx: Add MPC8...
101
  	The console baudrate for MPC8313ERDB is 115200bps.