2013-09-28 11:51:43 -03:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_EMPTY_SPIDRIVER_H__
|
|
|
|
#define __AP_HAL_EMPTY_SPIDRIVER_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include "AP_HAL_Linux.h"
|
2013-09-28 11:51:43 -03:00
|
|
|
#include "Semaphores.h"
|
|
|
|
|
2014-10-14 21:14:03 -03:00
|
|
|
// Most platforms won't need to declare the spidev bus offset
|
|
|
|
#ifndef LINUX_SPIDEV_BUS_OFFSET
|
|
|
|
#define LINUX_SPIDEV_BUS_OFFSET 0
|
|
|
|
#endif
|
|
|
|
|
2014-08-17 23:32:57 -03:00
|
|
|
#define LINUX_SPI_MAX_BUSES 3
|
|
|
|
|
2014-10-14 21:14:03 -03:00
|
|
|
// Fake CS pin to indicate in-kernel handling
|
|
|
|
#define SPI_CS_KERNEL -1
|
|
|
|
|
2013-09-28 11:51:43 -03:00
|
|
|
class Linux::LinuxSPIDeviceDriver : public AP_HAL::SPIDeviceDriver {
|
|
|
|
public:
|
2014-07-07 23:15:07 -03:00
|
|
|
friend class Linux::LinuxSPIDeviceManager;
|
2014-10-14 21:14:03 -03:00
|
|
|
LinuxSPIDeviceDriver(uint16_t bus, uint16_t subdev, enum AP_HAL::SPIDevice type, uint8_t mode, uint8_t bitsPerWord, int16_t cs_pin, uint32_t lowspeed, uint32_t highspeed);
|
2013-09-28 11:51:43 -03:00
|
|
|
void init();
|
2014-06-27 06:38:32 -03:00
|
|
|
AP_HAL::Semaphore *get_semaphore();
|
2015-08-19 12:36:45 -03:00
|
|
|
bool transaction(const uint8_t *tx, uint8_t *rx, uint16_t len);
|
2013-09-28 11:51:43 -03:00
|
|
|
|
|
|
|
void cs_assert();
|
|
|
|
void cs_release();
|
|
|
|
uint8_t transfer (uint8_t data);
|
|
|
|
void transfer (const uint8_t *data, uint16_t len);
|
2014-07-05 08:14:11 -03:00
|
|
|
void set_bus_speed(enum bus_speed speed);
|
2015-07-02 16:39:04 -03:00
|
|
|
void set_state(State state) override { _state = state; }
|
|
|
|
State get_state() override { return _state; }
|
2014-06-27 06:38:32 -03:00
|
|
|
|
2013-09-28 11:51:43 -03:00
|
|
|
private:
|
2014-10-14 21:14:03 -03:00
|
|
|
uint16_t _bus;
|
|
|
|
uint16_t _subdev;
|
|
|
|
int16_t _cs_pin;
|
2014-06-03 05:59:39 -03:00
|
|
|
AP_HAL::DigitalSource *_cs;
|
2013-09-28 11:51:43 -03:00
|
|
|
uint8_t _mode;
|
|
|
|
uint8_t _bitsPerWord;
|
2015-07-02 16:39:04 -03:00
|
|
|
State _state = State::UNKNOWN;
|
2014-07-05 08:14:11 -03:00
|
|
|
uint32_t _lowspeed;
|
|
|
|
uint32_t _highspeed;
|
2013-09-28 11:51:43 -03:00
|
|
|
uint32_t _speed;
|
2014-07-13 19:44:59 -03:00
|
|
|
enum AP_HAL::SPIDevice _type;
|
2014-10-14 21:14:03 -03:00
|
|
|
int _fd; // Per-device FD.
|
2013-09-28 11:51:43 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Linux::LinuxSPIDeviceManager : public AP_HAL::SPIDeviceManager {
|
|
|
|
public:
|
|
|
|
void init(void *);
|
2015-09-14 15:43:50 -03:00
|
|
|
AP_HAL::SPIDeviceDriver* device(enum AP_HAL::SPIDevice, uint8_t index = 0);
|
2014-06-27 06:38:32 -03:00
|
|
|
|
2014-10-14 21:14:03 -03:00
|
|
|
static AP_HAL::Semaphore *get_semaphore(uint16_t bus);
|
2014-06-27 06:38:32 -03:00
|
|
|
|
2014-07-13 19:44:59 -03:00
|
|
|
static void cs_assert(enum AP_HAL::SPIDevice type);
|
|
|
|
static void cs_release(enum AP_HAL::SPIDevice type);
|
2015-08-19 12:36:45 -03:00
|
|
|
static bool transaction(LinuxSPIDeviceDriver &driver, const uint8_t *tx, uint8_t *rx, uint16_t len);
|
2014-06-27 06:38:32 -03:00
|
|
|
|
2013-09-28 11:51:43 -03:00
|
|
|
private:
|
2015-07-02 12:02:02 -03:00
|
|
|
static LinuxSPIDeviceDriver _device[];
|
2014-08-17 23:32:57 -03:00
|
|
|
static LinuxSemaphore _semaphore[LINUX_SPI_MAX_BUSES];
|
2013-09-28 11:51:43 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_HAL_LINUX_SPIDRIVER_H__
|