From 4376ae43af4f44e6f13fc5fd2355cbe59adcb425 Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 4 Jul 2018 13:51:46 +0200 Subject: ice40: Near-complete Arch bindngs Signed-off-by: David Shah --- ice40/pybindings.cc | 52 +++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 47 insertions(+), 5 deletions(-) (limited to 'ice40') diff --git a/ice40/pybindings.cc b/ice40/pybindings.cc index 24e6ae97..532ba4e7 100644 --- a/ice40/pybindings.cc +++ b/ice40/pybindings.cc @@ -117,20 +117,62 @@ void arch_wrap_python() fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getBelsAtSameTile"); + fn_wrapper_2a, + conv_from_str, conv_from_str>::def_wrap(ctx_cls, "getWireBelPin"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getBelPinUphill"); + fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getBelPinsDownhill"); + + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getWireChecksum"); + fn_wrapper_3a_v, + conv_from_str, pass_through>::def_wrap(ctx_cls, "bindWire"); + fn_wrapper_1a_v>::def_wrap( + ctx_cls, "unbindWire"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "checkWireAvail"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getBoundWireNet"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getConflictingWireNet"); + fn_wrapper_0a>::def_wrap( ctx_cls, "getWires"); + fn_wrapper_0a>::def_wrap( ctx_cls, "getPips"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getPipChecksum"); + fn_wrapper_3a_v, + conv_from_str, pass_through>::def_wrap(ctx_cls, "bindPip"); + fn_wrapper_1a_v>::def_wrap( + ctx_cls, "unbindPip"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "checkPipAvail"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getBoundPipNet"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getConflictingPipNet"); fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getPipsDownhill"); fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getPipsUphill"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getWireAliases"); fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getPipSrcWire"); fn_wrapper_1a, conv_from_str>::def_wrap(ctx_cls, "getPipDstWire"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getPipDelay"); + + fn_wrapper_1a, + pass_through>::def_wrap(ctx_cls, "getPackagePinBel"); + fn_wrapper_1a, + conv_from_str>::def_wrap(ctx_cls, "getBelPackagePin"); fn_wrapper_0a>::def_wrap( ctx_cls, "getChipName"); @@ -138,20 +180,20 @@ void arch_wrap_python() "archId"); typedef std::unordered_map> CellMap; + typedef std::unordered_map> NetMap; readonly_wrapper>::def_wrap(ctx_cls, "cells"); - + readonly_wrapper>::def_wrap(ctx_cls, + "nets"); WRAP_RANGE(Bel, conv_to_str); WRAP_RANGE(Wire, conv_to_str); WRAP_RANGE(AllPip, conv_to_str); WRAP_RANGE(Pip, conv_to_str); WRAP_MAP_UPTR(CellMap, "IdCellMap"); - // WRAP_RANGE(BelPin); - // WRAP_RANGE(Wire); - // WRAP_RANGE(AllPip); - // WRAP_RANGE(Pip); + WRAP_MAP_UPTR(NetMap, "IdNetMap"); + } NEXTPNR_NAMESPACE_END -- cgit v1.2.3