Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

The IGEP X-loader

267 bytes added, 19:51, 27 February 2011
board_init
This function it's defined per board and it's the responsable to initialize the board.
Initialization GPMC for access to LAN9221 Ethernet controller and initialization of malloc &amp; free algorithms (from here all code can use malloc &amp; free calls).<pre> 895 int board_init(void) 896 { 897 // Setup gpmc &lt;-&gt; Ethernet 898 setup_net_chip(is_cpu_family()); 899 // Setup Malloc memory 900 mem_malloc_init(XLOADER_MALLOC_IPTR, XLOADER_MALLOC_SIZE); 901 902 return 0; 903 }</pre><br>
=== <br> <br> 4 Settings &amp; Configuration: ===