Contiki 3.x
energest.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007, Swedish Institute of Computer Science.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  */
32 
33 /**
34  * \file
35  * Header file for the energy estimation mechanism
36  * \author
37  * Adam Dunkels <adam@sics.se>
38  */
39 
40 #ifndef ENERGEST_H_
41 #define ENERGEST_H_
42 
43 #include "sys/rtimer.h"
44 
45 typedef struct {
46  /* unsigned long cumulative[2];*/
47  unsigned long current;
48 } energest_t;
49 
50 enum energest_type {
51  ENERGEST_TYPE_CPU,
52  ENERGEST_TYPE_LPM,
53  ENERGEST_TYPE_IRQ,
54  ENERGEST_TYPE_LED_GREEN,
55  ENERGEST_TYPE_LED_YELLOW,
56  ENERGEST_TYPE_LED_RED,
57  ENERGEST_TYPE_TRANSMIT,
58  ENERGEST_TYPE_LISTEN,
59 
60  ENERGEST_TYPE_FLASH_READ,
61  ENERGEST_TYPE_FLASH_WRITE,
62 
63  ENERGEST_TYPE_SENSORS,
64 
65  ENERGEST_TYPE_SERIAL,
66 
67  ENERGEST_TYPE_MAX
68 };
69 
70 void energest_init(void);
71 unsigned long energest_type_time(int type);
72 #ifdef ENERGEST_CONF_LEVELDEVICE_LEVELS
73 unsigned long energest_leveldevice_leveltime(int powerlevel);
74 #endif
75 void energest_type_set(int type, unsigned long value);
76 void energest_flush(void);
77 
78 #if ENERGEST_CONF_ON
79 /*extern int energest_total_count;*/
80 extern energest_t energest_total_time[ENERGEST_TYPE_MAX];
81 extern rtimer_clock_t energest_current_time[ENERGEST_TYPE_MAX];
82 extern unsigned char energest_current_mode[ENERGEST_TYPE_MAX];
83 
84 #ifdef ENERGEST_CONF_LEVELDEVICE_LEVELS
85 extern energest_t energest_leveldevice_current_leveltime[ENERGEST_CONF_LEVELDEVICE_LEVELS];
86 #endif
87 
88 #define ENERGEST_ON(type) do { \
89  /*++energest_total_count;*/ \
90  energest_current_time[type] = RTIMER_NOW(); \
91  energest_current_mode[type] = 1; \
92  } while(0)
93 #ifdef __AVR__
94 /* Handle 16 bit rtimer wraparound */
95 #define ENERGEST_OFF(type) if(energest_current_mode[type] != 0) do { \
96  if (RTIMER_NOW() < energest_current_time[type]) energest_total_time[type].current += RTIMER_ARCH_SECOND; \
97  energest_total_time[type].current += (rtimer_clock_t)(RTIMER_NOW() - \
98  energest_current_time[type]); \
99  energest_current_mode[type] = 0; \
100  } while(0)
101 
102 #define ENERGEST_OFF_LEVEL(type,level) do { \
103  if (RTIMER_NOW() < energest_current_time[type]) energest_total_time[type].current += RTIMER_ARCH_SECOND; \
104  energest_leveldevice_current_leveltime[level].current += (rtimer_clock_t)(RTIMER_NOW() - \
105  energest_current_time[type]); \
106  energest_current_mode[type] = 0; \
107  } while(0)
108 
109 #define ENERGEST_SWITCH(type_off, type_on) do { \
110  rtimer_clock_t energest_local_variable_now = RTIMER_NOW(); \
111  if(energest_current_mode[type_off] != 0) { \
112  if (energest_local_variable_now < energest_current_time[type_off]) { \
113  energest_total_time[type_off].current += RTIMER_ARCH_SECOND; \
114  } \
115  energest_total_time[type_off].current += (rtimer_clock_t)(energest_local_variable_now - \
116  energest_current_time[type_off]); \
117  energest_current_mode[type_off] = 0; \
118  } \
119  energest_current_time[type_on] = energest_local_variable_now; \
120  energest_current_mode[type_on] = 1; \
121  } while(0)
122 
123 #else
124 #define ENERGEST_OFF(type) if(energest_current_mode[type] != 0) do { \
125  energest_total_time[type].current += (rtimer_clock_t)(RTIMER_NOW() - \
126  energest_current_time[type]); \
127  energest_current_mode[type] = 0; \
128  } while(0)
129 
130 #define ENERGEST_OFF_LEVEL(type,level) do { \
131  energest_leveldevice_current_leveltime[level].current += (rtimer_clock_t)(RTIMER_NOW() - \
132  energest_current_time[type]); \
133  energest_current_mode[type] = 0; \
134  } while(0)
135 
136 #define ENERGEST_SWITCH(type_off, type_on) do { \
137  rtimer_clock_t energest_local_variable_now = RTIMER_NOW(); \
138  if(energest_current_mode[type_off] != 0) { \
139  energest_total_time[type_off].current += (rtimer_clock_t)(energest_local_variable_now - \
140  energest_current_time[type_off]); \
141  energest_current_mode[type_off] = 0; \
142  } \
143  energest_current_time[type_on] = energest_local_variable_now; \
144  energest_current_mode[type_on] = 1; \
145  } while(0)
146 #endif
147 
148 #else /* ENERGEST_CONF_ON */
149 #define ENERGEST_ON(type) do { } while(0)
150 #define ENERGEST_OFF(type) do { } while(0)
151 #define ENERGEST_OFF_LEVEL(type,level) do { } while(0)
152 #define ENERGEST_SWITCH(type_off, type_on) do { } while(0)
153 #endif /* ENERGEST_CONF_ON */
154 
155 #endif /* ENERGEST_H_ */
Header file for the real-time timer module.