2015-05-23 14:35:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010, Stefan Lankes, RWTH Aachen University
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __STDDEF_H__
|
|
|
|
#define __STDDEF_H__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Stefan Lankes
|
|
|
|
* @file include/hermit/stddef.h
|
|
|
|
* @brief Definition of basic data types
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <hermit/config.h>
|
|
|
|
#include <asm/stddef.h>
|
2015-05-27 00:04:01 +02:00
|
|
|
#include <asm/irqflags.h>
|
2015-05-23 14:35:45 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-04-18 00:26:38 +02:00
|
|
|
// size of the whole application
|
2018-03-23 04:04:44 -04:00
|
|
|
extern size_t image_size;
|
2017-04-18 00:26:38 +02:00
|
|
|
|
2016-11-30 00:11:58 +01:00
|
|
|
#define TIMER_FREQ 100 /* in HZ */
|
|
|
|
#define CLOCK_TICK_RATE 1193182 /* 8254 chip's internal oscillator frequency */
|
|
|
|
#define CACHE_LINE 64
|
2018-03-23 04:04:44 -04:00
|
|
|
#define HEAP_START (PAGE_2M_CEIL(((size_t)&kernel_start + image_size + (16ULL << 10))))
|
2018-05-15 00:54:13 +02:00
|
|
|
#define HEAP_SIZE (1ULL << 37)
|
2016-11-30 15:17:11 +01:00
|
|
|
#define KMSG_SIZE 0x1000
|
2016-11-30 00:11:58 +01:00
|
|
|
#define INT_SYSCALL 0x80
|
|
|
|
#define MAILBOX_SIZE 128
|
|
|
|
//#define WITH_PCI_IDS
|
|
|
|
|
|
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
|
|
|
|
|
|
#define DYNAMIC_TICKS
|
|
|
|
|
2018-03-23 04:04:44 -04:00
|
|
|
#define UHYVE_PORT_WRITE 0x400
|
|
|
|
#define UHYVE_PORT_OPEN 0x440
|
|
|
|
#define UHYVE_PORT_CLOSE 0x480
|
|
|
|
#define UHYVE_PORT_READ 0x500
|
|
|
|
#define UHYVE_PORT_EXIT 0x540
|
|
|
|
#define UHYVE_PORT_LSEEK 0x580
|
|
|
|
|
2018-07-21 21:42:11 +02:00
|
|
|
#define UHYVE_PORT_PFAULT 0x511
|
|
|
|
|
2018-03-23 04:04:44 -04:00
|
|
|
// Networkports
|
|
|
|
#define UHYVE_PORT_NETINFO 0x600
|
|
|
|
#define UHYVE_PORT_NETWRITE 0x640
|
|
|
|
#define UHYVE_PORT_NETREAD 0x680
|
|
|
|
#define UHYVE_PORT_NETSTAT 0x700
|
|
|
|
|
2018-09-04 13:09:23 +02:00
|
|
|
#define UHYVE_PORT_FREELIST 0x720
|
|
|
|
|
2018-03-23 04:04:44 -04:00
|
|
|
/* Ports and data structures for uhyve command line arguments and envp
|
|
|
|
* forwarding */
|
|
|
|
#define UHYVE_PORT_CMDSIZE 0x740
|
|
|
|
#define UHYVE_PORT_CMDVAL 0x780
|
|
|
|
|
2017-01-16 18:47:13 +01:00
|
|
|
|
2016-11-30 00:11:58 +01:00
|
|
|
#define BUILTIN_EXPECT(exp, b) __builtin_expect((exp), (b))
|
|
|
|
//#define BUILTIN_EXPECT(exp, b) (exp)
|
|
|
|
#define NORETURN __attribute__((noreturn))
|
|
|
|
|
2015-05-23 14:35:45 +02:00
|
|
|
#define NULL ((void*) 0)
|
|
|
|
|
|
|
|
/// represents a task identifier
|
|
|
|
typedef unsigned int tid_t;
|
|
|
|
|
2016-07-01 18:54:09 +02:00
|
|
|
#define DECLARE_PER_CORE(type, name) extern type name __attribute__ ((section (".percore")))
|
|
|
|
#define DEFINE_PER_CORE(type, name, def_value) type name __attribute__ ((section (".percore"))) = def_value
|
|
|
|
#define DEFINE_PER_CORE_STATIC(type, name, def_value) static type name __attribute__ ((section (".percore"))) = def_value
|
2015-05-27 00:04:01 +02:00
|
|
|
|
|
|
|
/* needed to find the task, which is currently running on this core */
|
2015-05-23 14:35:45 +02:00
|
|
|
struct task;
|
2015-05-27 00:04:01 +02:00
|
|
|
DECLARE_PER_CORE(struct task*, current_task);
|
2015-05-23 14:35:45 +02:00
|
|
|
|
2015-07-24 21:12:05 +02:00
|
|
|
#if MAX_CORES > 1
|
2015-07-19 11:12:05 +02:00
|
|
|
/* allows fast access to the core id */
|
|
|
|
DECLARE_PER_CORE(uint32_t, __core_id);
|
|
|
|
#define CORE_ID per_core(__core_id)
|
2015-07-24 21:12:05 +02:00
|
|
|
#else
|
|
|
|
#define CORE_ID 0
|
|
|
|
#endif
|
2015-07-19 11:12:05 +02:00
|
|
|
|
2015-05-23 14:35:45 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|