/* bspstart.c * * This set of routines starts the application. It includes application, * board, and monitor specific initialization and configuration. * The generic CPU dependent initialization has been performed * before this routine is invoked. * * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * Modifications for MBX860: * Copyright (c) 1999, National Research Council of Canada * * $Id$ */ #include #include #include #include /* * Driver configuration parameters */ uint32_t bsp_clicks_per_usec; uint32_t bsp_serial_per_sec; /* Serial clocks per second */ boolean bsp_serial_external_clock; boolean bsp_serial_xon_xoff; boolean bsp_serial_cts_rts; uint32_t bsp_serial_rate; uint32_t bsp_timer_average_overhead; /* Average overhead of timer in ticks */ uint32_t bsp_timer_least_valid; /* Least valid number from timer */ boolean bsp_timer_internal_clock; /* TRUE, when timer runs with CPU clk */ /* * Use the shared implementations of the following routines. * Look in rtems/c/src/lib/libbsp/shared/bsppost.c and * rtems/c/src/lib/libbsp/shared/bsplibc.c. */ void bsp_libc_init( void *, uint32_t, int ); /* * bsp_pretasking_hook * * Called when RTEMS initialization is complete but before interrupts and * tasking are enabled. Used to setup libc and install any BSP extensions. * * Must not use libc (to do io) from here, since drivers are not yet * initialized. * * Input parameters: NONE * * Output parameters: NONE * * Return values: NONE */ void bsp_pretasking_hook(void) { /* * These are assigned addresses in the linkcmds file for the BSP. This * approach is better than having these defined as manifest constants and * compiled into the kernel, but it is still not ideal when dealing with * multiprocessor configuration in which each board as a different memory * map. A better place for defining these symbols might be the makefiles. * Consideration should also be given to developing an approach in which * the kernel and the application can be linked and burned into ROM * independently of each other. */ extern unsigned char _HeapStart; extern unsigned char _HeapEnd; bsp_libc_init( &_HeapStart, &_HeapEnd - &_HeapStart, 0 ); #ifdef RTEMS_DEBUG rtems_debug_enable( RTEMS_DEBUG_ALL_MASK ); #endif } /* * bsp_start() * * Board-specific initialization code. Called from the generic boot_card() * function defined in rtems/c/src/lib/libbsp/shared/main.c. That function * does some of the board independent initialization. It is called from the * MBX8xx entry point _start() defined in * rtems/c/src/lib/libbsp/powerpc/mbx8xx/startup/start.S * * _start() has set up a stack, has zeroed the .bss section, has turned off * interrupts, and placed the processor in the supervisor mode. boot_card() * has left the processor in that state when bsp_start() was called. * * RUNS WITH ADDRESS TRANSLATION AND CACHING TURNED OFF! * ASSUMES THAT THE VIRTUAL ADDRESSES WILL BE IDENTICAL TO THE PHYSICAL * ADDRESSES. Software-controlled address translation would be required * otherwise. * * Input parameters: NONE * * Output parameters: NONE * * Return values: NONE */ void bsp_start(void) { extern void *_WorkspaceBase; uint32_t r1; mmu_init(); /* * Enable instruction and data caches. Do not force writethrough mode. */ #ifdef INSTRUCTION_CACHE_ENABLE r1 = M8xx_CACHE_CMD_ENABLE; _mtspr( M8xx_IC_CST, r1 ); _isync; #endif /* * Warning: EPPCBug 1.1 chokes to death if the data cache is turned on. * Set DATA_CACHE_ENABLE to zero in mbx8xx.cfg if EPPCBUG is used. */ #ifdef DATA_CACHE_ENABLE r1 = M8xx_CACHE_CMD_ENABLE; _mtspr( M8xx_DC_CST, r1 ); _isync; #endif /* * Allocate the memory for the RTEMS Work Space. This can come from * a variety of places: hard coded address, malloc'ed from outside * RTEMS world (e.g. simulator or primitive memory manager), or (as * typically done by stock BSPs) by subtracting the required amount * of work space from the last physical address on the CPU board. * * In this case, the memory is not malloc'ed. It is just * "pulled from the air". */ Configuration.work_space_start = (void *)&_WorkspaceBase; /* * initialize the device driver parameters */ bsp_clicks_per_usec = 1; /* for 4MHz extclk */ bsp_serial_per_sec = 10000000; bsp_serial_external_clock = 1; bsp_serial_xon_xoff = 0; bsp_serial_cts_rts = 1; bsp_serial_rate = 9600; #if ( defined(mbx821_001) || defined(mbx821_001b) || defined(mbx860_001b) ) bsp_clock_speed = 50000000; bsp_timer_average_overhead = 3; bsp_timer_least_valid = 3; #else bsp_clock_speed = 40000000; bsp_timer_average_overhead = 3; bsp_timer_least_valid = 3; #endif m8xx.scc2.sccm=0; m8xx.scc2p.rbase=0; m8xx.scc2p.tbase=0; m8xx_cp_execute_cmd( M8xx_CR_OP_STOP_TX | M8xx_CR_CHAN_SCC2 ); }