Subversion Repositories shark

Rev

Rev 2 | Details | Compare with Previous | 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
 *   Massimiliano Giorgi <massy@gandalf.sssup.it>
11
 *   Luca Abeni          <luca@gandalf.sssup.it>
12
 *   (see the web pages for full authors list)
13
 *
14
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
15
 *
16
 * http://www.sssup.it
17
 * http://retis.sssup.it
18
 * http://shark.sssup.it
19
 */
20
 
21
/*
22
 * Copyright (C) 2000 Massimiliano Giorgi
23
 *
24
 * This program is free software; you can redistribute it and/or modify
25
 * it under the terms of the GNU General Public License as published by
26
 * the Free Software Foundation; either version 2 of the License, or
27
 * (at your option) any later version.
28
 *
29
 * This program is distributed in the hope that it will be useful,
30
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32
 * GNU General Public License for more details.
33
 *
34
 * You should have received a copy of the GNU General Public License
35
 * along with this program; if not, write to the Free Software
36
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
37
 *
38
 */
39
 
40
/*
41
 * CVS :        $Id: bd_edf.c,v 1.1.1.1 2002-03-29 14:12:52 pj Exp $
42
 *
43
 * File:        $File$
44
 * Revision:    $Revision: 1.1.1.1 $
45
 * Last update: $Date: 2002-03-29 14:12:52 $
46
 */
47
 
48
#include <modules/bd_edf.h>
49
 
50
#include <ll/ll.h>
51
#include <ll/string.h>
52
#include <ll/stdio.h>
53
#include <kernel/const.h>
54
#include <modules/codes.h>
55
#include <sys/types.h>
56
#include <kernel/var.h>
57
#include <kernel/func.h>
58
#include <kernel/assert.h>
59
 
60
static int mylevel=-1;
61
 
62
typedef struct TAGbd_edf_resource_des
63
{
64
  resource_des rd;
65
  TIME dl[MAX_PROC];
66
} bd_edf_resource_des;
67
 
68
static int res_level_accept_resource_model(RLEVEL l, RES_MODEL *r)
69
{
70
  assertk(mylevel==l);
71
  if (r->rclass==BDEDF_RCLASS||r->rclass==(BDEDF_RCLASS|l))
72
    return 0;
73
  else
74
    return -1;
75
}
76
 
77
static void res_register(RLEVEL l, PID p, RES_MODEL *r)
78
{
79
  bd_edf_resource_des *m=(bd_edf_resource_des*)(resource_table[l]);
80
  BDEDF_RES_MODEL *rm=(BDEDF_RES_MODEL*)r;
81
  assertk(mylevel==l);
82
  m->dl[p]=rm->dl;
83
}
84
 
85
static void res_detach(RLEVEL l, PID p)
86
{
87
  bd_edf_resource_des *m=(bd_edf_resource_des*)(resource_table[l]);
88
  assertk(mylevel==l);
89
  m->dl[p]=0;
90
}
91
 
92
static void res_resource_status(void)
93
{}
94
 
95
void BD_EDF_register_module(void)
96
{
97
  RLEVEL l;
98
  bd_edf_resource_des *m;
99
  int i;
100
 
101
  /* request an entry in the level_table */
102
  l=resource_alloc_descriptor();
103
 
104
  /* alloc the space needed for the EDF_level_des */
105
  m=(bd_edf_resource_des*)kern_alloc(sizeof(bd_edf_resource_des));
106
 
107
  /* update the level_table with the new entry */
108
  resource_table[l]=(resource_des*)m;
109
 
110
  /* fill the resource_des descriptor */
111
  strcpy(m->rd.res_name,BDEDF_MODULENAME);
112
  m->rd.res_code=BDEDF_MODULE_CODE;
113
  m->rd.res_version=BDEDF_MODULE_VERSION;
114
  m->rd.rtype=DEFAULT_RTYPE;
115
  m->rd.resource_status=res_resource_status;
116
  m->rd.level_accept_resource_model=res_level_accept_resource_model;
117
  m->rd.res_register=res_register;
118
  m->rd.res_detach=res_detach;
119
 
120
  for (i=0;i<MAX_PROC;i++) m->dl[i]=MAX_TIME;
121
 
122
  assertk(mylevel==-1);
123
  mylevel=l;
124
}
125
 
126
TIME bd_edf_getdl(void)
127
{
128
  bd_edf_resource_des *m;
129
  if (mylevel==-1) return MAX_TIME;
130
  m=(bd_edf_resource_des*)(resource_table[mylevel]);
131
  if (m->dl[exec_shadow]==MAX_TIME) return MAX_TIME;
132
  return m->dl[exec_shadow]+sys_gettime(NULL);
133
}