2013-09-22 03:01:24 -03:00
|
|
|
|
2014-08-19 00:48:56 -03:00
|
|
|
#ifndef __AP_HAL_LINUX_RCOUTPUT_PRU_H__
|
|
|
|
#define __AP_HAL_LINUX_RCOUTPUT_PRU_H__
|
2013-09-22 03:01:24 -03:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include "AP_HAL_Linux.h"
|
2014-08-17 23:35:22 -03:00
|
|
|
#define RCOUT_PRUSS_SHAREDRAM_BASE 0x4a310000
|
2014-06-09 09:25:15 -03:00
|
|
|
#define MAX_PWMS 12
|
|
|
|
#define PWM_CMD_MAGIC 0xf00fbaaf
|
|
|
|
#define PWM_REPLY_MAGIC 0xbaaff00f
|
|
|
|
#define PWM_CMD_CONFIG 0 /* full configuration in one go */
|
|
|
|
#define PWM_CMD_ENABLE 1 /* enable a pwm */
|
|
|
|
#define PWM_CMD_DISABLE 2 /* disable a pwm */
|
|
|
|
#define PWM_CMD_MODIFY 3 /* modify a pwm */
|
|
|
|
#define PWM_CMD_SET 4 /* set a pwm output explicitly */
|
|
|
|
#define PWM_CMD_CLR 5 /* clr a pwm output explicitly */
|
|
|
|
#define PWM_CMD_TEST 6 /* various crap */
|
2013-09-22 03:01:24 -03:00
|
|
|
|
2015-10-20 18:13:25 -03:00
|
|
|
class Linux::RCOutput_PRU : public AP_HAL::RCOutput {
|
2015-12-02 11:14:20 -04:00
|
|
|
void init();
|
2013-09-22 03:01:24 -03:00
|
|
|
void set_freq(uint32_t chmask, uint16_t freq_hz);
|
|
|
|
uint16_t get_freq(uint8_t ch);
|
|
|
|
void enable_ch(uint8_t ch);
|
|
|
|
void disable_ch(uint8_t ch);
|
|
|
|
void write(uint8_t ch, uint16_t period_us);
|
|
|
|
uint16_t read(uint8_t ch);
|
|
|
|
void read(uint16_t* period_us, uint8_t len);
|
2014-06-09 09:25:15 -03:00
|
|
|
|
|
|
|
private:
|
2014-10-29 23:23:03 -03:00
|
|
|
static const int TICK_PER_US=200;
|
|
|
|
static const int TICK_PER_S=200000000;
|
2014-06-09 09:25:15 -03:00
|
|
|
struct pwm_cmd {
|
2014-06-27 03:01:59 -03:00
|
|
|
uint32_t magic;
|
|
|
|
uint32_t enmask; /* enable mask */
|
|
|
|
uint32_t offmsk; /* state when pwm is off */
|
|
|
|
uint32_t periodhi[MAX_PWMS][2];
|
|
|
|
uint32_t hilo_read[MAX_PWMS][2];
|
|
|
|
uint32_t enmask_read;
|
2014-08-18 00:02:50 -03:00
|
|
|
};
|
|
|
|
volatile struct pwm_cmd *sharedMem_cmd;
|
2014-06-09 09:25:15 -03:00
|
|
|
|
2013-09-22 03:01:24 -03:00
|
|
|
};
|
|
|
|
|
2014-08-19 00:48:56 -03:00
|
|
|
#endif // __AP_HAL_LINUX_RCOUTPUT_PRU_H__
|