io/io.hpp

431 lines
9.9 KiB
C++
Raw Normal View History

2019-07-26 18:49:53 +02:00
#pragma once
2016-02-25 21:48:49 +01:00
#include <stdint.h>
2016-02-25 21:48:49 +01:00
#include <avr/io.h>
#include <avr/sfr_defs.h>
2016-02-25 21:48:49 +01:00
2019-07-26 18:49:53 +02:00
//////////////////////////////////////////////////////////////////////////
// Preprocessor defines
#if defined(__AVR_ATmega32__) || defined(__AVR_ATmega32A__) || defined(__AVR_ATmega644P__) || \
defined(__AVR_ATmega1284P__)
#define GPIO_32
#endif
#if defined(__AVR_ATmega8__) || defined(__AVR_ATmega8A__) || defined(__AVR_ATmega168A__) || defined(__AVR_ATmega328P__)
#define GPIO_23
#endif
#if defined(__AVR_ATtiny13A__) || defined(__AVR_ATtiny85__)
#define GPIO_6
#endif
#if defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega168A__) || \
defined(__AVR_ATmega328P__) || defined(__AVR_ATtiny13A__) || defined(__AVR_ATtiny85__)
#define HARDWARE_TOGGLE
#endif
#ifdef GPIO_32
#define PORT_A_AVAILABLE
#endif
#if defined(GPIO_32) || defined(GPIO_23) || defined(GPIO_6)
#define PORT_B_AVAILABLE
#endif
#if defined(GPIO_32) || defined(GPIO_23)
#define PORT_C_AVAILABLE
#define PORT_D_AVAILABLE
#define PIN_B6_AVAILABLE
#define PIN_B7_AVAILABLE
#endif
#if defined(GPIO_32)
#define PIN_C7_AVAILABLE
#endif
2019-07-26 18:49:53 +02:00
#define FORCE_INLINE __attribute__((always_inline))
//////////////////////////////////////////////////////////////////////////
2019-07-26 18:49:53 +02:00
// Library implementation
namespace io {
enum class Dir { IN, OUT };
enum class P {
#ifdef PORT_A_AVAILABLE
2019-07-26 18:49:53 +02:00
A0 = 0x00,
A1 = 0x01,
A2 = 0x02,
A3 = 0x03,
A4 = 0x04,
A5 = 0x05,
A6 = 0x06,
A7 = 0x07,
2016-02-25 21:48:49 +01:00
#endif
#ifdef PORT_B_AVAILABLE
2019-07-26 18:49:53 +02:00
B0 = 0x10,
B1 = 0x11,
B2 = 0x12,
B3 = 0x13,
B4 = 0x14,
B5 = 0x15,
#ifdef PIN_B6_AVAILABLE
2019-07-26 18:49:53 +02:00
B6 = 0x16,
#endif
#ifdef PIN_B7_AVAILABLE
2019-07-26 18:49:53 +02:00
B7 = 0x17,
#endif
2016-02-25 21:48:49 +01:00
#endif
#ifdef PORT_C_AVAILABLE
2019-07-26 18:49:53 +02:00
C0 = 0x20,
C1 = 0x21,
C2 = 0x22,
C3 = 0x23,
C4 = 0x24,
C5 = 0x25,
C6 = 0x26,
#ifdef PIN_C7_AVAILABLE
2019-07-26 18:49:53 +02:00
C7 = 0x27,
#endif
2016-02-25 21:48:49 +01:00
#endif
#ifdef PORT_D_AVAILABLE
2019-07-26 18:49:53 +02:00
D0 = 0x30,
D1 = 0x31,
D2 = 0x32,
D3 = 0x33,
D4 = 0x34,
D5 = 0x35,
D6 = 0x36,
D7 = 0x37,
2016-02-25 21:48:49 +01:00
#endif
2019-07-26 18:49:53 +02:00
};
2016-02-25 21:48:49 +01:00
2019-07-26 18:49:53 +02:00
enum class Bus {
#ifdef PORT_A_AVAILABLE
2019-07-26 18:49:53 +02:00
A = 0x00,
2016-02-25 21:48:49 +01:00
#endif
#ifdef PORT_B_AVAILABLE
2019-07-26 18:49:53 +02:00
B = 0x01,
#endif
#ifdef PORT_C_AVAILABLE
2019-07-26 18:49:53 +02:00
C = 0x02,
#endif
#ifdef PORT_D_AVAILABLE
2019-07-26 18:49:53 +02:00
D = 0x03,
2016-02-25 21:48:49 +01:00
#endif
2019-07-26 18:49:53 +02:00
};
//////////////////////////////////////////////////////////////////////////
// Implementation details
namespace detail {
/*
The following works in avr-gcc 5.4.0, but is not legal C++, because ptr's are not legal constexpr's
constexpr auto *foo = ptr;
Workaround is to store the the address of the ptr in a uintptr_t and reinterpret_cast it at call site
For this to work we need to temporarily disable the _SFR_IO8 macro so that the register macro just gives the address
*/
#undef _SFR_IO8
#define _SFR_IO8
#ifdef PORT_A_AVAILABLE
static constexpr uintptr_t PORT_A_DIR_REG_ADDR = DDRA + __SFR_OFFSET;
static constexpr uintptr_t PORT_A_OUTPUT_REG_ADDR = PORTA + __SFR_OFFSET;
static constexpr uintptr_t PORT_A_INPUT_REG_ADDR = PINA + __SFR_OFFSET;
2019-07-26 18:49:53 +02:00
#else
static constexpr uintptr_t PORT_A_DIR_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_A_OUTPUT_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_A_INPUT_REG_ADDR = nullptr;
2016-02-25 21:48:49 +01:00
#endif
#ifdef PORT_B_AVAILABLE
static constexpr uintptr_t PORT_B_DIR_REG_ADDR = DDRB + __SFR_OFFSET;
static constexpr uintptr_t PORT_B_OUTPUT_REG_ADDR = PORTB + __SFR_OFFSET;
static constexpr uintptr_t PORT_B_INPUT_REG_ADDR = PINB + __SFR_OFFSET;
2019-07-26 18:49:53 +02:00
#else
static constexpr uintptr_t PORT_B_DIR_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_B_OUTPUT_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_B_INPUT_REG_ADDR = nullptr;
#endif
2019-07-26 18:49:53 +02:00
#ifdef PORT_C_AVAILABLE
static constexpr uintptr_t PORT_C_DIR_REG_ADDR = DDRC + __SFR_OFFSET;
static constexpr uintptr_t PORT_C_OUTPUT_REG_ADDR = PORTC + __SFR_OFFSET;
static constexpr uintptr_t PORT_C_INPUT_REG_ADDR = PINC + __SFR_OFFSET;
2019-07-26 18:49:53 +02:00
#else
static constexpr uintptr_t PORT_C_DIR_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_C_OUTPUT_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_C_INPUT_REG_ADDR = nullptr;
2016-02-25 21:48:49 +01:00
#endif
2019-07-26 18:49:53 +02:00
#ifdef PORT_D_AVAILABLE
static constexpr uintptr_t PORT_D_DIR_REG_ADDR = DDRD + __SFR_OFFSET;
static constexpr uintptr_t PORT_D_OUTPUT_REG_ADDR = PORTD + __SFR_OFFSET;
static constexpr uintptr_t PORT_D_INPUT_REG_ADDR = PIND + __SFR_OFFSET;
2019-07-26 18:49:53 +02:00
#else
static constexpr uintptr_t PORT_D_DIR_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_D_OUTPUT_REG_ADDR = nullptr;
static constexpr uintptr_t PORT_D_INPUT_REG_ADDR = nullptr;
2016-02-25 21:48:49 +01:00
#endif
#undef _SFR_IO8
#define _SFR_IO8(io_addr) _MMIO_BYTE((io_addr) + __SFR_OFFSET)
2019-07-26 18:49:53 +02:00
static constexpr auto getBus(const P pin)
{
// Upper 4 bits of pin encode which port this pin is on
uint8_t port = static_cast<uint8_t>(pin) >> 4 & 0x0F;
return static_cast<Bus>(port);
}
static constexpr auto getPinBit(const P pin)
2019-07-26 18:49:53 +02:00
{
// Lower 4 bits of pin encode which pin bit it is
uint8_t pinBit = static_cast<uint8_t>(pin) & 0x0F;
return pinBit;
}
static constexpr auto getDDR(const Bus bus)
{
switch (static_cast<uint8_t>(bus)) {
case 0: // Bus::A
return PORT_A_DIR_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 1: // Bus::B
return PORT_B_DIR_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 2: // Bus::C
return PORT_C_DIR_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 3: // Bus::D
return PORT_D_DIR_REG_ADDR;
2019-07-26 18:49:53 +02:00
}
}
static constexpr auto getPORT(const Bus bus)
{
switch (static_cast<uint8_t>(bus)) {
case 0: // Bus::A
return PORT_A_OUTPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 1: // Bus::B
return PORT_B_OUTPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 2: // Bus::C
return PORT_C_OUTPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 3: // Bus::D
return PORT_D_OUTPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
}
}
static constexpr auto getPIN(const Bus bus)
{
switch (static_cast<uint8_t>(bus)) {
case 0: // Bus::A
return PORT_A_INPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 1: // Bus::B
return PORT_B_INPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 2: // Bus::C
return PORT_C_INPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
case 3: // Bus::D
return PORT_D_INPUT_REG_ADDR;
2019-07-26 18:49:53 +02:00
}
}
2019-08-10 13:36:50 +02:00
using reg_ptr_t = volatile uint8_t *;
template <uintptr_t Address>
2019-08-10 13:36:50 +02:00
static inline reg_ptr_t getRegPtr()
{
2019-08-10 13:36:50 +02:00
return reinterpret_cast<reg_ptr_t>(Address);
}
2019-07-26 18:49:53 +02:00
} // namespace detail
//////////////////////////////////////////////////////////////////////////
// Zero overhead Pin object for pretty code without losing performance
template <P pin>
2019-07-26 18:49:53 +02:00
class Pin {
public:
// Pin objects cannot be moved or copied
Pin(const Pin &) = delete;
Pin(Pin &&) = delete;
Pin &operator=(const Pin &) = delete;
Pin &operator=(Pin &&) = delete;
// The only valid way to create a Pin object is with the default constructor
Pin() = default;
static inline void dir(const Dir dir) FORCE_INLINE
2016-02-25 21:48:49 +01:00
{
2019-07-26 18:49:53 +02:00
constexpr auto bus = detail::getBus(pin);
constexpr auto pinBit = detail::getPinBit(pin);
2019-07-26 18:49:53 +02:00
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t dirRegPtr = detail::getRegPtr<detail::getDDR(bus)>();
2019-08-10 13:32:35 +02:00
2019-07-26 18:49:53 +02:00
if (dir == Dir::IN)
2019-08-10 13:32:35 +02:00
*dirRegPtr &= ~(1 << pinBit);
2019-07-26 18:49:53 +02:00
else if (dir == Dir::OUT)
2019-08-10 13:32:35 +02:00
*dirRegPtr |= (1 << pinBit);
2019-07-26 18:49:53 +02:00
}
2016-02-25 21:48:49 +01:00
2019-07-26 18:49:53 +02:00
static inline void pullup(const bool enable) FORCE_INLINE
2016-02-25 21:48:49 +01:00
{
2019-07-26 18:49:53 +02:00
constexpr auto bus = detail::getBus(pin);
constexpr auto pinBit = detail::getPinBit(pin);
2019-07-26 18:49:53 +02:00
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(bus)>();
2019-08-10 13:32:35 +02:00
2019-07-26 18:49:53 +02:00
if (enable)
2019-08-10 13:32:35 +02:00
*portRegPtr |= (1 << pinBit);
2019-07-26 18:49:53 +02:00
else
2019-08-10 13:32:35 +02:00
*portRegPtr &= ~(1 << pinBit);
2019-07-26 18:49:53 +02:00
}
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
static inline void write(const bool value) FORCE_INLINE
2016-02-25 21:48:49 +01:00
{
2019-07-26 18:49:53 +02:00
constexpr auto bus = detail::getBus(pin);
constexpr auto pinBit = detail::getPinBit(pin);
2019-07-26 18:49:53 +02:00
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(bus)>();
2019-08-10 13:32:35 +02:00
2019-07-26 18:49:53 +02:00
if (value)
2019-08-10 13:32:35 +02:00
*portRegPtr |= (1 << pinBit);
2019-07-26 18:49:53 +02:00
else
2019-08-10 13:32:35 +02:00
*portRegPtr &= ~(1 << pinBit);
2016-02-25 21:48:49 +01:00
}
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
static inline void toggle() FORCE_INLINE
{
2019-07-26 19:44:20 +02:00
constexpr auto bus = detail::getBus(pin);
constexpr auto pinBit = detail::getPinBit(pin);
2019-07-26 19:44:20 +02:00
2019-08-10 13:32:35 +02:00
#ifdef HARDWARE_TOGGLE
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t pinRegPtr = detail::getRegPtr<detail::getPIN(bus)>();
2019-08-10 13:32:35 +02:00
*pinRegPtr |= (1 << pinBit);
2019-07-26 19:44:20 +02:00
#else
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(bus)>();
2019-08-10 13:32:35 +02:00
*portRegPtr ^= (1 << pinBit);
2019-07-26 19:44:20 +02:00
#endif
}
2019-07-26 18:49:53 +02:00
static inline bool read() FORCE_INLINE
{
constexpr auto bus = detail::getBus(pin);
constexpr auto pinBit = detail::getPinBit(pin);
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t pinRegPtr = detail::getRegPtr<detail::getPIN(bus)>();
2019-08-10 13:32:35 +02:00
if (*pinRegPtr >> pinBit & 1)
2019-07-26 18:49:53 +02:00
return true;
return false;
}
Pin &operator=(const bool value) FORCE_INLINE
{
write(value);
return *this;
}
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
operator bool() const FORCE_INLINE
{
return read();
}
};
2016-05-24 19:41:59 +02:00
//////////////////////////////////////////////////////////////////////////
2019-07-26 18:49:53 +02:00
// Zero overhead Port object for pretty code without losing performance
2016-05-24 19:41:59 +02:00
template <Bus port>
2019-07-26 18:49:53 +02:00
class Port {
public:
// Port objects cannot be moved or copied
Port(const Port &) = delete;
Port(Port &&) = delete;
Port &operator=(const Port &) = delete;
Port &operator=(Port &&) = delete;
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
// The only valid way to create a Port object is with the default constructor
Port() = default;
2019-07-26 18:49:53 +02:00
static inline void dir(const Dir dir) FORCE_INLINE
{
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t dirRegPtr = detail::getRegPtr<detail::getDDR(port)>();
2019-07-26 18:49:53 +02:00
if (dir == Dir::IN)
2019-08-10 13:32:35 +02:00
*dirRegPtr = 0x00;
2019-07-26 18:49:53 +02:00
else if (dir == Dir::OUT)
2019-08-10 13:32:35 +02:00
*dirRegPtr = 0xFF;
2019-07-26 18:49:53 +02:00
}
2019-07-26 18:49:53 +02:00
static inline void pullup(const bool enable) FORCE_INLINE
{
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(port)>();
2016-02-25 21:48:49 +01:00
2019-07-26 18:49:53 +02:00
if (enable)
2019-08-10 13:32:35 +02:00
*portRegPtr = 0xFF;
2019-07-26 18:49:53 +02:00
else
2019-08-10 13:32:35 +02:00
*portRegPtr = 0x00;
2019-07-26 18:49:53 +02:00
}
2019-07-26 18:49:53 +02:00
static inline void write(const uint8_t value) FORCE_INLINE
{
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(port)>();
2019-08-10 13:32:35 +02:00
*portRegPtr = value;
2019-07-26 18:49:53 +02:00
}
2019-01-02 20:54:29 +01:00
2019-07-26 18:49:53 +02:00
static inline void invert() FORCE_INLINE
{
#ifdef HARDWARE_TOGGLE
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t pinRegPtr = detail::getRegPtr<detail::getPIN(port)>();
2019-08-10 13:32:35 +02:00
*pinRegPtr = 0xFF;
#else
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t portRegPtr = detail::getRegPtr<detail::getPORT(port)>();
2019-08-10 13:32:35 +02:00
*portRegPtr = ~(*portRegPtr);
#endif
2019-07-26 18:49:53 +02:00
}
2019-07-26 18:49:53 +02:00
static inline uint8_t read() FORCE_INLINE
{
2019-08-10 13:36:50 +02:00
detail::reg_ptr_t pinRegPtr = detail::getRegPtr<detail::getPIN(port)>();
2019-07-26 18:49:53 +02:00
2019-08-10 13:32:35 +02:00
return *pinRegPtr;
2019-07-26 18:49:53 +02:00
}
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
inline Port &operator=(const uint8_t value) FORCE_INLINE
{
write(value);
return *this;
}
inline operator uint8_t() const FORCE_INLINE
{
return read();
}
};
2016-05-24 19:41:59 +02:00
2019-07-26 18:49:53 +02:00
} // namespace io
2016-05-24 19:41:59 +02:00
//////////////////////////////////////////////////////////////////////////
2019-07-26 18:49:53 +02:00
#undef GPIO_32
#undef GPIO_23
#undef GPIO_6
2019-07-26 18:49:53 +02:00
#undef PORT_A_AVAILABLE
#undef PORT_B_AVAILABLE
#undef PORT_C_AVAILABLE
#undef PORT_D_AVAILABLE
#undef PIN_B6_AVAILABLE
#undef PIN_B7_AVAILABLE
#undef PIN_C7_AVAILABLE
2016-02-25 21:48:49 +01:00
2019-07-26 18:49:53 +02:00
#undef FORCE_INLINE