rusefi/firmware/global.h

100 lines
2.5 KiB
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/*
* @file global.h
*
2018-12-24 19:17:13 -08:00
* Global utility header file for firmware
2018-09-16 17:28:23 -07:00
*
2018-12-24 19:57:36 -08:00
* Simulator and unit tests have their own version of this header
*
* While this header contains 'EXTERN_ENGINE' and 'DECLARE_ENGINE_PARAMETER_SIGNATURE' magic,
* this header is not allowed to actually include higher-level engine related headers
*
2015-07-10 06:01:56 -07:00
* @date May 27, 2013
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
2020-01-26 10:58:47 -08:00
#pragma once
2015-07-10 06:01:56 -07:00
// todo: remove this from here and rely on os_access.h. unfortunately hal.h includes ch.h :(
2015-07-10 06:01:56 -07:00
#include <hal.h>
2019-11-13 19:02:13 -08:00
// *** IMPORTANT *** from painful experience we know that common_headers.h has to be included AFTER hal.h
// *** https://github.com/rusefi/rusefi/issues/1007 ***
#include "common_headers.h"
2015-07-10 06:01:56 -07:00
// for US_TO_NT_MULTIPLIER
#include "mpu_util.h"
2015-07-10 06:01:56 -07:00
// this is about MISRA not liking 'time.h'. todo: figure out something
#if defined __GNUC__
// GCC
#include <sys/types.h>
#else
// IAR
typedef unsigned int time_t;
#endif
2018-09-16 20:10:06 -07:00
#ifdef __cplusplus
#include "eficonsole.h"
#endif /* __cplusplus */
2018-09-16 19:00:14 -07:00
2015-07-10 06:01:56 -07:00
/* definition to expand macro then apply to pragma message */
#define VALUE_TO_STRING(x) #x
#define VALUE(x) VALUE_TO_STRING(x)
#define VAR_NAME_VALUE(var) #var "=" VALUE(var)
2019-05-05 07:26:16 -07:00
#define CORE_CLOCK STM32_SYSCLK
//#pragma message(VAR_NAME_VALUE(CORE_CLOCK))
2019-02-23 09:12:34 -08:00
/**
* project-wide default thread stack size
* See also PORT_INT_REQUIRED_STACK
* See getRemainingStack()
* See getMaxUsedStack() and CountFreeStackSpace()
* See "threadsinfo" command cmd_threads
2019-02-23 09:12:34 -08:00
*/
#ifndef UTILITY_THREAD_STACK_SIZE
2015-07-10 06:01:56 -07:00
#define UTILITY_THREAD_STACK_SIZE 400
#endif /* UTILITY_THREAD_STACK_SIZE */
2015-07-10 06:01:56 -07:00
#define getCurrentRemainingStack() getRemainingStack(chThdGetSelfX())
2015-07-10 06:01:56 -07:00
#define EFI_ERROR_CODE 0xffffffff
2017-05-03 18:24:18 -07:00
#if EFI_USE_CCM && defined __GNUC__
#define MAIN_RAM __attribute__((section(".ram0")))
#elif defined __GNUC__
#define MAIN_RAM
#else
#define MAIN_RAM @ ".ram0"
#endif
2017-05-17 17:29:22 -07:00
/**
* rusEfi is placing some of data structures into CCM memory simply
* in order to use that memory - no magic about which RAM is faster etc.
2019-06-23 06:20:17 -07:00
* That said, CCM/TCM could be faster as there will be less bus contention
* with DMA.
2017-05-17 17:29:22 -07:00
*
* Please note that DMA does not work with CCM memory
*/
#if defined(STM32F7XX)
2019-06-23 06:20:17 -07:00
#define CCM_RAM ".ram3"
#define NO_CACHE CCM_OPTIONAL
#else /* defined(STM32F4XX) */
#define CCM_RAM ".ram4"
#define NO_CACHE
#endif /* defined(STM32F4XX) */
#if EFI_USE_CCM
#if defined __GNUC__
#define CCM_OPTIONAL __attribute__((section(CCM_RAM)))
#else // non-gcc
#define CCM_OPTIONAL @ CCM_RAM
2015-07-10 06:01:56 -07:00
#endif
#else /* !EFI_USE_CCM */
#define CCM_OPTIONAL
#endif /* EFI_USE_CCM */
2015-07-10 06:01:56 -07:00
#define UNIT_TEST_BUSY_WAIT_CALLBACK() {}