1 |
467 |
julius |
2011-01-08 Julius Baxter
|
2 |
|
|
* include/flash.h: Whole filed surrounded with #ifdef FLASH_BASE_ADDR
|
3 |
|
|
* include/spincursor: Deleted.
|
4 |
|
|
* include/board.h: FLASH_ORG define for board 2 removed.
|
5 |
|
|
: Changed to reference _stack_top.
|
6 |
|
|
: Unused, so removed.
|
7 |
|
|
* include/common.h: <_src_addr>: Extern define removed.
|
8 |
|
|
<_stack_top>: Extern define added.
|
9 |
|
|
* services/Makefile: Clean up commented-out things.
|
10 |
|
|
* reset.S: Removed several unused .extern.
|
11 |
|
|
<_mycrc32>: Removed.
|
12 |
|
|
<_mysize>: Ditto.
|
13 |
|
|
Removed SELF_CHECK section.
|
14 |
|
|
Shifted .org for reset section to after .section definition (bugfix.)
|
15 |
|
|
* cmds/global.c:
|
16 |
|
|
(globals_cmd): Shifted #if HELP_ENABLED to surround contents of
|
17 |
|
|
function.
|
18 |
|
|
* cmds/memory.c: Changed references from _src_addr to _stack_top.
|
19 |
|
|
Remove all (were already commented out) spincursor references.
|
20 |
|
|
* sim.cfg: Add Ethernet TAP configuration settings.
|
21 |
|
|
* common/spincursos.c: Removed.
|
22 |
|
|
* common/common.c: Change references from _src_addr to _stack_top.
|
23 |
|
|
(main): Clean up.
|
24 |
|
|
* flash.ld: <_stack_top>: Added.
|
25 |
|
|
* ram.ld: <_src_addr>: Removed.
|
26 |
|
|
<_stack_top>: Added.
|
27 |
|
|
Removed reference to .crc section.
|
28 |
|
|
* drivers/uart.c: Some formatting.
|
29 |
|
|
|
30 |
|
|
|
31 |
463 |
julius |
2011-01-07 Julius Baxter
|
32 |
|
|
* ChangeLog: Created
|
33 |
|
|
* include/board.h: IP config 3 changes
|
34 |
464 |
julius |
Remove flash defines for boards which do not have it.
|
35 |
|
|
Reorganise UART and Ethernet modules defines
|
36 |
|
|
: Changed to point to just past top of stack.
|
37 |
463 |
julius |
* reset.s: Remove flash boot options and early relocation boot code.
|
38 |
|
|
Added BSS clearing code.
|
39 |
|
|
* flash_reset.S: Added, containing all flash boot code.
|
40 |
|
|
* config.mk: Added different optimization options (all commented out)
|
41 |
|
|
* ram.ld: Add BSS symbols to help clearing.
|
42 |
464 |
julius |
* include/eth.h: : Change to 8.
|
43 |
|
|
: Change to 4.
|
44 |
|
|
: Change to 4.
|
45 |
|
|
: Added.
|
46 |
|
|
* drivers/eth.c:
|
47 |
|
|
(init_tx_bd_pool): Use updated version of ETH_DATA_BASE.
|
48 |
|
|
(init_rx_bd_pool): Ditto.
|
49 |
|
|
* include/common.h: <_src_addr>: Added as extern (symbol from linker
|
50 |
|
|
script)
|
51 |
|
|
* cmds/load.h: Added eth.h include.
|
52 |
|
|
: Defined in one place now, set as end of SDRAM
|
53 |
|
|
minus the size of the relocate and boot program.
|
54 |
|
|
A few flash functions surrounded with #ifdef FLASH_BASE_ADDR so they
|
55 |
|
|
are compiled in only when the flash stuff is in use.
|
56 |
|
|
(init_load): Whole CFG_IN_FLASH section removed. Tboot default location
|
57 |
|
|
now set as end of ethernet buffer space.
|
58 |
|
|
* cmds/memory.c:
|
59 |
|
|
(testram): Warnings added if memory test will clobber stack. Start
|
60 |
|
|
location automatically changed to end of stack, and test will abort
|
61 |
|
|
if start location is before end location.
|
62 |
|
|
|