Subversion Repositories shark

Rev

Rev 1104 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1104 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Paolo Gai           <pj@gandalf.sssup.it>
10
 *   (see the web pages for full authors list)
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/*
20
 * Copyright (C) 2000 Paolo Gai
21
 *
22
 * This program is free software; you can redistribute it and/or modify
23
 * it under the terms of the GNU General Public License as published by
24
 * the Free Software Foundation; either version 2 of the License, or
25
 * (at your option) any later version.
26
 *
27
 * This program is distributed in the hope that it will be useful,
28
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 * GNU General Public License for more details.
31
 *
32
 * You should have received a copy of the GNU General Public License
33
 * along with this program; if not, write to the Free Software
34
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
35
 *
36
 */
37
 
38
/*
39
 * CVS :        $Id: initfs.c,v 1.1 2002-11-11 07:42:42 pj Exp $
40
 *
41
 * File:        $File$
42
 * Revision:    $Revision: 1.1 $
43
 * Last update: $Date: 2002-11-11 07:42:42 $
44
 */
45
 
46
#include "kernel/kern.h"
47
#include "modules/edf.h"
48
#include "modules/rr.h"
49
#include "modules/cbs.h"
50
#include "modules/dummy.h"
51
 
52
#include "modules/sem.h"
53
#include "modules/hartport.h"
54
#include "modules/cabs.h"
55
#include "modules/pi.h"
56
#include "modules/pc.h"
57
#include "modules/srp.h"
58
#include "modules/npp.h"
59
#include "modules/nop.h"
60
#include "modules/nopm.h"
61
 
62
#include "drivers/keyb.h"
63
 
64
/*+ sysyem tick in us +*/
65
#define TICK 1000
66
 
67
/*+ RR tick in us +*/
68
#define RRTICK 10000
69
 
70
TIME __kernel_register_levels__(void *arg)
71
{
72
  struct multiboot_info *mb = (struct multiboot_info *)arg;
73
  extern int __register_sub_init_prologue(void);
74
  extern int __register_sub_init(void);
75
 
76
  __register_sub_init_prologue();
77
 
78
  EDF_register_level(EDF_ENABLE_ALL);
79
  RR_register_level(RRTICK, RR_MAIN_YES, mb);
80
  CBS_register_level(CBS_ENABLE_ALL, 0);
81
  dummy_register_level();
82
 
83
  SEM_register_module();
84
 
85
  CABS_register_module();
86
 
87
  PI_register_module();
88
  PC_register_module();
89
  NPP_register_module();
90
  SRP_register_module();
91
  NOP_register_module();
92
  NOPM_register_module();
93
 
94
  __register_sub_init();
95
 
96
  return TICK;
97
}
98
 
99
TASK __init__(void *arg)
100
{
101
  struct multiboot_info *mb = (struct multiboot_info *)arg;
102
  KEYB_PARMS    keyb = BASE_KEYB;
103
  extern int __bdev_sub_init(void);
104
  extern int __fs_sub_init(void);
105
  extern void ctrlc_exit(KEY_EVT *k);
106
 
107
  HARTPORT_init();
108
 
109
  keyb_def_ctrlC(keyb, ctrlc_exit);
110
  KEYB_init(&keyb);
111
 
112
  __bdev_sub_init();
113
  __fs_sub_init();
114
 
115
  __call_main__(mb);
116
 
117
  return (void *)0;
118
}
119