2015-02-18 00:29:54 +00:00
|
|
|
/*
|
|
|
|
* KiRouter - a push-and-(sometimes-)shove PCB router
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2015 CERN
|
|
|
|
* Author: Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
|
|
|
#include <base_units.h> // God forgive me doing this...
|
|
|
|
#include <colors.h>
|
|
|
|
|
|
|
|
#include "trace.h"
|
|
|
|
|
|
|
|
#include "pns_node.h"
|
|
|
|
#include "pns_itemset.h"
|
|
|
|
#include "pns_topology.h"
|
|
|
|
#include "pns_meander_skew_placer.h"
|
|
|
|
|
|
|
|
#include "pns_router.h"
|
|
|
|
|
|
|
|
|
|
|
|
PNS_MEANDER_SKEW_PLACER::PNS_MEANDER_SKEW_PLACER ( PNS_ROUTER* aRouter ) :
|
|
|
|
PNS_MEANDER_PLACER ( aRouter )
|
|
|
|
{
|
2015-05-15 12:49:11 +00:00
|
|
|
// Init temporary variables (do not leave uninitialized members)
|
|
|
|
m_coupledLength = 0;
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
PNS_MEANDER_SKEW_PLACER::~PNS_MEANDER_SKEW_PLACER( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
bool PNS_MEANDER_SKEW_PLACER::Start( const VECTOR2I& aP, PNS_ITEM* aStartItem )
|
|
|
|
{
|
|
|
|
VECTOR2I p;
|
|
|
|
|
|
|
|
if( !aStartItem || !aStartItem->OfKind( PNS_ITEM::SEGMENT ) )
|
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
Router()->SetFailureReason( _( "Please select a differential pair trace you want to tune." ) );
|
2015-02-18 00:29:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
m_initialSegment = static_cast<PNS_SEGMENT*>( aStartItem );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
p = m_initialSegment->Seg().NearestPoint( aP );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
m_originLine = NULL;
|
|
|
|
m_currentNode = NULL;
|
|
|
|
m_currentStart = p;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
m_world = Router()->GetWorld( )->Branch();
|
2015-02-18 00:29:54 +00:00
|
|
|
m_originLine = m_world->AssembleLine( m_initialSegment );
|
|
|
|
|
|
|
|
PNS_TOPOLOGY topo( m_world );
|
|
|
|
m_tunedPath = topo.AssembleTrivialPath( m_initialSegment );
|
|
|
|
|
|
|
|
if( !topo.AssembleDiffPair ( m_initialSegment, m_originPair ) )
|
|
|
|
{
|
|
|
|
Router()->SetFailureReason( _( "Unable to find complementary differential pair "
|
|
|
|
"net for skew tuning. Make sure the names of the nets belonging "
|
|
|
|
"to a differential pair end with either _N/_P or +/-." ) );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-02 14:10:02 +00:00
|
|
|
if( m_originPair.Gap() < 0 )
|
2015-07-02 14:11:15 +00:00
|
|
|
m_originPair.SetGap( Router()->Sizes().DiffPairGap() );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
if( !m_originPair.PLine().SegmentCount() ||
|
|
|
|
!m_originPair.NLine().SegmentCount() )
|
|
|
|
return false;
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-07-02 14:11:15 +00:00
|
|
|
m_tunedPathP = topo.AssembleTrivialPath( m_originPair.PLine().GetLink( 0 ) );
|
|
|
|
m_tunedPathN = topo.AssembleTrivialPath( m_originPair.NLine().GetLink( 0 ) );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
|
|
|
m_world->Remove( m_originLine );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
m_currentWidth = m_originLine->Width( );
|
|
|
|
m_currentEnd = VECTOR2I( 0, 0 );
|
|
|
|
|
|
|
|
if ( m_originPair.PLine().Net () == m_originLine->Net() )
|
2015-07-02 14:11:15 +00:00
|
|
|
m_coupledLength = itemsetLength( m_tunedPathN );
|
2015-02-18 00:29:54 +00:00
|
|
|
else
|
2015-07-02 14:11:15 +00:00
|
|
|
m_coupledLength = itemsetLength( m_tunedPathP );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
int PNS_MEANDER_SKEW_PLACER::origPathLength( ) const
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
return itemsetLength ( m_tunedPath );
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
int PNS_MEANDER_SKEW_PLACER::itemsetLength( const PNS_ITEMSET& aSet ) const
|
|
|
|
{
|
|
|
|
int total = 0;
|
2015-02-18 16:53:46 +00:00
|
|
|
BOOST_FOREACH( const PNS_ITEM* item, aSet.CItems() )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
if( const PNS_LINE* l = dyn_cast<const PNS_LINE*>( item ) )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
total += l->CLine().Length();
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
|
|
|
int PNS_MEANDER_SKEW_PLACER::currentSkew() const
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
return m_lastLength - m_coupledLength;
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
bool PNS_MEANDER_SKEW_PLACER::Move( const VECTOR2I& aP, PNS_ITEM* aEndItem )
|
|
|
|
{
|
2015-02-18 16:53:46 +00:00
|
|
|
return doMove( aP, aEndItem, m_coupledLength + m_settings.m_targetSkew );
|
2015-02-18 00:29:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
const wxString PNS_MEANDER_SKEW_PLACER::TuningInfo() const
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
wxString status;
|
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
switch( m_lastStatus )
|
2015-02-18 00:29:54 +00:00
|
|
|
{
|
|
|
|
case TOO_LONG:
|
|
|
|
status = _( "Too long: skew " );
|
|
|
|
break;
|
|
|
|
case TOO_SHORT:
|
2015-02-18 16:53:46 +00:00
|
|
|
status = _( "Too short: skew " );
|
2015-02-18 00:29:54 +00:00
|
|
|
break;
|
|
|
|
case TUNED:
|
2015-02-18 16:53:46 +00:00
|
|
|
status = _( "Tuned: skew " );
|
2015-02-18 00:29:54 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return _( "?" );
|
|
|
|
}
|
|
|
|
|
|
|
|
status += LengthDoubleToString( (double) m_lastLength - m_coupledLength, false );
|
|
|
|
status += "/";
|
|
|
|
status += LengthDoubleToString( (double) m_settings.m_targetSkew, false );
|
2015-02-18 16:53:46 +00:00
|
|
|
|
2015-02-18 00:29:54 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|