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
|
/*--------------------------------------------------------------*/
/* qrouter.h -- general purpose autorouter */
/*--------------------------------------------------------------*/
/* Written by Steve Beccue, 2003 */
/* Modified by Tim Edwards 2011-2013 */
/*--------------------------------------------------------------*/
#ifndef QROUTER_H
#define OGRID(x, y, layer) ((int)((x) + ((y) * NumChannelsX[(layer)])))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define ABSDIFF(x, y) (((x) > (y)) ? ((x) - (y)) : ((y) - (x)))
#define EPS 1e-4 // For handling round-off error; value
// is in um (so 1e-4 = 0.1nm), should be
// smaller than any feature size.
// For handling round-off error on signed values. REPS(x) is x + EPS when
// x is positive, and x - EPS when x is negative.
#define REPS(x) (((x) < 0) ? ((x) - EPS) : ((x) + EPS))
#define TRUE 1
#define FALSE 0
#ifndef _SYS_TYPES_H
#ifndef u_char
typedef unsigned char u_char;
#endif
#ifndef u_short
typedef unsigned short u_short;
#endif
#ifndef u_int
typedef unsigned int u_int;
#endif
#ifndef u_long
typedef unsigned long u_long;
#endif
#endif /* _SYS_TYPES_H */
/* Maximum number of route layers */
#define MAX_LAYERS 9
/* Maximum number of pins in a gate */
#define MAX_GATE_NODES 64
/* Cell name (and other names) max length */
#define MAX_NAME_LEN 1024
/* Max reasonable line length */
#define MAX_LINE_LEN 2048
/* Default configuration filename */
#define CONFIGFILENAME "route.cfg"
// define possible gate orientations
#define MNONE 0
#define MX 1
#define MY 2
// define search directions
#define NORTH (u_char)1
#define SOUTH (u_char)2
#define EAST (u_char)3
#define WEST (u_char)4
#define UP (u_char)5
#define DOWN (u_char)6
// define types of via checkerboard patterns
#define VIA_PATTERN_NONE -1
#define VIA_PATTERN_NORMAL 0
#define VIA_PATTERN_INVERT 1
// structure holding input and output scalefactors
typedef struct scalerec_ {
int iscale;
double oscale;
} ScaleRec;
// define a structure containing x, y, and layer
typedef struct gridp_ GRIDP;
struct gridp_ {
int x;
int y;
int lay;
u_int cost;
};
typedef struct proute_ PROUTE;
struct proute_ { // partial route
u_char flags; // values PR_PROCESSED and PR_CONFLICT
union {
u_int cost; // cost of route coming from predecessor
u_int net; // net number at route point
} prdata;
};
// Bit values for "flags" in PROUTE
#define PR_PRED_DMASK 0x07 // Mask for directional bits
#define PR_PRED_NONE 0x00 // This node does not have a predecessor
#define PR_PRED_N 0x01 // Predecessor is north
#define PR_PRED_S 0x02 // Predecessor is south
#define PR_PRED_E 0x03 // Predecessor is east
#define PR_PRED_W 0x04 // Predecessor is west
#define PR_PRED_U 0x05 // Predecessor is up
#define PR_PRED_D 0x06 // Predecessor is down
#define PR_PROCESSED 0x08 // Tag to avoid visiting more than once
#define PR_CONFLICT 0x10 // Two nets collide here during stage 2
#define PR_SOURCE 0x20 // This is a source node
#define PR_TARGET 0x40 // This is a target node
#define PR_COST 0x80 // if 1, use prdata.cost, not prdata.net
// Linked string list
typedef struct string_ *STRING;
struct string_ {
STRING next;
char *name;
};
/* Path segment information */
#define ST_WIRE 0x01
#define ST_VIA 0x02
#define ST_OFFSET_START 0x04 /* (x1, y1) is offset from grid */
#define ST_OFFSET_END 0x08 /* (x2, y2) is offset from grid */
typedef struct seg_ *SEG;
struct seg_ {
SEG next;
int layer;
int x1, y1, x2, y2;
u_char segtype;
};
/* DSEG is like a SEG, but coordinates are in microns (therefore type double) */
/* Used for gate node and obstruction positions. */
typedef struct dseg_ *DSEG;
struct dseg_ {
DSEG next;
int layer;
double x1, y1, x2, y2;
};
/* POINT is an integer point in three dimensions (layer giving the */
/* vertical dimension). */
typedef struct point_ *POINT;
struct point_ {
POINT next;
int layer;
int x1, y1;
};
/* DPOINT is a point location with coordinates given *both* as an */
/* integer (for the grid-based routing) and as a physical dimension */
/* (microns). */
typedef struct dpoint_ *DPOINT;
struct dpoint_ {
DPOINT next;
int layer;
double x, y;
int gridx, gridy;
};
typedef struct route_ *ROUTE;
typedef struct node_ *NODE;
struct route_ {
ROUTE next;
int netnum;
SEG segments;
u_char flags; // See below for flags
};
/* Definitions for flags in struct route_ */
#define RT_OUTPUT 0x1 // Route has been output
#define RT_STUB 0x2 // Route has been output
struct node_ {
NODE next;
int nodenum; // node ordering within its net
DPOINT taps; // point position for node taps
DPOINT extend; // point position within halo of the tap
char *netname; // name of net this node belongs to
int netnum; // number of net this node belongs to
int numnodes; // number of nodes on this net
int branchx; // position of the node branch in x
int branchy; // position of the node branch in y
};
// these are instances of gates in the netlist. The description of a
// given gate (the macro) is held in GateInfo. The same structure is
// used for both the macro and the instance records.
typedef struct gate_ *GATE;
struct gate_ {
GATE next;
char *gatename; // Name of instance
GATE gatetype; // Pointer to macro record
int nodes; // number of nodes on this gate
char *node[MAX_GATE_NODES]; // names of the pins on this gate
int netnum[MAX_GATE_NODES]; // net number connected to each pin
NODE noderec[MAX_GATE_NODES]; // node record for each pin
DSEG taps[MAX_GATE_NODES]; // list of gate node locations and layers
DSEG obs; // list of obstructions in gate
double width, height;
double placedX;
double placedY;
int orient;
};
// Structure for a network to be routed
typedef struct net_ *NET;
typedef struct netlist_ *NETLIST;
struct net_ {
int netnum; // a unique number for this net
char *netname;
NODE netnodes; // list of nodes connected to the net
int numnodes; // number of nodes connected to the net
u_char flags; // flags for this net (see below)
int netorder; // to be assigned by route strategy (critical
// nets first, then order by number of nodes).
int xmin, ymin; // Bounding box lower left corner
int xmax, ymax; // Bounding box upper right corner
int trunkx; // X position of the net's trunk line (see flags)
int trunky; // Y position of the net's trunk line (see flags)
NETLIST noripup; // list of nets that have been ripped up to
// route this net. This will not be allowed
// a second time, to avoid looping.
ROUTE routes; // routes for this net
};
// Flags used by NET "flags" record
#define NET_PENDING 1 // pending being placed on "abandoned" list
#define NET_CRITICAL 2 // net is in CriticalNet list
#define NET_IGNORED 4 // net is ignored by router
#define NET_STUB 8 // Net has at least one stub
#define NET_VERTICAL_TRUNK 16 // Trunk line is (preferred) vertical
// List of nets, used to maintain a list of failed routes
struct netlist_ {
NETLIST next;
NET net;
};
// A structure to hold information about source and target nets for
// a route, to be passed between the route setup and execution stages
struct routeinfo_ {
NET net;
ROUTE rt;
POINT glist;
NODE nsrc;
DPOINT nsrctap;
int maxcost;
u_char do_pwrbus;
int pwrbus_src;
struct seg_ bbox;
};
#define MAXRT 10000000 // "Infinite" route cost
// The following values are added to the Obs[] structure for unobstructed
// route positions close to a terminal, but not close enough to connect
// directly. They describe which direction to go to reach the terminal.
// The Stub[] vector indicates the distance needed to reach the terminal.
// The OFFSET_TAP flag marks a position that is inside a terminal but
// which needs to be adjusted in one direction to avoid a close obstruction.
// The Stub[] vector indicates the distance needed to avoid the obstruction.
//
// The maximum number of nets must not overrun the area used by flags, so
// the maximum number of nets is 0x7fffff, or 8,388,607 nets
#define PINOBSTRUCTMASK ((u_int)0xe0000000) // takes values from below
#define STUBROUTE_NS ((u_int)0x20000000) // route north or south to reach terminal
#define STUBROUTE_EW ((u_int)0x40000000) // route east or west to reach terminal
#define STUBROUTE_X ((u_int)0x60000000) // diagonal---not routable
#define OFFSET_TAP ((u_int)0x80000000) // position needs to be offset
#define NO_NET ((u_int)0x10000000) // indicates a non-routable obstruction
#define BLOCKED_N ((u_int)0x08000000) // grid point cannot be routed from the N
#define BLOCKED_S ((u_int)0x04000000) // grid point cannot be routed from the S
#define BLOCKED_E ((u_int)0x02000000) // grid point cannot be routed from the E
#define BLOCKED_W ((u_int)0x01000000) // grid point cannot be routed from the W
#define BLOCKED_MASK ((u_int)0x0f000000)
#define ROUTED_NET ((u_int)0x00800000) // indicates position occupied by a routed
// net
#define NETNUM_MASK ((u_int)0x107fffff) // Mask for the net number field
// (includes NO_NET)
#define MAX_NETNUMS ((u_int)0x007fffff) // Maximum net number
// Definitions used along with the NO_NET bit.
#define OBSTRUCT_MASK ((u_int)0x0000000f) // Tells where obstruction is
#define OBSTRUCT_N ((u_int)0x00000008) // relative to the grid point.
#define OBSTRUCT_S ((u_int)0x00000004) // Stub[] contains distance of
#define OBSTRUCT_E ((u_int)0x00000002) // obstruction to grid point.
#define OBSTRUCT_W ((u_int)0x00000001)
// Map and draw modes
#define MAP_NONE 0x0 // No map (blank background)
#define MAP_OBSTRUCT 0x1 // Make a map of obstructions and pins
#define MAP_CONGEST 0x2 // Make a map of congestion
#define MAP_ESTIMATE 0x3 // Make a map of estimated congestion
#define MAP_MASK 0x3
#define DRAW_NONE 0x0 // Draw only the background map
#define DRAW_ROUTES 0x4 // Draw routes on top of background map
#define DRAW_MASK 0x4
// Mask types (values other than 255 are interpreted as "slack" value)
#define MASK_MINIMUM (u_char)0 // No slack
#define MASK_SMALL (u_char)1 // Slack of +/-1
#define MASK_MEDIUM (u_char)2 // Slack of +/-2
#define MASK_LARGE (u_char)4 // Slack of +/-4
#define MASK_AUTO (u_char)253 // Choose best mask type
#define MASK_BBOX (u_char)254 // Mask is simple bounding box
#define MASK_NONE (u_char)255 // No mask used
// Definitions of bits in needblock
#define ROUTEBLOCKX (u_char)1 // Block adjacent routes in X
#define ROUTEBLOCKY (u_char)2 // Block adjacent routes in Y
#define VIABLOCKX (u_char)4 // Block adjacent vias in X
#define VIABLOCKY (u_char)8 // Block adjacent vias in Y
// Numnets + MIN_NET_NUMBER is guaranteed to be greater than the highest
// number assigned to a net.
#define MAXNETNUM (Numnets + MIN_NET_NUMBER)
/* Global variables */
extern STRING DontRoute;
extern STRING CriticalNet;
extern NET CurNet;
extern NETLIST FailedNets; // nets that have failed the first pass
extern char DEFfilename[];
extern ScaleRec Scales;
extern GATE GateInfo; // standard cell macro information
extern GATE PinMacro; // macro definition for a pin
extern GATE Nlgates;
extern NET *Nlnets;
extern u_char *RMask;
extern u_int *Obs[MAX_LAYERS]; // obstructions by layer, y, x
extern PROUTE *Obs2[MAX_LAYERS]; // working copy of Obs
extern float *Obsinfo[MAX_LAYERS]; // temporary detailed obstruction info
extern float *Stub[MAX_LAYERS]; // stub route distances to pins
extern NODE *Nodeloc[MAX_LAYERS]; // nodes are attached to grid points
// for reverse lookup
extern NODE *Nodesav[MAX_LAYERS]; // copy of Nodeloc used for restoring
// Nodeloc after net rip-up
extern DSEG UserObs; // user-defined obstruction layers
extern u_char needblock[MAX_LAYERS];
extern int Numnets;
extern u_char Verbose;
extern u_char keepTrying;
extern u_char forceRoutable;
extern u_char maskMode;
extern u_char mapType;
extern char *vddnet;
extern char *gndnet;
/* Tcl output to console handling */
#ifdef TCL_QROUTER
#define Fprintf tcl_printf
#define Flush tcl_stdflush
#define Vprintf tcl_vprintf
#else
#define Fprintf fprintf
#define Flush fflush
#define Vprintf vfprintf
#endif
/* Function prototypes */
extern int set_num_channels();
extern int allocate_obs_array();
NET getnettoroute();
int dofirststage(u_char graphdebug);
int dosecondstage(u_char graphdebug);
int route_net_ripup(NET net, u_char graphdebug);
void read_lef(char *filename);
void read_def(char *filename);
int write_def(char *filename);
int doroute(NET net, u_char stage, u_char graphdebug);
int route_setup(struct routeinfo_ *iroute, u_char stage);
int next_route_setup(struct routeinfo_ *iroute, u_char stage);
int route_segs(struct routeinfo_ *iroute, u_char stage, u_char graphdebug);
ROUTE createemptyroute();
void emit_routes(char *filename, double oscale, int iscale);
int set_routes_to_net(NET net, int newflags, POINT *pushlist, SEG bbox,
u_char stage);
int set_route_to_net(NET net, ROUTE rt, int newflags, POINT *pushlist,
SEG bbox, u_char stage);
void initMask();
void createMask(NET net, u_char slack, u_char halo);
void fillMask();
void pathstart(FILE *cmd, int layer, int x, int y, u_char special, double oscale,
double invscale, u_char horizontal);
void pathto(FILE *cmd, int x, int y, int horizontal, int lastx, int lasty,
double invscale);
void pathvia(FILE *cmd, int layer, int x, int y, int lastx, int lasty,
int gridx, int gridy, double invscale);
void highlight_starts(POINT glist);
void highlight_source();
void highlight_dest();
void highlight(int, int);
int recalc_spacing();
void draw_layout();
void helpmessage();
void print_nets(char *filename);
void print_routes(char *filename);
void print_nlgates(char *filename);
GATE DefFindInstance(char *name);
void DefHashInstance(GATE gateginfo);
#define QROUTER_H
#endif
/* end of qrouter.h */
|