aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/main.cc
blob: afdd1a4acfc02226b3a89eafa2cab3c0343c3cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
 *  nextpnr -- Next Generation Place and Route
 *
 *  Copyright (C) 2018  Clifford Wolf <clifford@clifford.at>
 *
 *  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.
 *
 */
#include "design.h"
#include "mainwindow.h"
#include <QApplication>
#include <iostream>
#include "version.h"
#include <boost/program_options.hpp>
#include "pybindings.h"

int main(int argc, char *argv[])
{
	namespace po = boost::program_options;

	std::string str;

	po::options_description options("Allowed options");
	options.add_options()("help,h","show help");
	options.add_options()("test","just a check");
	options.add_options()("gui","start gui");
	options.add_options()("file", po::value<std::string>(), "python file to execute");
	options.add_options()("version,v","show version");	

	po::positional_options_description pos;
	pos.add("file", -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);    
	}
    catch(std::exception& e)
    {
        std::cout << e.what() << "\n";
        return 1;
    }

	if (vm.count("help") || argc == 1)
	{
		std::cout << basename(argv[0]) << " -- Next Generation Place and Route (git sha1 " GIT_COMMIT_HASH_STR ")\n";
		std::cout << "\n";
		std::cout << options << "\n";
		return 1;
	}
	
	if (vm.count("version"))
	{
		std::cout << basename(argv[0]) << " -- Next Generation Place and Route (git sha1 " GIT_COMMIT_HASH_STR ")\n";
		return 1;
	}

	if (vm.count("gui")) 
	{
		QApplication a(argc, argv);
		MainWindow w;
		w.show();

		return a.exec();
	}

	if (vm.count("test"))
	{
		ChipArgs chipArgs;
		chipArgs.type = ChipArgs::LP384;

		Design design(chipArgs);
		int bel_count = 0, wire_count = 0, pip_count = 0;

		std::cout << "Checking bel names.\n";
		for (auto bel : design.chip.getBels()) {
			auto name = design.chip.getBelName(bel);
			assert(bel == design.chip.getBelByName(name));
			bel_count++;
		}
		std::cout << "  checked " << bel_count << " bels.\n";

		std::cout << "Checking wire names.\n";
		for (auto wire : design.chip.getWires()) {
			auto name = design.chip.getWireName(wire);
			assert(wire == design.chip.getWireByName(name));
			wire_count++;
		}
		std::cout << "  checked " << wire_count << " wires.\n";

		std::cout << "Checking pip names.\n";
		for (auto pip : design.chip.getPips()) {
			auto name = design.chip.getPipName(pip);
			assert(pip == design.chip.getPipByName(name));
			pip_count++;
		}
		std::cout << "  checked " << pip_count << " pips.\n";

		std::cout << "Checking uphill -> downhill consistency.\n";
		for (auto dst : design.chip.getWires()) {
			for (auto uphill_pip : design.chip.getPipsUphill(dst)) {
				bool found_downhill = false;
				for (auto downhill_pip : design.chip.getPipsDownhill(design.chip.getPipSrcWire(uphill_pip))) {
					if (uphill_pip == downhill_pip) {
						assert(!found_downhill);
						found_downhill = true;
					}
				}
				assert(found_downhill);
			}
		}

		std::cout << "Checking downhill -> uphill consistency.\n";
		for (auto dst : design.chip.getWires()) {
			for (auto downhill_pip : design.chip.getPipsDownhill(dst)) {
				bool found_uphill = false;
				for (auto uphill_pip : design.chip.getPipsUphill(design.chip.getPipDstWire(downhill_pip))) {
					if (uphill_pip == downhill_pip) {
						assert(!found_uphill);
						found_uphill = true;
					}
				}
				assert(found_uphill);
			}
		}

		return 0;
	}

	if (vm.count("file")) 
	{
		std::string filename = vm["file"].as<std::string>();
		execute_python_file(argv[0],filename.c_str());
    }	
	
	return 0;
}