Subversion Repositories shark

Rev

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

Rev Author Line No. Line
1549 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>
1569 tullio 10
 *   Tullio Facchinetti  <tullio.facchinetti@unipv.it>
1549 pj 11
 *   (see the web pages for full authors list)
12
 *
13
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
14
 *
15
 * http://www.sssup.it
16
 * http://retis.sssup.it
17
 * http://shark.sssup.it
18
 */
19
 
20
/*
21
 * Copyright (C) 2000 Paolo Gai
22
 *
23
 * This program is free software; you can redistribute it and/or modify
24
 * it under the terms of the GNU General Public License as published by
25
 * the Free Software Foundation; either version 2 of the License, or
26
 * (at your option) any later version.
27
 *
28
 * This program is distributed in the hope that it will be useful,
29
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31
 * GNU General Public License for more details.
32
 *
33
 * You should have received a copy of the GNU General Public License
34
 * along with this program; if not, write to the Free Software
35
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
36
 *
37
 */
38
 
39
#include "kernel/kern.h"
1552 pj 40
#include "intdrive/intdrive/intdrive.h"
41
#include "edf/edf/edf.h"
42
#include "rr/rr/rr.h"
43
#include "tbs/tbs/tbs.h"
44
#include "cbs/cbs/cbs.h"
45
#include "rrsoft/rrsoft/rrsoft.h"
46
#include "dummy/dummy/dummy.h"
47
#include "sem/sem/sem.h"
48
#include "hartport/hartport/hartport.h"
1549 pj 49
 
50
/*+ sysyem tick in us +*/
51
#define TICK 0
52
 
53
#define RRTICK    5000
54
 
55
/*+ Interrupt Server +*/
56
#define INTDRIVE_Q 1000
1569 tullio 57
#define INTDRIVE_U 0.1*MAX_BANDWIDTH
1549 pj 58
#define INTDRIVE_FLAG 0
59
 
60
#include <drivers/shark_linuxc26.h>
61
#include <drivers/shark_input26.h>
62
#include <drivers/shark_keyb26.h>
63
 
64
#define FRAME_BUFFER_DEVICE 0
65
 
66
void call_shutdown_task(void *arg);
67
int device_drivers_init();
68
int device_drivers_close();
69
void set_shutdown_task();
70
TASK shutdown_task_body(void *arg);
71
 
72
PID shutdown_task_PID = -1;
73
 
74
TIME __kernel_register_levels__(void *arg)
75
{
76
  struct multiboot_info *mb = (struct multiboot_info *)arg;
1569 tullio 77
  LEVEL EDF_level;
1549 pj 78
 
1567 mauro 79
  INTDRIVE_register_level(INTDRIVE_Q, INTDRIVE_Q, INTDRIVE_U, INTDRIVE_FLAG);
1569 tullio 80
  EDF_level = EDF_register_level(EDF_ENABLE_ALL);
81
  CBS_register_level(CBS_ENABLE_ALL, EDF_level);
1549 pj 82
 
83
  dummy_register_level();
84
 
85
  SEM_register_module();
86
 
87
  return TICK;
88
}
89
 
90
TASK __init__(void *arg)
91
{
92
  struct multiboot_info *mb = (struct multiboot_info *)arg;
93
 
94
  HARTPORT_init();
95
 
96
  /* Create the shutdown task. It will be activated at RUNLEVEL
97
     SHUTDOWN */
98
  set_shutdown_task();
99
 
100
  /* Init the drivers */
101
  device_drivers_init();
102
 
103
  /* Set the shutdown task activation */
104
  sys_atrunlevel(call_shutdown_task, NULL, RUNLEVEL_SHUTDOWN);
105
 
106
  __call_main__(mb);
107
 
108
  return (void *)0;
109
}
110
 
111
void set_shutdown_task() {
112
 
113
  /* WARNING: the shutdown task is a background thread. It cannot execute
114
              if the system is overloaded */
115
  NRT_TASK_MODEL nrt;
116
 
117
  nrt_task_default_model(nrt);
118
  nrt_task_def_system(nrt);
119
 
120
  shutdown_task_PID = task_create("Shutdown Task",shutdown_task_body,&nrt,NULL);
121
  if (shutdown_task_PID == NIL) {
122
    sys_shutdown_message("Error: Cannot create shutdown task\n");
123
    exit(1);
124
  }
125
 
126
}
127
 
128
int device_drivers_init() {
129
 
130
  KEYB_PARMS kparms = BASE_KEYB;
131
 
1567 mauro 132
  LINUXC26_register_module(TRUE);
1549 pj 133
 
134
  INPUT26_init();
135
 
136
  keyb_def_ctrlC(kparms, NULL);
137
 
138
  KEYB26_init(&kparms);
139
 
140
  return 0;
141
 
142
}
143
 
144
int device_drivers_close() {
145
 
146
  KEYB26_close();
147
 
148
  INPUT26_close();
149
 
150
  return 0;
151
 
152
}
153
 
154
#define SHUTDOWN_TIMEOUT_SEC 5
155
 
156
void mytimeout(void *x)
157
{
158
  kern_printf("\nTIMEOUT!!!!!\n");
159
  sys_abort_shutdown(1);
160
}
161
 
162
void call_shutdown_task(void *arg)
163
{
164
  struct timespec t;
165
 
166
  kern_printf("\ncall_shutdown_task\n");
167
  sys_gettime(&t);
168
  t.tv_sec += SHUTDOWN_TIMEOUT_SEC;
169
 
170
  /* Emergency timeout to exit from RUNLEVEL_SHUTDOWN */
171
  kern_event_post(&t,mytimeout,(void *)0);
172
 
173
  task_activate(shutdown_task_PID);
174
}
175
 
176
TASK shutdown_task_body(void *arg) {
177
 
178
  device_drivers_close();
179
 
180
  sys_shutdown_message("-- S.Ha.R.K. Closed --\n");
181
 
182
  return NULL;
183
 
184
}