Rev 1567 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1190 | giacomo | 1 | /* |
2 | * Project: S.Ha.R.K. |
||
3 | * |
||
1463 | giacomo | 4 | * Coordinators: Giorgio Buttazzo <giorgio@sssup.it> |
1190 | giacomo | 5 | * |
1569 | tullio | 6 | * Authors : |
7 | * Mauro Marinoni <mauro.marinoni@unipv.it> |
||
8 | * Tullio Facchinetti <tullio.facchinetti@unipv.it> |
||
1463 | giacomo | 9 | * (see authors.txt for full list of hartik's authors) |
1190 | giacomo | 10 | * |
11 | * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy) |
||
12 | * |
||
13 | * http://www.sssup.it |
||
14 | * http://retis.sssup.it |
||
1463 | giacomo | 15 | * http://hartik.sssup.it |
1190 | giacomo | 16 | */ |
17 | |||
18 | /* |
||
19 | * This program is free software; you can redistribute it and/or modify |
||
20 | * it under the terms of the GNU General Public License as published by |
||
21 | * the Free Software Foundation; either version 2 of the License, or |
||
22 | * (at your option) any later version. |
||
23 | * |
||
24 | * This program is distributed in the hope that it will be useful, |
||
25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
27 | * GNU General Public License for more details. |
||
28 | * |
||
29 | * You should have received a copy of the GNU General Public License |
||
30 | * along with this program; if not, write to the Free Software |
||
31 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
32 | */ |
||
33 | |||
1463 | giacomo | 34 | |
35 | #include <kernel/kern.h> |
||
36 | |||
1552 | pj | 37 | #include "edf/edf/edf.h" |
38 | #include "cbs/cbs/cbs.h" |
||
39 | #include "rr/rr/rr.h" |
||
40 | #include "dummy/dummy/dummy.h" |
||
41 | #include "intdrive/intdrive/intdrive.h" |
||
1463 | giacomo | 42 | |
1552 | pj | 43 | #include "sem/sem/sem.h" |
44 | #include "hartport/hartport/hartport.h" |
||
1190 | giacomo | 45 | |
1463 | giacomo | 46 | #include <drivers/shark_linuxc26.h> |
47 | #include <drivers/shark_pci26.h> |
||
48 | #include <drivers/shark_input26.h> |
||
49 | #include <drivers/shark_keyb26.h> |
||
50 | |||
1190 | giacomo | 51 | /*+ sysyem tick in us +*/ |
1463 | giacomo | 52 | #define TICK 0 |
1190 | giacomo | 53 | |
54 | /*+ RR tick in us +*/ |
||
55 | #define RRTICK 10000 |
||
56 | |||
1463 | giacomo | 57 | /*+ Interrupt Server +*/ |
58 | #define INTDRIVE_Q 1000 |
||
1569 | tullio | 59 | #define INTDRIVE_U 0.1*MAX_BANDWIDTH |
1463 | giacomo | 60 | #define INTDRIVE_FLAG 0 |
61 | |||
62 | void call_shutdown_task(void *arg); |
||
63 | int device_drivers_init(); |
||
64 | int device_drivers_close(); |
||
65 | void set_shutdown_task(); |
||
66 | TASK shutdown_task_body(void *arg); |
||
67 | |||
68 | PID shutdown_task_PID = 1; |
||
69 | |||
1190 | giacomo | 70 | TIME __kernel_register_levels__(void *arg) |
71 | { |
||
1463 | giacomo | 72 | struct multiboot_info *mb = (struct multiboot_info *)arg; |
1569 | tullio | 73 | LEVEL EDF_level; |
1190 | giacomo | 74 | |
1567 | mauro | 75 | INTDRIVE_register_level(INTDRIVE_Q, INTDRIVE_Q, INTDRIVE_U, INTDRIVE_FLAG); |
1569 | tullio | 76 | EDF_level = EDF_register_level(EDF_ENABLE_ALL); |
77 | CBS_register_level(CBS_ENABLE_ALL, EDF_level); |
||
1463 | giacomo | 78 | RR_register_level(RRTICK, RR_MAIN_YES, mb); |
79 | dummy_register_level(); |
||
1190 | giacomo | 80 | |
1463 | giacomo | 81 | SEM_register_module(); |
1190 | giacomo | 82 | |
1463 | giacomo | 83 | return TICK; |
1190 | giacomo | 84 | } |
85 | |||
1463 | giacomo | 86 | int device_drivers_close() { |
87 | |||
88 | KEYB26_close(); |
||
89 | INPUT26_close(); |
||
90 | |||
91 | return 0; |
||
92 | |||
93 | } |
||
94 | |||
95 | int device_drivers_init() { |
||
96 | |||
97 | KEYB_PARMS kparms = BASE_KEYB; |
||
98 | |||
1567 | mauro | 99 | LINUXC26_register_module(TRUE); |
1463 | giacomo | 100 | PCI26_init(); |
101 | INPUT26_init(); |
||
102 | |||
103 | /*keyb_def_map(kparms, KEYMAP_IT);*/ |
||
104 | keyb_def_ctrlC(kparms, NULL); |
||
105 | KEYB26_init(&kparms); |
||
106 | |||
107 | return 0; |
||
108 | } |
||
109 | |||
110 | TASK shutdown_task_body(void *arg) { |
||
111 | |||
112 | device_drivers_close(); |
||
113 | sys_shutdown_message("-- S.Ha.R.K. Closed --\n"); |
||
114 | |||
115 | return NULL; |
||
116 | } |
||
117 | |||
118 | #define SHUTDOWN_TIMEOUT_SEC 3 |
||
119 | |||
120 | void set_shutdown_task() { |
||
121 | |||
122 | NRT_TASK_MODEL nrt; |
||
123 | |||
124 | nrt_task_default_model(nrt); |
||
125 | nrt_task_def_system(nrt); |
||
126 | |||
127 | shutdown_task_PID = task_create("Shutdown Task", shutdown_task_body, &nrt, NULL); |
||
128 | if (shutdown_task_PID == NIL) { |
||
129 | sys_shutdown_message("Error: Cannot create shutdown task\n"); |
||
1550 | pj | 130 | exit(1); |
1463 | giacomo | 131 | } |
132 | |||
133 | } |
||
134 | |||
135 | void call_shutdown_task(void *arg) { |
||
136 | |||
137 | struct timespec t; |
||
138 | |||
139 | sys_gettime(&t); |
||
140 | t.tv_sec += SHUTDOWN_TIMEOUT_SEC; |
||
141 | |||
142 | /* Emergency timeout to exit from RUNLEVEL_SHUTDOWN */ |
||
143 | kern_event_post(&t,(void *)((void *)sys_abort_shutdown),(void *)0); |
||
144 | |||
145 | task_activate(shutdown_task_PID); |
||
146 | } |
||
147 | |||
1190 | giacomo | 148 | TASK __init__(void *arg) |
149 | { |
||
1463 | giacomo | 150 | struct multiboot_info *mb = (struct multiboot_info *)arg; |
1190 | giacomo | 151 | |
1463 | giacomo | 152 | HARTPORT_init(); |
1190 | giacomo | 153 | |
1463 | giacomo | 154 | set_shutdown_task(); |
1190 | giacomo | 155 | |
1463 | giacomo | 156 | device_drivers_init(); |
1190 | giacomo | 157 | |
1463 | giacomo | 158 | sys_atrunlevel(call_shutdown_task, NULL, RUNLEVEL_SHUTDOWN); |
1190 | giacomo | 159 | |
1463 | giacomo | 160 | __call_main__(mb); |
161 | |||
162 | return (void *)0; |
||
1190 | giacomo | 163 | } |