Rev 1384 | Rev 1552 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1158 | 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 | ------------ |
||
1550 | pj | 21 | CVS : $Id: rrn.c,v 1.6 2005-01-08 14:35:17 pj Exp $ |
1158 | pj | 22 | |
23 | File: $File$ |
||
1550 | pj | 24 | Revision: $Revision: 1.6 $ |
25 | Last update: $Date: 2005-01-08 14:35:17 $ |
||
1158 | pj | 26 | ------------ |
27 | **/ |
||
28 | |||
29 | /* |
||
30 | * Copyright (C) 2003 Paolo Gai |
||
31 | * |
||
32 | * This program is free software; you can redistribute it and/or modify |
||
33 | * it under the terms of the GNU General Public License as published by |
||
34 | * the Free Software Foundation; either version 2 of the License, or |
||
35 | * (at your option) any later version. |
||
36 | * |
||
37 | * This program is distributed in the hope that it will be useful, |
||
38 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
39 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
40 | * GNU General Public License for more details. |
||
41 | * |
||
42 | * You should have received a copy of the GNU General Public License |
||
43 | * along with this program; if not, write to the Free Software |
||
44 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
45 | * |
||
46 | */ |
||
47 | |||
48 | #include "kernel/kern.h" |
||
1380 | giacomo | 49 | #include "modules/intdrive.h" |
1158 | pj | 50 | #include "modules/edf.h" |
51 | #include "modules/rr.h" |
||
52 | #include "modules/rrsoft.h" |
||
53 | #include "modules/dummy.h" |
||
54 | |||
55 | #include "modules/sem.h" |
||
56 | #include "modules/hartport.h" |
||
57 | #include "modules/cabs.h" |
||
58 | |||
1380 | giacomo | 59 | #include "modules/nop.h" |
60 | |||
1381 | giacomo | 61 | #include <drivers/shark_linuxc26.h> |
62 | #include <drivers/shark_pci26.h> |
||
63 | #include <drivers/shark_input26.h> |
||
64 | #include <drivers/shark_keyb26.h> |
||
65 | #include <drivers/shark_fb26.h> |
||
66 | |||
67 | #define FRAME_BUFFER_DEVICE 0 |
||
68 | |||
1158 | pj | 69 | /*+ sysyem tick in us +*/ |
70 | #define TICK 0 |
||
71 | |||
72 | /*+ RR tick in us +*/ |
||
73 | #define RRTICK 2000 |
||
74 | |||
1379 | giacomo | 75 | /*+ Interrupt Server +*/ |
76 | #define INTDRIVE_Q 1000 |
||
77 | #define INTDRIVE_T 10000 |
||
78 | #define INTDRIVE_FLAG 0 |
||
79 | |||
1384 | giacomo | 80 | void call_shutdown_task(void *arg); |
81 | int device_drivers_init(); |
||
82 | int device_drivers_close(); |
||
83 | void set_shutdown_task(); |
||
84 | TASK shutdown_task_body(void *arg); |
||
85 | |||
1381 | giacomo | 86 | PID shutdown_task_PID = -1; |
87 | |||
1158 | pj | 88 | TIME __kernel_register_levels__(void *arg) |
89 | { |
||
90 | struct multiboot_info *mb = (struct multiboot_info *)arg; |
||
91 | |||
1379 | giacomo | 92 | INTDRIVE_register_level(INTDRIVE_Q,INTDRIVE_T,INTDRIVE_FLAG); |
1158 | pj | 93 | RR_register_level(RRTICK, RR_MAIN_NO, mb); // this module remains empty!!! |
94 | RRSOFT_register_level(RRTICK, RR_MAIN_NO, mb, RRSOFT_ONLY_HARD|RRSOFT_ONLY_SOFT); |
||
95 | RR_register_level(RRTICK, RR_MAIN_YES, mb); |
||
96 | dummy_register_level(); |
||
97 | |||
98 | SEM_register_module(); |
||
99 | |||
100 | CABS_register_module(); |
||
101 | |||
1380 | giacomo | 102 | NOP_register_module(); |
103 | |||
1158 | pj | 104 | return TICK; |
105 | } |
||
106 | |||
1384 | giacomo | 107 | TASK __init__(void *arg) |
108 | { |
||
109 | struct multiboot_info *mb = (struct multiboot_info *)arg; |
||
110 | |||
111 | HARTPORT_init(); |
||
112 | |||
113 | set_shutdown_task(); |
||
114 | |||
115 | device_drivers_init(); |
||
116 | |||
117 | sys_atrunlevel(call_shutdown_task, NULL, RUNLEVEL_SHUTDOWN); |
||
118 | |||
119 | __call_main__(mb); |
||
120 | |||
121 | return (void *)0; |
||
1381 | giacomo | 122 | } |
123 | |||
1384 | giacomo | 124 | void set_shutdown_task() { |
125 | |||
126 | NRT_TASK_MODEL nrt; |
||
127 | |||
128 | nrt_task_default_model(nrt); |
||
129 | nrt_task_def_system(nrt); |
||
130 | |||
131 | shutdown_task_PID = task_create("Shutdown Task",shutdown_task_body,&nrt,NULL); |
||
132 | if (shutdown_task_PID == NIL) { |
||
133 | sys_shutdown_message("Error: Cannot create shutdown task\n"); |
||
1550 | pj | 134 | exit(1); |
1384 | giacomo | 135 | } |
136 | |||
137 | } |
||
138 | |||
1381 | giacomo | 139 | int device_drivers_init() { |
140 | |||
141 | int res; |
||
142 | KEYB_PARMS kparms = BASE_KEYB; |
||
143 | |||
144 | LINUXC26_register_module(); |
||
145 | |||
146 | PCI26_init(); |
||
147 | |||
148 | INPUT26_init(); |
||
149 | |||
150 | keyb_def_ctrlC(kparms, NULL); |
||
151 | |||
152 | KEYB26_init(&kparms); |
||
153 | |||
154 | FB26_init(); |
||
155 | |||
156 | res = FB26_open(FRAME_BUFFER_DEVICE); |
||
157 | if (res) { |
||
158 | cprintf("Error: Cannot open graphical mode\n"); |
||
159 | KEYB26_close(); |
||
160 | INPUT26_close(); |
||
1550 | pj | 161 | exit(1); |
1381 | giacomo | 162 | } |
163 | |||
164 | FB26_use_grx(FRAME_BUFFER_DEVICE); |
||
165 | |||
166 | FB26_setmode(FRAME_BUFFER_DEVICE,"640x480-16"); |
||
167 | |||
168 | return 0; |
||
169 | |||
170 | } |
||
171 | |||
1384 | giacomo | 172 | int device_drivers_close() { |
173 | |||
174 | FB26_close(FRAME_BUFFER_DEVICE); |
||
175 | |||
176 | KEYB26_close(); |
||
177 | |||
178 | INPUT26_close(); |
||
179 | |||
180 | return 0; |
||
181 | |||
1381 | giacomo | 182 | } |
183 | |||
1384 | giacomo | 184 | #define SHUTDOWN_TIMEOUT_SEC 3 |
1381 | giacomo | 185 | |
1384 | giacomo | 186 | void call_shutdown_task(void *arg) |
187 | { |
||
188 | struct timespec t; |
||
1381 | giacomo | 189 | |
1384 | giacomo | 190 | sys_gettime(&t); |
191 | t.tv_sec += SHUTDOWN_TIMEOUT_SEC; |
||
1381 | giacomo | 192 | |
1384 | giacomo | 193 | /* Emergency timeout to exit from RUNLEVEL_SHUTDOWN */ |
194 | kern_event_post(&t,(void *)((void *)sys_abort_shutdown),(void *)0); |
||
1381 | giacomo | 195 | |
196 | task_activate(shutdown_task_PID); |
||
197 | } |
||
198 | |||
1384 | giacomo | 199 | TASK shutdown_task_body(void *arg) { |
1158 | pj | 200 | |
1384 | giacomo | 201 | device_drivers_close(); |
1158 | pj | 202 | |
1384 | giacomo | 203 | sys_shutdown_message("-- S.Ha.R.K. Closed --\n"); |
1381 | giacomo | 204 | |
1384 | giacomo | 205 | return NULL; |
1381 | giacomo | 206 | |
1158 | pj | 207 | } |
1380 | giacomo | 208 | |
209 | void app_mutex_init(mutex_t *m) |
||
210 | { |
||
211 | NOP_mutexattr_t attr; |
||
212 | |||
213 | NOP_mutexattr_default(attr); |
||
214 | |||
215 | mutex_init(m, &attr); |
||
216 | } |
||
217 |