mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-09-01 18:48:49 +02:00
180 lines
4.3 KiB
C++
180 lines
4.3 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
/*
|
|
* Copyright (C) 2019 Gwenhael Goavec-Merou <[email protected]>
|
|
*/
|
|
|
|
#include "bitparser.hpp"
|
|
#include "display.hpp"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <utility>
|
|
#ifndef _WIN32
|
|
#include <arpa/inet.h>
|
|
#else
|
|
//for ntohs
|
|
#include <winsock2.h>
|
|
#endif
|
|
|
|
|
|
#define display(...) \
|
|
do { if (_verbose) fprintf(stdout, __VA_ARGS__);} while(0)
|
|
|
|
BitParser::BitParser(const std::string &filename, bool reverseOrder, bool verbose):
|
|
ConfigBitstreamParser(filename, ConfigBitstreamParser::BIN_MODE,
|
|
verbose), _reverseOrder(reverseOrder)
|
|
{
|
|
}
|
|
|
|
BitParser::~BitParser()
|
|
{
|
|
}
|
|
|
|
int BitParser::parseHeader()
|
|
{
|
|
int pos_data = 0;
|
|
int ret = 1;
|
|
uint16_t length;
|
|
std::string tmp;
|
|
|
|
/* Field 1 : misc header */
|
|
if (_raw_data.size() < 2) {
|
|
printError("BitParser: Bound check failure. Can't read Field 1 length");
|
|
return -1;
|
|
}
|
|
length = *(uint16_t *)&_raw_data[0];
|
|
length = ntohs(length);
|
|
pos_data += length + 2;
|
|
|
|
if (pos_data + 2 >= static_cast<int>(_raw_data.size())) {
|
|
printError("BitParser: Bound check failure. Can't read Field 2 length");
|
|
return -1;
|
|
}
|
|
|
|
length = ((static_cast<uint16_t>(_raw_data[pos_data]) & 0xff) << 8) |
|
|
((static_cast<uint16_t>(_raw_data[pos_data + 1]) & 0xff) << 0);
|
|
|
|
pos_data += 2;
|
|
|
|
while (1) {
|
|
/* type */
|
|
if (pos_data >= static_cast<int>(_raw_data.size())) {
|
|
printError("BitParser: Bound check failure. Field type");
|
|
return -1;
|
|
}
|
|
const uint8_t type = (uint8_t)_raw_data[pos_data++];
|
|
|
|
if (type != 'e') {
|
|
if (pos_data + 2 >= static_cast<int>(_raw_data.size())) {
|
|
printError("BitParser: Bound check failure, Field length");
|
|
return -1;
|
|
}
|
|
length = ((static_cast<uint16_t>(_raw_data[pos_data]) & 0xff) << 8) |
|
|
((static_cast<uint16_t>(_raw_data[pos_data + 1]) & 0xff) << 0);
|
|
pos_data += 2;
|
|
} else {
|
|
length = 4;
|
|
}
|
|
if (static_cast<int>(_raw_data.size()) < pos_data + length) {
|
|
printError("BitParser: Bound check failure. Field Data");
|
|
return -1;
|
|
}
|
|
tmp = _raw_data.substr(pos_data, length);
|
|
pos_data += length;
|
|
|
|
switch (type) {
|
|
case 'a': { /* design name:userid:synthesize tool version */
|
|
std::stringstream ss(tmp);
|
|
std::string token;
|
|
bool first = true;
|
|
|
|
while (std::getline(ss, token, ';')) {
|
|
if (first) {
|
|
_hdr["design_name"] = token;
|
|
first = false;
|
|
continue;
|
|
}
|
|
|
|
auto pos = token.find('=');
|
|
if (pos != std::string::npos) {
|
|
auto key = token.substr(0, pos);
|
|
if (length < pos + 1) {
|
|
printError("Failed to find for key");
|
|
return -1;
|
|
}
|
|
auto value = token.substr(pos + 1);
|
|
if (key == "UserID") {
|
|
_hdr["userId"] = value;
|
|
} else if (key == "Version") {
|
|
_hdr["version"] = value;
|
|
} else if (key == "SW_CRC") {
|
|
_hdr["crc"] = value;
|
|
} else {
|
|
printWarn("Unknown key " + key);
|
|
}
|
|
}
|
|
}
|
|
} break;
|
|
case 'b': /* FPGA model */
|
|
_hdr["part_name"] = tmp.substr(0, length);
|
|
break;
|
|
case 'c': /* buildDate */
|
|
_hdr["date"] = tmp.substr(0, length);
|
|
break;
|
|
case 'd': /* buildHour */
|
|
_hdr["hour"] = tmp.substr(0, length);
|
|
break;
|
|
case 'e': /* file size */
|
|
_bit_length = 0;
|
|
for (int i = 0; i < 4; i++) {
|
|
_bit_length <<= 8;
|
|
_bit_length |= 0xff & tmp[i];
|
|
}
|
|
return pos_data;
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int BitParser::parse()
|
|
{
|
|
/* process all field */
|
|
int pos = parseHeader();
|
|
if (pos == -1) {
|
|
printError("BitParser: parseHeader failed");
|
|
return 1;
|
|
}
|
|
|
|
/* _bit_length is length of data to send */
|
|
int rest_of_file_length = _file_size - pos;
|
|
if (_bit_length < rest_of_file_length) {
|
|
printWarn("File is longer than bitstream length declared in the header: " +
|
|
std::to_string(rest_of_file_length) + " vs " + std::to_string(_bit_length)
|
|
);
|
|
} else if (_bit_length > rest_of_file_length) {
|
|
printError("File is shorter than bitstream length declared in the header: " +
|
|
std::to_string(rest_of_file_length) + " vs " + std::to_string(_bit_length)
|
|
);
|
|
return 1;
|
|
}
|
|
|
|
_bit_data.resize(_bit_length);
|
|
std::move(_raw_data.begin() + pos, _raw_data.begin() + pos + _bit_length, _bit_data.begin());
|
|
|
|
if (_reverseOrder) {
|
|
for (int i = 0; i < _bit_length; i++) {
|
|
_bit_data[i] = reverseByte(_bit_data[i]);
|
|
}
|
|
}
|
|
|
|
/* convert size to bit */
|
|
_bit_length *= 8;
|
|
|
|
return 0;
|
|
}
|