2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file efiGpio.h
|
2017-04-21 10:36:51 -07:00
|
|
|
* @brief EFI-related GPIO code
|
|
|
|
*
|
2015-07-10 06:01:56 -07:00
|
|
|
*
|
|
|
|
* @date Sep 26, 2014
|
2017-01-03 03:05:22 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
#ifndef EFIGPIO_H_
|
|
|
|
#define EFIGPIO_H_
|
|
|
|
|
|
|
|
#include "io_pins.h"
|
2017-04-21 10:36:51 -07:00
|
|
|
#include "main.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2017-04-21 10:36:51 -07:00
|
|
|
void initPrimaryPins(void);
|
|
|
|
void initOutputPins(void);
|
|
|
|
|
2017-04-21 12:14:37 -07:00
|
|
|
#if EFI_GPIO_HARDWARE || defined(__DOXYGEN__)
|
2017-04-21 10:36:51 -07:00
|
|
|
void turnAllPinsOff(void);
|
2017-04-21 12:14:37 -07:00
|
|
|
#else /* EFI_GPIO_HARDWARE */
|
2017-04-21 10:36:51 -07:00
|
|
|
#define turnAllPinsOff() {}
|
2017-04-21 12:14:37 -07:00
|
|
|
#endif /* EFI_GPIO_HARDWARE */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Single output pin reference and state
|
|
|
|
*/
|
|
|
|
class OutputPin {
|
|
|
|
public:
|
|
|
|
OutputPin();
|
|
|
|
bool isInitialized();
|
|
|
|
void setValue(int logicValue);
|
|
|
|
void setDefaultPinState(pin_output_mode_e *defaultState);
|
|
|
|
bool getLogicValue();
|
|
|
|
void unregister();
|
2017-04-21 14:38:13 -07:00
|
|
|
bool isPinAssigned();
|
2017-04-21 15:11:36 -07:00
|
|
|
void initPin(const char *msg, brain_pin_e brainPin);
|
2017-04-21 14:50:28 -07:00
|
|
|
void initPin(const char *msg, brain_pin_e brainPin, pin_output_mode_e *outputMode);
|
2017-06-04 13:18:29 -07:00
|
|
|
void unregisterOutput(brain_pin_e oldPin, brain_pin_e newPin);
|
|
|
|
|
2017-04-21 14:50:28 -07:00
|
|
|
|
2017-04-21 13:52:02 -07:00
|
|
|
#if EFI_GPIO_HARDWARE || defined(__DOXYGEN__)
|
2017-04-21 12:14:37 -07:00
|
|
|
ioportid_t port;
|
|
|
|
uint8_t pin;
|
2017-04-21 13:52:02 -07:00
|
|
|
#endif /* EFI_GPIO_HARDWARE */
|
2017-04-21 12:14:37 -07:00
|
|
|
int8_t currentLogicValue;
|
|
|
|
// 4 byte pointer is a bit of a memory waste here
|
|
|
|
pin_output_mode_e *modePtr;
|
|
|
|
/**
|
|
|
|
* we track current pin status so that we do not touch the actual hardware if we want to write new pin bit
|
|
|
|
* which is same as current pin value. This maybe helps in case of status leds, but maybe it's a total over-engineering
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
2017-04-21 10:36:51 -07:00
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
class NamedOutputPin : public OutputPin {
|
|
|
|
public:
|
|
|
|
NamedOutputPin();
|
|
|
|
NamedOutputPin(const char *name);
|
2017-04-21 16:23:20 -07:00
|
|
|
void setHigh();
|
|
|
|
void setLow();
|
2016-11-03 20:02:58 -07:00
|
|
|
/**
|
|
|
|
* @return true if pin was stopped
|
|
|
|
*/
|
|
|
|
bool stop();
|
2017-01-06 08:02:49 -08:00
|
|
|
// todo: char pointer is a bit of a memory waste here, we can reduce RAM usage by software-based getName() method
|
2015-07-10 06:01:56 -07:00
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
2016-09-03 21:03:27 -07:00
|
|
|
class InjectorOutputPin : public NamedOutputPin {
|
|
|
|
public:
|
|
|
|
InjectorOutputPin();
|
|
|
|
void reset();
|
|
|
|
efitimeus_t overlappingScheduleOffTime;
|
2017-01-06 08:02:49 -08:00
|
|
|
// todo: implement this via address manipulation to reduce memory usage
|
|
|
|
int8_t injectorIndex;
|
2016-09-03 21:03:27 -07:00
|
|
|
bool cancelNextTurningInjectorOff;
|
2017-01-06 08:02:49 -08:00
|
|
|
int8_t overlappingCounter;
|
2016-09-03 21:03:27 -07:00
|
|
|
};
|
|
|
|
|
2016-10-31 19:02:12 -07:00
|
|
|
class IgnitionOutputPin : public NamedOutputPin {
|
|
|
|
public:
|
|
|
|
IgnitionOutputPin();
|
|
|
|
void reset();
|
2016-11-01 20:01:54 -07:00
|
|
|
int signalFallSparkId;
|
|
|
|
bool outOfOrder; // https://sourceforge.net/p/rusefi/tickets/319/
|
2016-10-31 19:02:12 -07:00
|
|
|
};
|
|
|
|
|
2016-11-03 20:02:58 -07:00
|
|
|
class EnginePins {
|
2016-09-06 21:02:11 -07:00
|
|
|
public:
|
2016-11-03 20:02:58 -07:00
|
|
|
EnginePins();
|
2016-11-01 06:02:29 -07:00
|
|
|
void reset();
|
2016-11-03 20:02:58 -07:00
|
|
|
bool stopPins();
|
2017-06-04 13:35:13 -07:00
|
|
|
void unregisterPins();
|
2017-06-04 15:43:08 -07:00
|
|
|
void startInjectionPins();
|
|
|
|
void startIgnitionPins();
|
|
|
|
void stopInjectionPins();
|
|
|
|
void stopIgnitionPins();
|
2015-07-10 06:01:56 -07:00
|
|
|
OutputPin mainRelay;
|
|
|
|
OutputPin fanRelay;
|
|
|
|
OutputPin acRelay;
|
|
|
|
OutputPin fuelPumpRelay;
|
|
|
|
OutputPin o2heater;
|
|
|
|
// OutputPin alternatorField;
|
2017-01-30 03:02:53 -08:00
|
|
|
/**
|
|
|
|
* brain board RED LED by default
|
|
|
|
*/
|
2017-02-24 16:42:34 -08:00
|
|
|
OutputPin errorLedPin;
|
|
|
|
OutputPin communicationPin; // blue LED on brain board by default
|
|
|
|
OutputPin warningPin; // orange LED on brain board by default
|
|
|
|
OutputPin runningPin; // green LED on brain board by default
|
|
|
|
|
2016-09-13 21:03:14 -07:00
|
|
|
OutputPin idleSolenoidPin;
|
|
|
|
OutputPin alternatorPin;
|
2017-01-30 03:02:53 -08:00
|
|
|
/**
|
|
|
|
* this one is usually on the gauge cluster, not on the ECU
|
|
|
|
*/
|
2016-09-13 22:01:57 -07:00
|
|
|
OutputPin checkEnginePin;
|
|
|
|
NamedOutputPin tachOut;
|
2016-09-14 16:03:00 -07:00
|
|
|
OutputPin etbOutput1;
|
|
|
|
OutputPin etbOutput2;
|
|
|
|
OutputPin fsioOutputs[LE_COMMAND_COUNT];
|
|
|
|
OutputPin triggerDecoderErrorPin;
|
|
|
|
OutputPin hipCs;
|
|
|
|
OutputPin sdCsPin;
|
2016-09-13 21:03:14 -07:00
|
|
|
|
2016-09-03 21:03:27 -07:00
|
|
|
InjectorOutputPin injectors[INJECTION_PIN_COUNT];
|
2016-10-31 19:02:12 -07:00
|
|
|
IgnitionOutputPin coils[IGNITION_PIN_COUNT];
|
2016-09-06 21:02:11 -07:00
|
|
|
NamedOutputPin dizzyOutput;
|
|
|
|
};
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* it's a macro to be sure that stack is not used
|
|
|
|
* @return 0 for OM_DEFAULT and OM_OPENDRAIN
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define getElectricalValue0(mode) ((mode) == OM_INVERTED || (mode) == OM_OPENDRAIN_INVERTED)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* it's a macro to be sure that stack is not used
|
|
|
|
* @return 1 for OM_DEFAULT and OM_OPENDRAIN
|
|
|
|
*/
|
|
|
|
#define getElectricalValue1(mode) ((mode) == OM_DEFAULT || (mode) == OM_OPENDRAIN)
|
|
|
|
|
|
|
|
#define getElectricalValue(logicalValue, mode) \
|
|
|
|
(logicalValue ? getElectricalValue1(mode) : getElectricalValue0(mode))
|
|
|
|
|
|
|
|
#if EFI_PROD_CODE
|
|
|
|
#define isPinAssigned(output) ((output)->port != GPIO_NULL)
|
2017-04-21 09:31:17 -07:00
|
|
|
#else /* EFI_PROD_CODE */
|
2015-07-10 06:01:56 -07:00
|
|
|
#define isPinAssigned(output) (true)
|
2017-04-21 09:31:17 -07:00
|
|
|
#endif /* EFI_PROD_CODE */
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2017-04-21 14:38:13 -07:00
|
|
|
#if EFI_GPIO_HARDWARE || defined(__DOXYGEN__)
|
|
|
|
|
2017-04-21 13:20:06 -07:00
|
|
|
ioportmask_t getHwPin(brain_pin_e brainPin);
|
|
|
|
ioportid_t getHwPort(brain_pin_e brainPin);
|
|
|
|
const char *portname(ioportid_t GPIOx);
|
2017-04-21 09:31:17 -07:00
|
|
|
|
2017-04-21 13:20:06 -07:00
|
|
|
#endif /* EFI_GPIO_HARDWARE */
|
|
|
|
|
|
|
|
brain_pin_e parseBrainPin(const char *str);
|
|
|
|
const char *hwPortname(brain_pin_e brainPin);
|
2017-04-21 09:06:32 -07:00
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
#endif /* EFIGPIO_H_ */
|