Merge pull request #40 from edbordin/cxxopts_migration

cxxopts migration and windows (MinGW) support
This commit is contained in:
Gwenhael Goavec-Merou 2020-07-26 14:50:25 +02:00 committed by GitHub
commit 7a8b80d9da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 62 additions and 32 deletions

View File

@ -6,14 +6,16 @@ project(openFPGALoader VERSION 0.1 LANGUAGES CXX)
option(BUILD_STATIC "Whether or not to build with static libraries" OFF) option(BUILD_STATIC "Whether or not to build with static libraries" OFF)
option(ENABLE_UDEV "use udev to search JTAG adapter from /dev/xx" ON) option(ENABLE_UDEV "use udev to search JTAG adapter from /dev/xx" ON)
option(USE_PKGCONFIG "Use pkgconfig to find libraries" ON)
option(LINK_CMAKE_THREADS "Use CMake find_package to link the threading library" OFF)
## specify the C++ standard ## specify the C++ standard
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CMAKE_CXX_FLAGS_DEBUG "-g -Wall -Wextra") set(CMAKE_CXX_FLAGS_DEBUG "-g -Wall -Wextra ${CMAKE_CXX_FLAGS_DEBUG}")
if (BUILD_STATIC) if (BUILD_STATIC)
set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++ -static") set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++ -static ${CMAKE_EXE_LINKER_FLAGS}")
set(BUILD_SHARED_LIBS OFF) set(BUILD_SHARED_LIBS OFF)
endif() endif()
@ -21,18 +23,20 @@ include(GNUInstallDirs)
# By default: DATA_DIR="/usr/local/share" # By default: DATA_DIR="/usr/local/share"
add_definitions(-DDATA_DIR=\"${CMAKE_INSTALL_FULL_DATAROOTDIR}\") add_definitions(-DDATA_DIR=\"${CMAKE_INSTALL_FULL_DATAROOTDIR}\")
find_package(PkgConfig REQUIRED) if(USE_PKGCONFIG)
pkg_check_modules(LIBFTDI REQUIRED libftdi1) find_package(PkgConfig REQUIRED)
pkg_check_modules(LIBUSB REQUIRED libusb-1.0) pkg_check_modules(LIBFTDI REQUIRED libftdi1)
pkg_check_modules(LIBUSB REQUIRED libusb-1.0)
if(ENABLE_UDEV) if(ENABLE_UDEV)
pkg_check_modules(LIBUDEV libudev) pkg_check_modules(LIBUDEV libudev)
if (LIBUDEV_FOUND) if (LIBUDEV_FOUND)
add_definitions(-DUSE_UDEV) add_definitions(-DUSE_UDEV)
else() else()
message("libudev not found, disabling udev support and -d parameter") message("libudev not found, disabling udev support and -D parameter")
set(ENABLE_UDEV OFF) set(ENABLE_UDEV OFF)
endif() endif()
endif()
endif() endif()
set(OPENFPGALOADER_SOURCE set(OPENFPGALOADER_SOURCE
@ -118,6 +122,11 @@ target_link_libraries(openFPGALoader
${LIBFTDI_LIBRARIES} ${LIBFTDI_LIBRARIES}
) )
if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
# winsock provides ntohs
target_link_libraries(openFPGALoader ws2_32)
endif()
# libusb_attach_kernel_driver is only available on Linux. # libusb_attach_kernel_driver is only available on Linux.
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
add_definitions(-DATTACH_KERNEL) add_definitions(-DATTACH_KERNEL)
@ -133,12 +142,17 @@ if (BUILD_STATIC)
endif() endif()
endif() endif()
if (LINK_CMAKE_THREADS)
find_package(Threads REQUIRED)
target_link_libraries(openFPGALoader Threads::Threads)
endif()
# libftdi < 1.4 as no usb_addr # libftdi < 1.4 as no usb_addr
if (${LIBFTDI_VERSION} VERSION_LESS 1.4) if (${LIBFTDI_VERSION} VERSION_LESS 1.4)
set(CMAKE_CXX_FLAGS "-DOLD_FTDI_VERSION=1") set(CMAKE_CXX_FLAGS "-DOLD_FTDI_VERSION=1 ${CMAKE_CXX_FLAGS}")
else() else()
set(CMAKE_CXX_FLAGS "-DOLD_FTDI_VERSION=0") set(CMAKE_CXX_FLAGS "-DOLD_FTDI_VERSION=0 ${CMAKE_CXX_FLAGS}")
endif() endif()
install(TARGETS openFPGALoader DESTINATION bin) install(TARGETS openFPGALoader DESTINATION bin)

View File

@ -51,6 +51,14 @@ node). If you don't want this option, use:
And if not already done, install **pkg-config**, **make** and **g++**. And if not already done, install **pkg-config**, **make** and **g++**.
Alternatively you can manually specify the location of **libusb** and **libftdi1**:
```-DUSE_PKGCONFIG=OFF -DLIBUSB_LIBRARIES=<path_to_libusb> -DLIBFTDI_LIBRARIES=<path_to_libftdi> -DLIBFTDI_VERSION=<version> -DCMAKE_CXX_FLAGS="-I<libusb_include_dir> -I<libftdi1_include_dir>"```
You may also need to add this if you see link errors between **libusb** and **pthread**:
```-DLINK_CMAKE_THREADS=ON```
To build the app: To build the app:
```bash ```bash
$ mkdir build $ mkdir build

View File

@ -58,7 +58,7 @@ int Altera::idCode()
unsigned char rx_data[4]; unsigned char rx_data[4];
_jtag->go_test_logic_reset(); _jtag->go_test_logic_reset();
_jtag->shiftIR(tx_data, NULL, IRLENGTH); _jtag->shiftIR(tx_data, NULL, IRLENGTH);
bzero(tx_data, 4); memset(tx_data, 0, 4);
_jtag->shiftDR(tx_data, rx_data, 32); _jtag->shiftDR(tx_data, rx_data, 32);
return ((rx_data[0] & 0x000000ff) | return ((rx_data[0] & 0x000000ff) |
((rx_data[1] << 8) & 0x0000ff00) | ((rx_data[1] << 8) & 0x0000ff00) |

View File

@ -2,7 +2,12 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <iostream> #include <iostream>
#ifndef _WIN32
#include <arpa/inet.h> #include <arpa/inet.h>
#else
//for ntohs
#include <winsock2.h>
#endif
using namespace std; using namespace std;

View File

@ -169,7 +169,7 @@ int DirtyJtag::writeTDI(uint8_t *tx, uint8_t *rx, uint32_t len, bool end)
if (tx) if (tx)
memcpy(tx_cpy, tx, real_byte_len); memcpy(tx_cpy, tx, real_byte_len);
else else
bzero(tx_cpy, real_byte_len); memset(tx_cpy, 0, real_byte_len);
tx_ptr = tx_cpy; tx_ptr = tx_cpy;
/* first send 30 x 8 bits */ /* first send 30 x 8 bits */
@ -178,7 +178,7 @@ int DirtyJtag::writeTDI(uint8_t *tx, uint8_t *rx, uint32_t len, bool end)
uint8_t bit_to_send = (real_bit_len > 240) ? 240 : real_bit_len; uint8_t bit_to_send = (real_bit_len > 240) ? 240 : real_bit_len;
uint8_t byte_to_send = (bit_to_send + 7) / 8; uint8_t byte_to_send = (bit_to_send + 7) / 8;
tx_buf[1] = bit_to_send; tx_buf[1] = bit_to_send;
bzero(tx_buf + 2, 30); memset(tx_buf + 2, 0, 30);
for (int i = 0; i < bit_to_send; i++) for (int i = 0; i < bit_to_send; i++)
if (tx_ptr[i >> 3] & (1 << (i & 0x07))) if (tx_ptr[i >> 3] & (1 << (i & 0x07)))
tx_buf[2 + (i >> 3)] |= (0x80 >> (i & 0x07)); tx_buf[2 + (i >> 3)] |= (0x80 >> (i & 0x07));

View File

@ -74,7 +74,7 @@ void FtdiJtagBitBang::init_internal(const FTDIpp_MPSSE::mpsse_bit_config &cable,
setClkFreq(_clkHZ); setClkFreq(_clkHZ);
_in_buf = (unsigned char *)malloc(sizeof(unsigned char) * _buffer_size); _in_buf = (unsigned char *)malloc(sizeof(unsigned char) * _buffer_size);
bzero(_in_buf, _buffer_size); memset(_in_buf, 0, _buffer_size);
init(1, _tck_pin | _tms_pin | _tdi_pin, BITMODE_BITBANG, init(1, _tck_pin | _tms_pin | _tdi_pin, BITMODE_BITBANG,
(FTDIpp_MPSSE::mpsse_bit_config &)cable); (FTDIpp_MPSSE::mpsse_bit_config &)cable);
setBitmode(BITMODE_BITBANG); setBitmode(BITMODE_BITBANG);
@ -162,7 +162,7 @@ int FtdiJtagBitBang::writeTDI(uint8_t *tx, uint8_t *rx, uint32_t len, bool end)
if (len == 0) if (len == 0)
return 0; return 0;
if (rx) if (rx)
bzero(rx, len/8); memset(rx, 0, len/8);
for (uint32_t i = 0, pos = 0; i < len; i++) { for (uint32_t i = 0, pos = 0; i < len; i++) {
/* keep tms or /* keep tms or

View File

@ -2,7 +2,6 @@
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <termios.h>
#include <unistd.h> #include <unistd.h>
#include <iostream> #include <iostream>

View File

@ -32,6 +32,11 @@
using namespace std; using namespace std;
#ifdef STATUS_TIMEOUT
// defined in the Windows headers included by libftdi.h
#undef STATUS_TIMEOUT
#endif
#define NOOP 0x02 #define NOOP 0x02
#define ERASE_SRAM 0x05 #define ERASE_SRAM 0x05
#define READ_SRAM 0x03 #define READ_SRAM 0x03
@ -246,7 +251,7 @@ bool Gowin::wr_rd(uint8_t cmd,
xfer_len = tx_len; xfer_len = tx_len;
uint8_t xfer_tx[xfer_len], xfer_rx[xfer_len]; uint8_t xfer_tx[xfer_len], xfer_rx[xfer_len];
bzero(xfer_tx, xfer_len); memset(xfer_tx, 0, xfer_len);
int i; int i;
if (tx != NULL) { if (tx != NULL) {
for (i = 0; i < tx_len; i++) for (i = 0; i < tx_len; i++)
@ -335,7 +340,7 @@ bool Gowin::flashFLASH(uint8_t *data, int length)
int nb_iter; int nb_iter;
int byte_length = length / 8; int byte_length = length / 8;
uint8_t tt[39]; uint8_t tt[39];
bzero(tt, 39); memset(tt, 0, 39);
_jtag->go_test_logic_reset(); _jtag->go_test_logic_reset();

View File

@ -111,7 +111,7 @@ void Jtag::init_internal(cable_t &cable, const string &dev,
} }
_tms_buffer = (unsigned char *)malloc(sizeof(unsigned char) * _tms_buffer_size); _tms_buffer = (unsigned char *)malloc(sizeof(unsigned char) * _tms_buffer_size);
bzero(_tms_buffer, _tms_buffer_size); memset(_tms_buffer, 0, _tms_buffer_size);
} }
int Jtag::detectChain(vector<int> &devices, int max_dev) int Jtag::detectChain(vector<int> &devices, int max_dev)
@ -164,7 +164,7 @@ int Jtag::flushTMS(bool flush_buffer)
ret = _jtag->writeTMS(_tms_buffer, _num_tms, flush_buffer); ret = _jtag->writeTMS(_tms_buffer, _num_tms, flush_buffer);
/* reset buffer and number of bits */ /* reset buffer and number of bits */
bzero(_tms_buffer, _tms_buffer_size); memset(_tms_buffer, 0, _tms_buffer_size);
_num_tms = 0; _num_tms = 0;
} else if (flush_buffer) { } else if (flush_buffer) {
_jtag->flush(); _jtag->flush();

View File

@ -614,7 +614,7 @@ bool Lattice::wr_rd(uint8_t cmd,
uint8_t xfer_tx[xfer_len]; uint8_t xfer_tx[xfer_len];
uint8_t xfer_rx[xfer_len]; uint8_t xfer_rx[xfer_len];
bzero(xfer_tx, xfer_len); memset(xfer_tx, 0, xfer_len);
int i; int i;
if (tx != NULL) { if (tx != NULL) {
for (i = 0; i < tx_len; i++) for (i = 0; i < tx_len; i++)
@ -793,7 +793,7 @@ bool Lattice::Verify(std::vector<std::string> data, bool unlock)
tx_buf[0] = REG_CFG_FLASH; tx_buf[0] = REG_CFG_FLASH;
_jtag->shiftIR(tx_buf, NULL, 8, Jtag::PAUSE_IR); _jtag->shiftIR(tx_buf, NULL, 8, Jtag::PAUSE_IR);
bzero(tx_buf, 16); memset(tx_buf, 0, 16);
bool failure = false; bool failure = false;
ProgressBar progress("Verifying", data.size(), 50); ProgressBar progress("Verifying", data.size(), 50);
for (size_t line = 0; line< data.size(); line++) { for (size_t line = 0; line< data.size(); line++) {
@ -826,7 +826,7 @@ uint64_t Lattice::readFeaturesRow()
uint8_t tx_buf[8]; uint8_t tx_buf[8];
uint8_t rx_buf[8]; uint8_t rx_buf[8];
uint64_t reg = 0; uint64_t reg = 0;
bzero(tx_buf, 8); memset(tx_buf, 0, 8);
wr_rd(READ_FEATURE_ROW, tx_buf, 8, rx_buf, 8); wr_rd(READ_FEATURE_ROW, tx_buf, 8, rx_buf, 8);
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
reg |= ((uint64_t)rx_buf[i] << (i*8)); reg |= ((uint64_t)rx_buf[i] << (i*8));

View File

@ -17,7 +17,6 @@
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <arpa/inet.h>
#include <algorithm> #include <algorithm>
#include <functional> #include <functional>

View File

@ -185,9 +185,9 @@ int main(int argc, char **argv)
delete(jtag); delete(jtag);
} }
// parse double from string in enginerring notation // parse double from string in engineering notation
// can deal with postfixes k and m, add more when required // can deal with postfixes k and m, add more when required
static error_t parse_eng(string arg, double *dst) { static int parse_eng(string arg, double *dst) {
try { try {
size_t end; size_t end;
double base = stod(arg, &end); double base = stod(arg, &end);
@ -209,7 +209,7 @@ static error_t parse_eng(string arg, double *dst) {
return EINVAL; return EINVAL;
} }
} catch (...) { } catch (...) {
cerr << "error : speed: invaild format" << endl; cerr << "error : speed: invalid format" << endl;
return EINVAL; return EINVAL;
} }
} }