openFPGALoader/device.hpp

33 lines
630 B
C++

#ifndef DEVICE_HPP
#define DEVICE_HPP
#include <iostream>
#include "ftdijtag.hpp"
/* GGM: TODO: program must have an optional
* offset
* and question: bitstream to load bitstream in SPI mode must
* be hardcoded or provided by user?
*/
class Device {
public:
enum prog_mode {
NONE_MODE = 0,
SPI_MODE,
MEM_MODE
};
Device(FtdiJtag *jtag, std::string filename);
virtual ~Device();
virtual void program(unsigned int offset = 0) = 0;
virtual int idCode() = 0;
virtual void reset();
protected:
FtdiJtag *_jtag;
std::string _filename;
std::string _file_extension;
enum prog_mode _mode;
};
#endif