Subversion Repositories shark

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 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
 ------------
21
 CVS :        $Id: hartik3.c,v 1.1.1.1 2002-03-29 14:12:52 pj Exp $
22
 
23
 File:        $File$
24
 Revision:    $Revision: 1.1.1.1 $
25
 Last update: $Date: 2002-03-29 14:12:52 $
26
 ------------
27
 
28
 System initialization file
29
 
30
 The tick is set to TICK ms.
31
 
32
 This file contains the 2 functions needed to initialize the system.
33
 
34
 These functions register the following levels:
35
 
36
 an EDF (Earliest Deadline First) level
37
 a RR (Round Robin) level
38
 a CBS (Costant Bandwidth Server) level
39
 a Dummy level
40
 
41
 It can accept these task models:
42
 
43
 HARD_TASK_MODEL (wcet+mit) at level 0
44
 NRT_TASK_MODEL  at level 1
45
 SOFT_TASK_MODEL (met, period) at level 2
46
 
47
 This file is similar to the configuration of Hartik 3.3.1
48
 
49
**/
50
 
51
/*
52
 * Copyright (C) 2000 Paolo Gai
53
 *
54
 * This program is free software; you can redistribute it and/or modify
55
 * it under the terms of the GNU General Public License as published by
56
 * the Free Software Foundation; either version 2 of the License, or
57
 * (at your option) any later version.
58
 *
59
 * This program is distributed in the hope that it will be useful,
60
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
61
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
62
 * GNU General Public License for more details.
63
 *
64
 * You should have received a copy of the GNU General Public License
65
 * along with this program; if not, write to the Free Software
66
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
67
 *
68
 */
69
 
70
 
71
 
72
#include "kernel/kern.h"
73
#include "modules/edf.h"
74
#include "modules/cbs.h"
75
#include "modules/rr.h"
76
#include "modules/dummy.h"
77
 
78
#include "modules/sem.h"
79
#include "modules/hartport.h"
80
#include "modules/cabs.h"
81
 
82
#include "drivers/keyb.h"
83
 
84
 
85
/*+ sysyem tick in us +*/
86
#define TICK 1000
87
 
88
/*+ RR tick in us +*/
89
#define RRTICK 10000
90
 
91
TIME __kernel_register_levels__(void *arg)
92
{
93
  struct multiboot_info *mb = (struct multiboot_info *)arg;
94
 
95
  EDF_register_level(EDF_ENABLE_ALL);
96
  RR_register_level(RRTICK, RR_MAIN_YES, mb);
97
  CBS_register_level(CBS_ENABLE_ALL, 0);
98
  dummy_register_level();
99
 
100
  SEM_register_module();
101
 
102
  CABS_register_module();
103
 
104
  return TICK;
105
}
106
 
107
TASK __init__(void *arg)
108
{
109
  struct multiboot_info *mb = (struct multiboot_info *)arg;
110
 
111
  HARTPORT_init();
112
 
113
  KEYB_init(NULL);
114
 
115
  __call_main__(mb);
116
 
117
  return (void *)0;
118
}
119