OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [m68k/] [shared/] [m68kpretaskinghook.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  This routine is an implementation of the bsp_pretasking_hook
3
 *  that can be used by all m68k BSPs following linkcmds conventions
4
 *  regarding heap, stack, and workspace allocation.
5
 *
6
 *  COPYRIGHT (c) 1989-1999.
7
 *  On-Line Applications Research Corporation (OAR).
8
 *
9
 *  The license and distribution terms for this file may be
10
 *  found in the file LICENSE in this distribution or at
11
 *  http://www.OARcorp.com/rtems/license.html.
12
 *
13
 *  $Id: m68kpretaskinghook.c,v 1.2 2001-09-27 12:00:24 chris Exp $
14
 */
15
 
16
#include <rtems.h>
17
#include <bsp.h>
18
#include <libcsupport.h>
19
 
20
/*
21
 *  Function:   bsp_pretasking_hook
22
 *  Created:    95/03/10
23
 *
24
 *  Description:
25
 *      BSP pretasking hook.  Called just before drivers are initialized.
26
 *      Used to setup libc and install any BSP extensions.
27
 *
28
 *  NOTES:
29
 *      Must not use libc (to do io) from here, since drivers are
30
 *      not yet initialized.
31
 *
32
 */
33
 
34
extern void bsp_libc_init( void *, unsigned long, int );
35
extern rtems_configuration_table  BSP_Configuration;
36
 
37
extern void          *_RamBase;
38
extern void          *_WorkspaceBase;
39
extern void          *_HeapSize;
40
 
41
 
42
unsigned long  _M68k_Ramsize;
43
 
44
void bsp_pretasking_hook(void)
45
{
46
    void         *heapStart;
47
    unsigned long heapSize = (unsigned long)&_HeapSize;
48
    unsigned long ramSpace;
49
 
50
    heapStart =  (void *)
51
       ((unsigned long)&_WorkspaceBase + BSP_Configuration.work_space_size);
52
    ramSpace = (unsigned long) &_RamBase + _M68k_Ramsize - (unsigned long) heapStart;
53
 
54
    if (heapSize == 0)
55
        heapSize = ramSpace;
56
    else if (heapSize > ramSpace)
57
        rtems_fatal_error_occurred (('H'<<24) | ('E'<<16) | ('A'<<8) | 'P');
58
 
59
    bsp_libc_init(heapStart, heapSize, 0);
60
 
61
#ifdef RTEMS_DEBUG
62
    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
63
#endif
64
 
65
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.