File size: 20,288 Bytes
cb65407 | 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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | /******************************************************************************
* Copyright (c) 2013 Potential Ventures Ltd
* Copyright (c) 2013 SolarFlare Communications Inc
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Potential Ventures Ltd,
* SolarFlare Communications Inc nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL POTENTIAL VENTURES LTD BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include <cocotb_utils.h>
#include <sys/types.h>
#include <algorithm>
#include <map>
#include <string>
#include <vector>
#include "gpi_priv.h"
using namespace std;
static vector<GpiImplInterface *> registered_impls;
#ifdef SINGLETON_HANDLES
class GpiHandleStore {
public:
GpiObjHdl *check_and_store(GpiObjHdl *hdl) {
std::map<std::string, GpiObjHdl *>::iterator it;
const std::string &name = hdl->get_fullname();
LOG_DEBUG("Checking %s exists", name.c_str());
it = handle_map.find(name);
if (it == handle_map.end()) {
handle_map[name] = hdl;
return hdl;
} else {
LOG_DEBUG("Found duplicate %s", name.c_str());
delete hdl;
return it->second;
}
}
uint64_t handle_count() { return handle_map.size(); }
void clear() {
std::map<std::string, GpiObjHdl *>::iterator it;
// Delete the object handles before clearing the map
for (it = handle_map.begin(); it != handle_map.end(); it++) {
delete (it->second);
}
handle_map.clear();
}
private:
std::map<std::string, GpiObjHdl *> handle_map;
};
static GpiHandleStore unique_handles;
#define CHECK_AND_STORE(_x) unique_handles.check_and_store(_x)
#define CLEAR_STORE() unique_handles.clear()
#else
#define CHECK_AND_STORE(_x) _x
#define CLEAR_STORE() (void)0 // No-op
#endif
static bool sim_ending = false;
static size_t gpi_print_registered_impl() {
vector<GpiImplInterface *>::iterator iter;
for (iter = registered_impls.begin(); iter != registered_impls.end();
iter++) {
LOG_INFO("%s registered", (*iter)->get_name_c());
}
return registered_impls.size();
}
int gpi_register_impl(GpiImplInterface *func_tbl) {
vector<GpiImplInterface *>::iterator iter;
for (iter = registered_impls.begin(); iter != registered_impls.end();
iter++) {
if ((*iter)->get_name_s() == func_tbl->get_name_s()) {
LOG_WARN("%s already registered, check GPI_EXTRA",
func_tbl->get_name_c());
return -1;
}
}
registered_impls.push_back(func_tbl);
return 0;
}
bool gpi_has_registered_impl() { return registered_impls.size() > 0; }
void gpi_embed_init(int argc, char const *const *argv) {
if (embed_sim_init(argc, argv)) gpi_embed_end();
}
void gpi_embed_end() {
embed_sim_event("Simulator shut down prematurely");
sim_ending = true;
}
void gpi_sim_end() {
registered_impls[0]->sim_end();
sim_ending = true;
}
void gpi_cleanup(void) {
CLEAR_STORE();
embed_sim_cleanup();
}
static void gpi_load_libs(std::vector<std::string> to_load) {
std::vector<std::string>::iterator iter;
for (iter = to_load.begin(); iter != to_load.end(); iter++) {
std::string arg = *iter;
auto const idx = arg.rfind(
':'); // find from right since path could contain colons (Windows)
if (idx == std::string::npos) {
// no colon in the string
printf("cocotb: Error parsing GPI_EXTRA %s\n", arg.c_str());
exit(1);
}
std::string const lib_name = arg.substr(0, idx);
std::string const func_name = arg.substr(idx + 1, std::string::npos);
void *lib_handle = utils_dyn_open(lib_name.c_str());
if (!lib_handle) {
printf("cocotb: Error loading shared library %s\n",
lib_name.c_str());
exit(1);
}
void *entry_point = utils_dyn_sym(lib_handle, func_name.c_str());
if (!entry_point) {
char const *fmt =
"cocotb: Unable to find entry point %s for shared library "
"%s\n%s";
char const *msg =
" Perhaps you meant to use `,` instead of `:` to "
"separate library names, as this changed in cocotb 1.4?\n";
printf(fmt, func_name.c_str(), lib_name.c_str(), msg);
exit(1);
}
layer_entry_func new_lib_entry = (layer_entry_func)entry_point;
new_lib_entry();
}
}
void gpi_entry_point() {
/* Lets look at what other libs we were asked to load too */
char *lib_env = getenv("GPI_EXTRA");
if (lib_env) {
std::string lib_list = lib_env;
std::string const delim = ",";
std::vector<std::string> to_load;
size_t e_pos = 0;
while (std::string::npos != (e_pos = lib_list.find(delim))) {
std::string lib = lib_list.substr(0, e_pos);
lib_list.erase(0, e_pos + delim.length());
to_load.push_back(lib);
}
if (lib_list.length()) {
to_load.push_back(lib_list);
}
gpi_load_libs(to_load);
}
/* Finally embed Python */
embed_init_python();
gpi_print_registered_impl();
}
void gpi_get_sim_time(uint32_t *high, uint32_t *low) {
registered_impls[0]->get_sim_time(high, low);
}
void gpi_get_sim_precision(int32_t *precision) {
/* We clamp to sensible values here, 1e-15 min and 1e3 max */
int32_t val;
registered_impls[0]->get_sim_precision(&val);
if (val > 2) val = 2;
if (val < -15) val = -15;
*precision = val;
}
const char *gpi_get_simulator_product() {
return registered_impls[0]->get_simulator_product();
}
const char *gpi_get_simulator_version() {
return registered_impls[0]->get_simulator_version();
}
gpi_sim_hdl gpi_get_root_handle(const char *name) {
/* May need to look over all the implementations that are registered
to find this handle */
vector<GpiImplInterface *>::iterator iter;
GpiObjHdl *hdl = NULL;
LOG_DEBUG("Looking for root handle '%s' over %d implementations", name,
registered_impls.size());
for (iter = registered_impls.begin(); iter != registered_impls.end();
iter++) {
if ((hdl = (*iter)->get_root_handle(name))) {
LOG_DEBUG("Got a Root handle (%s) back from %s",
hdl->get_name_str(), (*iter)->get_name_c());
break;
}
}
if (hdl)
return CHECK_AND_STORE(hdl);
else {
LOG_ERROR("No root handle found");
return hdl;
}
}
static GpiObjHdl *gpi_get_handle_by_name_(GpiObjHdl *parent,
const std::string &name,
GpiImplInterface *skip_impl) {
LOG_DEBUG("Searching for %s", name.c_str());
// check parent impl *first* if it's not skipped
if (!skip_impl || (skip_impl != parent->m_impl)) {
auto hdl = parent->m_impl->native_check_create(name, parent);
if (hdl) {
return CHECK_AND_STORE(hdl);
}
}
// iterate over all registered impls to see if we can get the signal
for (auto iter = registered_impls.begin(); iter != registered_impls.end();
iter++) {
// check if impl is skipped
if (skip_impl && (skip_impl == (*iter))) {
LOG_DEBUG("Skipping %s implementation", (*iter)->get_name_c());
continue;
}
// already checked parent implementation
if ((*iter) == parent->m_impl) {
LOG_DEBUG("Already checked %s implementation",
(*iter)->get_name_c());
continue;
}
LOG_DEBUG("Checking if %s is native through implementation %s",
name.c_str(), (*iter)->get_name_c());
/* If the current interface is not the same as the one that we
are going to query then append the name we are looking for to
the parent, such as <parent>.name. This is so that its entity can
be seen discovered even if the parents implementation is not the same
as the one that we are querying through */
auto hdl = (*iter)->native_check_create(name, parent);
if (hdl) {
LOG_DEBUG("Found %s via %s", name.c_str(), (*iter)->get_name_c());
return CHECK_AND_STORE(hdl);
}
}
return NULL;
}
static GpiObjHdl *gpi_get_handle_by_raw(GpiObjHdl *parent, void *raw_hdl,
GpiImplInterface *skip_impl) {
vector<GpiImplInterface *>::iterator iter;
GpiObjHdl *hdl = NULL;
for (iter = registered_impls.begin(); iter != registered_impls.end();
iter++) {
if (skip_impl && (skip_impl == (*iter))) {
LOG_DEBUG("Skipping %s implementation", (*iter)->get_name_c());
continue;
}
if ((hdl = (*iter)->native_check_create(raw_hdl, parent))) {
LOG_DEBUG("Found %s via %s", hdl->get_name_str(),
(*iter)->get_name_c());
break;
}
}
if (hdl)
return CHECK_AND_STORE(hdl);
else {
LOG_WARN(
"Failed to convert a raw handle to valid object via any registered "
"implementation");
return hdl;
}
}
gpi_sim_hdl gpi_get_handle_by_name(gpi_sim_hdl base, const char *name) {
std::string s_name = name;
GpiObjHdl *hdl = gpi_get_handle_by_name_(base, s_name, NULL);
if (!hdl) {
LOG_DEBUG(
"Failed to find a handle named %s via any registered "
"implementation",
name);
}
return hdl;
}
gpi_sim_hdl gpi_get_handle_by_index(gpi_sim_hdl base, int32_t index) {
GpiObjHdl *hdl = NULL;
GpiImplInterface *intf = base->m_impl;
/* Shouldn't need to iterate over interfaces because indexing into a handle
* shouldn't cross the interface boundaries.
*
* NOTE: IUS's VPI interface returned valid VHDL handles, but then couldn't
* use the handle properly.
*/
LOG_DEBUG("Checking if index %d native through implementation %s ", index,
intf->get_name_c());
hdl = intf->native_check_create(index, base);
if (hdl)
return CHECK_AND_STORE(hdl);
else {
LOG_WARN(
"Failed to find a handle at index %d via any registered "
"implementation",
index);
return hdl;
}
}
gpi_iterator_hdl gpi_iterate(gpi_sim_hdl obj_hdl, gpi_iterator_sel_t type) {
if (type == GPI_PACKAGE_SCOPES) {
if (obj_hdl != NULL) {
LOG_ERROR("Cannot iterate over package from non-NULL handles");
return NULL;
}
vector<GpiImplInterface *>::iterator implIter;
LOG_DEBUG("Looking for packages over %d implementations",
registered_impls.size());
for (implIter = registered_impls.begin();
implIter != registered_impls.end(); implIter++) {
GpiIterator *iter =
(*implIter)->iterate_handle(NULL, GPI_PACKAGE_SCOPES);
if (iter != NULL) return iter;
}
return NULL;
}
GpiIterator *iter = obj_hdl->m_impl->iterate_handle(obj_hdl, type);
if (!iter) {
return NULL;
}
return iter;
}
gpi_sim_hdl gpi_next(gpi_iterator_hdl iter) {
std::string name;
GpiObjHdl *parent = iter->get_parent();
while (true) {
GpiObjHdl *next = NULL;
void *raw_hdl = NULL;
GpiIterator::Status ret = iter->next_handle(name, &next, &raw_hdl);
switch (ret) {
case GpiIterator::NATIVE:
LOG_DEBUG("Create a native handle");
return CHECK_AND_STORE(next);
case GpiIterator::NATIVE_NO_NAME:
LOG_DEBUG("Unable to fully setup handle, skipping");
continue;
case GpiIterator::NOT_NATIVE:
LOG_DEBUG(
"Found a name but unable to create via native "
"implementation, trying others");
next = gpi_get_handle_by_name_(parent, name, iter->m_impl);
if (next) {
return next;
}
LOG_WARN(
"Unable to create %s via any registered implementation",
name.c_str());
continue;
case GpiIterator::NOT_NATIVE_NO_NAME:
LOG_DEBUG(
"Found an object but not accessible via %s, trying others",
iter->m_impl->get_name_c());
next = gpi_get_handle_by_raw(parent, raw_hdl, iter->m_impl);
if (next) {
return next;
}
continue;
case GpiIterator::END:
LOG_DEBUG("Reached end of iterator");
delete iter;
return NULL;
}
}
}
const char *gpi_get_definition_name(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_definition_name();
}
const char *gpi_get_definition_file(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_definition_file();
}
const char *gpi_get_signal_value_binstr(gpi_sim_hdl sig_hdl) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
return obj_hdl->get_signal_value_binstr();
}
const char *gpi_get_signal_value_str(gpi_sim_hdl sig_hdl) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
return obj_hdl->get_signal_value_str();
}
double gpi_get_signal_value_real(gpi_sim_hdl sig_hdl) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
return obj_hdl->get_signal_value_real();
}
long gpi_get_signal_value_long(gpi_sim_hdl sig_hdl) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
return obj_hdl->get_signal_value_long();
}
const char *gpi_get_signal_name_str(gpi_sim_hdl sig_hdl) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
return obj_hdl->get_name_str();
}
const char *gpi_get_signal_type_str(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_type_str();
}
gpi_objtype_t gpi_get_object_type(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_type();
}
int gpi_is_constant(gpi_sim_hdl obj_hdl) {
if (obj_hdl->get_const()) return 1;
return 0;
}
int gpi_is_indexable(gpi_sim_hdl obj_hdl) {
if (obj_hdl->get_indexable()) return 1;
return 0;
}
void gpi_set_signal_value_int(gpi_sim_hdl sig_hdl, int32_t value,
gpi_set_action_t action) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
obj_hdl->set_signal_value(value, action);
}
void gpi_set_signal_value_binstr(gpi_sim_hdl sig_hdl, const char *binstr,
gpi_set_action_t action) {
std::string value = binstr;
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
obj_hdl->set_signal_value_binstr(value, action);
}
void gpi_set_signal_value_str(gpi_sim_hdl sig_hdl, const char *str,
gpi_set_action_t action) {
std::string value = str;
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
obj_hdl->set_signal_value_str(value, action);
}
void gpi_set_signal_value_real(gpi_sim_hdl sig_hdl, double value,
gpi_set_action_t action) {
GpiSignalObjHdl *obj_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
obj_hdl->set_signal_value(value, action);
}
int gpi_get_num_elems(gpi_sim_hdl obj_hdl) { return obj_hdl->get_num_elems(); }
int gpi_get_range_left(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_range_left();
}
int gpi_get_range_right(gpi_sim_hdl obj_hdl) {
return obj_hdl->get_range_right();
}
gpi_cb_hdl gpi_register_value_change_callback(int (*gpi_function)(void *),
void *gpi_cb_data,
gpi_sim_hdl sig_hdl, int edge) {
GpiSignalObjHdl *signal_hdl = static_cast<GpiSignalObjHdl *>(sig_hdl);
/* Do something based on int & GPI_RISING | GPI_FALLING */
GpiCbHdl *gpi_hdl = signal_hdl->register_value_change_callback(
edge, gpi_function, gpi_cb_data);
if (!gpi_hdl) {
LOG_ERROR("Failed to register a value change callback");
return NULL;
} else {
return gpi_hdl;
}
}
gpi_cb_hdl gpi_register_timed_callback(int (*gpi_function)(void *),
void *gpi_cb_data, uint64_t time) {
// It should not matter which implementation we use for this so just pick
// the first one
GpiCbHdl *gpi_hdl = registered_impls[0]->register_timed_callback(
time, gpi_function, gpi_cb_data);
if (!gpi_hdl) {
LOG_ERROR("Failed to register a timed callback");
return NULL;
} else {
return gpi_hdl;
}
}
gpi_cb_hdl gpi_register_readonly_callback(int (*gpi_function)(void *),
void *gpi_cb_data) {
// It should not matter which implementation we use for this so just pick
// the first one
GpiCbHdl *gpi_hdl = registered_impls[0]->register_readonly_callback(
gpi_function, gpi_cb_data);
if (!gpi_hdl) {
LOG_ERROR("Failed to register a readonly callback");
return NULL;
} else {
return gpi_hdl;
}
}
gpi_cb_hdl gpi_register_nexttime_callback(int (*gpi_function)(void *),
void *gpi_cb_data) {
// It should not matter which implementation we use for this so just pick
// the first one
GpiCbHdl *gpi_hdl = registered_impls[0]->register_nexttime_callback(
gpi_function, gpi_cb_data);
if (!gpi_hdl) {
LOG_ERROR("Failed to register a nexttime callback");
return NULL;
} else {
return gpi_hdl;
}
}
gpi_cb_hdl gpi_register_readwrite_callback(int (*gpi_function)(void *),
void *gpi_cb_data) {
// It should not matter which implementation we use for this so just pick
// the first one
GpiCbHdl *gpi_hdl = registered_impls[0]->register_readwrite_callback(
gpi_function, gpi_cb_data);
if (!gpi_hdl) {
LOG_ERROR("Failed to register a readwrite callback");
return NULL;
} else {
return gpi_hdl;
}
}
void gpi_deregister_callback(gpi_cb_hdl cb_hdl) {
cb_hdl->m_impl->deregister_callback(cb_hdl);
}
const char *GpiImplInterface::get_name_c() { return m_name.c_str(); }
const string &GpiImplInterface::get_name_s() { return m_name; }
void gpi_to_user() { LOG_TRACE("Passing control to GPI user"); }
void gpi_to_simulator() {
if (sim_ending) {
gpi_cleanup();
}
LOG_TRACE("Returning control to simulator");
}
|