2024-12-04 12:13:51 +01:00
|
|
|
/*
|
|
|
|
|
* prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2024 The Project Peppercorn Authors.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2024-11-19 08:24:49 +01:00
|
|
|
#include <boost/program_options.hpp>
|
2025-10-22 15:27:22 +02:00
|
|
|
#include <filesystem>
|
2024-12-04 12:13:51 +01:00
|
|
|
#include <fstream>
|
|
|
|
|
#include <iostream>
|
2024-11-19 08:24:49 +01:00
|
|
|
#include <stdexcept>
|
|
|
|
|
#include <streambuf>
|
2024-12-04 12:13:51 +01:00
|
|
|
#include "Bitstream.hpp"
|
|
|
|
|
#include "Chip.hpp"
|
|
|
|
|
#include "ChipConfig.hpp"
|
|
|
|
|
#include "version.hpp"
|
2024-11-19 08:24:49 +01:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
using namespace GateMate;
|
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
|
|
po::options_description options("Allowed options");
|
|
|
|
|
options.add_options()("help,h", "show help");
|
|
|
|
|
options.add_options()("verbose,v", "verbose output");
|
|
|
|
|
po::positional_options_description pos;
|
|
|
|
|
options.add_options()("input", po::value<std::string>()->required(), "input bitstream file");
|
|
|
|
|
pos.add("input", 1);
|
|
|
|
|
options.add_options()("textcfg", po::value<std::string>()->required(), "output textual configuration");
|
|
|
|
|
pos.add("textcfg", 1);
|
|
|
|
|
|
|
|
|
|
po::variables_map vm;
|
|
|
|
|
try {
|
|
|
|
|
po::parsed_options parsed = po::command_line_parser(argc, argv).options(options).positional(pos).run();
|
|
|
|
|
po::store(parsed, vm);
|
|
|
|
|
po::notify(vm);
|
2024-12-04 12:13:51 +01:00
|
|
|
} catch (po::required_option &e) {
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Error: input file is mandatory." << std::endl << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
goto help;
|
2024-12-04 12:13:51 +01:00
|
|
|
} catch (std::exception &e) {
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Error: " << e.what() << std::endl << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
goto help;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (vm.count("help")) {
|
2024-12-04 12:13:51 +01:00
|
|
|
help:
|
2025-10-22 15:27:22 +02:00
|
|
|
std::filesystem::path path(argv[0]);
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Open Source Tools for GateMate FPGAs Version " << git_describe_str << std::endl;
|
|
|
|
|
std::cerr << "Copyright (C) 2024 The Project Peppercorn Authors" << std::endl;
|
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
std::cerr << path.stem().c_str() << ": GateMate bitstream to text config converter" << std::endl;
|
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
std::cerr << "Usage: " << argv[0] << " input.bit [output.config] [options]" << std::endl;
|
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
std::cerr << options << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
return vm.count("help") ? 0 : 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-18 10:19:43 +01:00
|
|
|
std::ifstream bit_file(vm["input"].as<std::string>(), std::ios::binary);
|
2024-11-19 08:24:49 +01:00
|
|
|
if (!bit_file) {
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Failed to open input file" << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2024-12-04 12:13:51 +01:00
|
|
|
Chip c = Bitstream::read(bit_file).deserialise_chip();
|
|
|
|
|
ChipConfig cc = ChipConfig::from_chip(c);
|
2024-12-18 10:19:43 +01:00
|
|
|
std::ofstream out_file(vm["textcfg"].as<std::string>());
|
2024-11-19 08:24:49 +01:00
|
|
|
if (!out_file) {
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Failed to open output file" << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
2024-12-04 12:13:51 +01:00
|
|
|
out_file << cc.to_string();
|
2024-11-19 08:24:49 +01:00
|
|
|
return 0;
|
|
|
|
|
} catch (BitstreamParseError &e) {
|
2024-12-18 10:19:43 +01:00
|
|
|
std::cerr << "Failed to process input bitstream: " << e.what() << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
return 1;
|
2024-12-18 10:19:43 +01:00
|
|
|
} catch (std::runtime_error &e) {
|
|
|
|
|
std::cerr << "Failed to process input bitstream: " << e.what() << std::endl;
|
2024-11-19 08:24:49 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|