pico]OS  1.1.0
port.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2012, Dennis Kuschel.
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  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote
15  * products derived from this software without specific prior written
16  * permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
19  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28  * OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  */
31 
32 
43 #ifndef _PORT_H
44 #define _PORT_H
45 
46 
47 /*---------------------------------------------------------------------------
48  * ARCHITECTURE / CPU SPECIFIC SETTINGS
49  *-------------------------------------------------------------------------*/
50 
71 #define MVAR_t char
72 
80 #define MVAR_BITS 8 /* = (sizeof(MVAR_t) * 8) */
81 
89 #define MPTR_t long
90 
99 #define POSCFG_ALIGNMENT 2
100 
109 #define POSCFG_ISR_INTERRUPTABLE 0
110 
118 #define POSCFG_POWER_WAKEUP 1
119 
144 #define POSCFG_TASKSTACKTYPE 0
145 
151 #define POSCFG_CALLINITARCH 1
152 
160 #define POSCFG_PORTMUTEX 0
161 
168 #define POSCFG_DYNAMIC_MEMORY 0
169 
181 #define POSCFG_DYNAMIC_REFILL 0
182 
190 #define POS_MEM_ALLOC(bytes) nosMemAlloc(bytes)
191 
196 /*---------------------------------------------------------------------------
197  * LOCKING (DISABLE INTERRUPTS IN CRITICAL SECTIONS)
198  *-------------------------------------------------------------------------*/
199 
247 #define POSCFG_LOCK_USEFLAGS 0
248 
257 #define POSCFG_LOCK_FLAGSTYPE register VAR_t
258 
266 #ifdef GCC
267 #define POS_SCHED_LOCK asm volatile("pushf\n" "cli\n"::)
268 #else
269 #define POS_SCHED_LOCK asm { PUSHF; CLI }
270 #endif
271 
276 #ifdef GCC
277 #define POS_SCHED_UNLOCK asm volatile("popf\n"::)
278 #else
279 #define POS_SCHED_UNLOCK asm POPF
280 #endif
281 
296 #define POS_IRQ_DISABLE_ALL POS_SCHED_LOCK
297 
302 #define POS_IRQ_ENABLE_ALL POS_SCHED_UNLOCK
303 
308 /*---------------------------------------------------------------------------
309  * FINDBIT - DEFINITIONS FOR GENERIC FILE fbit_gen.c
310  *-------------------------------------------------------------------------*/
311 
344 #define POSCFG_FBIT_USE_LUTABLE 0
345 
351 #define POSCFG_FBIT_BITSHIFT 1
352 
357 /*---------------------------------------------------------------------------
358  * PORT DEPENDENT NANO LAYER CONFIGURATION
359  *-------------------------------------------------------------------------*/
360 
373 #define NOSCFG_STACK_GROWS_UP 0
374 
379 #define NOSCFG_DEFAULT_STACKSIZE 2048
380 
384 #define NOSCFG_CONOUT_HANDSHAKE 0
385 
393 #define NOSCFG_CONOUT_FIFOSIZE 256
394 
399 /*---------------------------------------------------------------------------
400  * USER DEFINED CONTENT OF TASK ENVIRONMENT
401  *-------------------------------------------------------------------------*/
402 
403 #if DOX!=0
404 
409 #define POS_USERTASKDATA void *stackptr;
410 #else
411 
412 /* Here is an example for different memory handling types:
413  */
414 
415 #if POSCFG_TASKSTACKTYPE == 0
416 
417 #define POS_USERTASKDATA \
418  void *stackptr;
419 
420 #elif POSCFG_TASKSTACKTYPE == 1
421 
422 #define POS_USERTASKDATA \
423  void *stackptr; \
424  void *stackroot;
425 
426 #elif POSCFG_TASKSTACKTYPE == 2
427 
428 #define FIXED_STACK_SIZE 0x0600
429 #define POS_USERTASKDATA \
430  void *stackptr; \
431  unsigned short stack[FIXED_STACK_SIZE];
432 
433 #endif
434 
435 #endif /* DOX */
436 
437 #endif /* _PORT_H */