File: global.cc

package info (click to toggle)
arachne-pnr 0.1%2B20190728gitc40fb22-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,080 kB
  • sloc: cpp: 10,681; python: 230; sh: 167; makefile: 164
file content (547 lines) | stat: -rw-r--r-- 15,079 bytes parent folder | download | duplicates (3)
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
/* Copyright (C) 2015 Cotton Seed
   
   This file is part of arachne-pnr.  Arachne-pnr is free software;
   you can redistribute it and/or modify it under the terms of the GNU
   General Public License version 2 as published by the Free Software
   Foundation.
   
   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 "netlist.hh"
#include "global.hh"
#include "chipdb.hh"
#include "casting.hh"
#include "util.hh"
#include "designstate.hh"

#include <queue>
#include <cassert>
#include <set>

class Promoter
{
  std::vector<uint8_t> global_classes;
  static const char *global_class_name(uint8_t gc);
  
  DesignState &ds;
  const ChipDB *chipdb;
  Design *d;
  Model *top;
  const Models &models;
  std::map<Instance *, uint8_t, IdLess> &gb_inst_gc;
  
  Net *const0;
  
  uint8_t port_gc(Port *conn, bool indirect);
  void pll_pass_through(Instance *inst, int cell, const char *p_name);
  bool routable(int g, Port *p);
  void make_routable(Net *n, int g);
  
public:
  Promoter(DesignState &ds_);
  
  void promote(bool do_promote);
};

const char *
Promoter::global_class_name(uint8_t gc)
{
  switch(gc)
    {
    case gc_clk: return "clk";
    case gc_cen: return "cen/wclke";
    case gc_sr: return "sr/we";
    case gc_rclke: return "rclke";
    case gc_re: return "re";
    default:
      abort();
      return nullptr;
    }
}

Promoter::Promoter(DesignState &ds_)
  : global_classes{
      gc_clk, gc_cen, gc_sr, gc_rclke, gc_re,
    },
    ds(ds_),
    chipdb(ds.chipdb),
    d(ds.d),
    top(ds.top),
    models(ds.models),
    gb_inst_gc(ds.gb_inst_gc),
    const0(nullptr)
{
  for (const auto &p : top->nets())
    {
      if (p.second->is_constant()
          && p.second->constant() == Value::ZERO)
        {
          const0 = p.second;
          break;
        }
    }
  
  // will prune
  if (!const0)
    {
      const0 = top->add_net("$false");
      const0->set_is_constant(true);
      const0->set_constant(Value::ZERO);
    }
}

uint8_t
Promoter::port_gc(Port *conn, bool indirect)
{
  Instance *inst = dyn_cast<Instance>(conn->node());
  assert(inst);
  
  if (models.is_lc(inst))
    {
      if (conn->name() == "CLK")
        return gc_clk;
      else if (conn->name() == "CEN")
        return gc_cen;
      else if (conn->name() == "SR")
        return gc_sr;
      else if (indirect
               && (conn->name() == "I0"
                   || conn->name() == "I1"
                   || conn->name() == "I2"
                   || conn->name() == "I3"))
        return gc_clk;
    }
  else if (models.is_ioX(inst))
    {
      if (conn->name() == "INPUT_CLK"
          || conn->name() == "OUTPUT_CLK")
        return gc_clk;
    }
  else if (models.is_gb(inst)
           || models.is_warmboot(inst)
           || models.is_pllX(inst))
    ;
  else if(models.is_mac16(inst))
    {
      if(conn->name() == "CLK")
        return gc_clk;
      if(conn->name() == "CE")
        return gc_cen;
      if(conn->name() == "IRSTTOP" ||
         conn->name() == "IRSTBOT" ||
         conn->name() == "ORSTTOP" ||
         conn->name() == "ORSTBOT")
        return gc_sr;
    }
  else if(models.is_hfosc(inst))
    ;
  else if(models.is_lfosc(inst))
    ;
  else if(models.is_spram(inst))
   {
      if(conn->name() == "CLOCK")
        return gc_clk;
   }
  else if(models.is_rgba_drv(inst))
    ;
  else if(models.is_i2c(inst) || models.is_spi(inst))
   {
      if(conn->name() == "SBCLKI")
        return gc_clk;
   }
  else if(models.is_ledda_ip(inst))
   {
      if(conn->name() == "LEDDCLK")
        return gc_clk;
   }
  else
    {
      assert(models.is_ramX(inst));
      if (conn->name() == "WCLK"
          || conn->name() == "WCLKN"
          || conn->name() == "RCLK"
          || conn->name() == "RCLKN")
        return gc_clk;
      else if (conn->name() == "WCLKE")
        return gc_wclke;
      else if (conn->name() == "WE")
        return gc_we;
      else if (conn->name() == "RCLKE")
        return gc_rclke;
      else if (conn->name() == "RE")
        return gc_re;
    }
  
  return 0;
}

bool
Promoter::routable(int gc, Port *p)
{
  return (bool)((port_gc(p, true) & gc) == gc);
}

void
Promoter::pll_pass_through(Instance *inst, int cell, const char *p_name)
{
  Port *p = inst->find_port(p_name);
  Net *n = p->connection();
  if (!n)
    return;
  
  Net *t = top->add_net(n);
  p->connect(t);
  
  Instance *pass_inst = top->add_instance(models.lc);
  pass_inst->find_port("I0")->connect(t);
  pass_inst->find_port("I1")->connect(const0);
  pass_inst->find_port("I2")->connect(const0);
  pass_inst->find_port("I3")->connect(const0);
  pass_inst->set_param("LUT_INIT", BitVector(2, 2));
  pass_inst->find_port("O")->connect(n);
  
  const auto &p2 = chipdb->cell_mfvs.at(cell).at(p_name);
  int pass_cell = chipdb->loc_cell(Location(p2.first, 0));
  
  extend(ds.placement, pass_inst, pass_cell);
}

void
Promoter::make_routable(Net *n, int gc)
{
  Net *internal = nullptr;
  for (auto i = n->connections().begin();
       i != n->connections().end();)
    {
      Port *p = *i;
      ++i;
      
      if (!p->is_input())
        continue;
      if (routable(gc, p))
        continue;
      
      if (!internal)
        {
          internal = top->add_net(n);
          
          Instance *pass_inst = top->add_instance(models.lc);
          pass_inst->find_port("I0")->connect(n);
          pass_inst->find_port("I1")->connect(const0);
          pass_inst->find_port("I2")->connect(const0);
          pass_inst->find_port("I3")->connect(const0);
          pass_inst->set_param("LUT_INIT", BitVector(2, 2));
          pass_inst->find_port("O")->connect(internal);
        }
      p->connect(internal);
    }
}

void
Promoter::promote(bool do_promote)
{
  std::vector<Net *> nets;
  std::map<Net *, int, IdLess> net_idx;
  std::tie(nets, net_idx) = top->index_nets();
  int n_nets = nets.size();
  
  int n_global = 0;
  
  std::map<uint8_t, int> gc_global;
  std::map<uint8_t, int> gc_used;
  for (uint8_t gc : global_classes)
    {
      extend(gc_global, gc, 0);
      extend(gc_used, gc, 0);
    }
  
  std::vector<std::pair<Instance *, int>> plls;
  for (const auto &p : ds.placement)
    {
      Instance *inst = p.first;
      int c = p.second;
      
      if (models.is_gb_io(inst))
        {
          Port *out = inst->find_port("GLOBAL_BUFFER_OUTPUT");
          if (out->connected())
            {
              auto loc = chipdb->cell_location[c];
              if (chipdb->loc_pin_glb_num.find(loc) == chipdb->loc_pin_glb_num.end())
                fatal(fmt("Not able to use pin " << ds.package.loc_pin.at(loc) << " for global buffer output"));
              int g = chipdb->loc_pin_glb_num.at(loc);
              for (uint8_t gc : global_classes)
                {
                  if (gc & (1 << g))
                    ++gc_used[gc];
                }
              make_routable(out->connection(), 1 << g);
            }
        }
      else if (models.is_hfosc(inst))
       {
         Port *out = inst->find_port("CLKHF");
         if (out->connected() && !inst->is_attr_set("ROUTE_THROUGH_FABRIC"))
           {
             int driven_glb = chipdb->get_oscillator_glb(c, "CLKHF");
             for (uint8_t gc : global_classes)
               {
                 if (gc & (1 << driven_glb))
                   ++gc_used[gc];
               }
             make_routable(out->connection(), 1 << driven_glb);
           }
       }
      else if (models.is_lfosc(inst))
       {
          Port *out = inst->find_port("CLKLF");
          if (out->connected() && !inst->is_attr_set("ROUTE_THROUGH_FABRIC"))
            {
              int driven_glb = chipdb->get_oscillator_glb(c, "CLKLF");
              
              for (uint8_t gc : global_classes)
                {
                  if (gc & (1 << driven_glb))
                    ++gc_used[gc];
                }
              make_routable(out->connection(), 1 << driven_glb);
            }
        }
      else if (models.is_pllX(inst))
        {
          plls.push_back(std::make_pair(inst, c));
          
          Port *a = inst->find_port("PLLOUTGLOBAL");
          if (!a)
            a = inst->find_port("PLLOUTGLOBALA");
          assert(a);
          if (a->connected())
            {
              const auto &p2 = chipdb->cell_mfvs.at(c).at("PLLOUT_A");
              Location loc(p2.first, std::stoi(p2.second));
              int g = chipdb->loc_pin_glb_num.at(loc);
              for (uint8_t gc : global_classes)
                {
                  if (gc & (1 << g))
                    ++gc_used[gc];
                }
              make_routable(a->connection(), 1 << g);
            }
          
          Port *b = inst->find_port("PLLOUTGLOBALB");
          if (b && b->connected())
            {
              const auto &p2 = chipdb->cell_mfvs.at(c).at("PLLOUT_B");
              Location loc(p2.first, std::stoi(p2.second));
              int g = chipdb->loc_pin_glb_num.at(loc);
              for (uint8_t gc : global_classes)
                {
                  if (gc & (1 << g))
                    ++gc_used[gc];
                }
              make_routable(b->connection(), 1 << g);
            }
        }
    }
  
  for (const auto &p : plls)
    {
      Instance *inst = p.first;
      int c = p.second;
      pll_pass_through(inst, c, "LOCK");
      pll_pass_through(inst, c, "SDO");
    }
  
  std::set<Net *, IdLess> boundary_nets = top->boundary_nets(d);
  
  std::set<std::pair<int, int>, std::greater<std::pair<int, int>>> promote_q;
  std::map<int, uint8_t> net_gc;
  std::map<int, Port *> net_driver;
  for (int i = 1; i < n_nets; ++i) // skip 0, nullptr
    {
      Net *n = nets[i];
      if (contains(boundary_nets, n)
          || n->is_constant())
        continue;
      
      std::map<uint8_t, int> n_gc;
      for (uint8_t gc : global_classes)
        extend(n_gc, gc, 0);
      
      Port *driver = nullptr;
      for (Port *conn : n->connections())
        {
          assert(!conn->is_bidir());
          if (conn->is_output())
            {
              assert(!driver);
              driver = conn;
            }
          
          int gc = port_gc(conn, false);
          if (gc)
            ++n_gc[gc];
        }
      
      int max_gc = 0;
      int max_n = 0;
      for (const auto &p : n_gc)
        {
          if (p.second > max_n)
            {
              max_gc = p.first;
              max_n = p.second;
            }
        }
      
      if (driver
          && isa<Instance>(driver->node())
          && ((models.is_gbX(cast<Instance>(driver->node()))
               && driver->name() == "GLOBAL_BUFFER_OUTPUT")
              || (models.is_pllX(cast<Instance>(driver->node()))
                  && (driver->name() == "PLLOUTGLOBAL"
                      || driver->name() == "PLLOUTGLOBALA"
                      || driver->name() == "PLLOUTGLOBALB"))
              || (models.is_hfosc(cast<Instance>(driver->node())) 
                    && driver->name() == "CLKHF" && 
                        !cast<Instance>(driver->node())->is_attr_set("ROUTE_THROUGH_FABRIC"))
              || (models.is_lfosc(cast<Instance>(driver->node())) 
                    && driver->name() == "CLKLF" && 
                        !cast<Instance>(driver->node())->is_attr_set("ROUTE_THROUGH_FABRIC"))))
        {
          Instance *gb_inst = cast<Instance>(driver->node());
          
          uint8_t gc = max_gc ? max_gc : gc_clk;
          
          ++n_global;
          ++gc_global[gc];
          
          if (models.is_gbX(gb_inst) || 
              models.is_hfosc(gb_inst) ||
              models.is_lfosc(gb_inst))
            {
              if (driver->connected())
                make_routable(driver->connection(), gc);
              
              extend(gb_inst_gc, gb_inst, gc);
            }
          for (uint8_t gc2 : global_classes)
            {
              if ((gc2 & gc) == gc)
                ++gc_used[gc2];
            }
        }
      else if (do_promote
               && driver
               && max_gc
               && max_n > 4)
        {
          extend(net_driver, i, driver);
          extend(net_gc, i, max_gc);
          promote_q.insert(std::make_pair(max_n, i));
        }
    }
  
  int n_promoted = 0;
  std::map<uint8_t, int> gc_promoted;
  for (int gc : global_classes)
    extend(gc_promoted, gc, 0);
  
  while(!promote_q.empty())
    {
      std::pair<int, int> p = *promote_q.begin();
      promote_q.erase(promote_q.begin());
      assert(promote_q.empty()
             || promote_q.begin()->first <= p.first);
      
      Net *n = nets[p.second];
      uint8_t gc = net_gc.at(p.second);
      
      for (int gc2 : global_classes)
        {
          int k2 = 0;
          for (int i = 0; i < 8; ++i)
            {
              if (gc2 & (1 << i))
                ++k2;
            }
          
          if ((gc2 & gc) == gc)
            {
              if (gc_used.at(gc2) >= k2)
                goto L;
            }
        }
      
      {
        ++n_promoted;
        ++gc_promoted[gc];
        
        Instance *gb_inst = top->add_instance(models.gb);
        Net *t = top->add_net(n);
        
        int n_conn = 0;
        int n_conn_promoted = 0;
        for (auto i = n->connections().begin();
             i != n->connections().end();)
          {
            Port *conn = *i;
            ++i;
            if (conn->is_output()
                || conn->is_bidir())
              continue;
            
            ++n_conn;
            int conn_gc = port_gc(conn, true);
            if ((conn_gc & gc) == gc)
              {
                ++n_conn_promoted;
                conn->connect(t);
              }
          }
        
        gb_inst->find_port("USER_SIGNAL_TO_GLOBAL_BUFFER")->connect(n);
        gb_inst->find_port("GLOBAL_BUFFER_OUTPUT")->connect(t);
        
        ++n_global;
        ++gc_global[gc];
        extend(gb_inst_gc, gb_inst, gc);
        for (uint8_t gc2 : global_classes)
          {
            if ((gc2 & gc) == gc)
              ++gc_used[gc2];
          }
        *logs << "  promoted " << n->name()
              << ", " << n_conn_promoted << " / " << n_conn << "\n";
      }
    L:;
    }
  
  *logs << "  promoted " << n_promoted << " nets\n";
  for (const auto &p : gc_promoted)
    {
      if (p.second)
        *logs << "    " << p.second << " " << global_class_name(p.first) << "\n";
    }
  *logs << "  " << n_global << " globals\n";
  for (const auto &p : gc_global)
    {
      if (p.second)
        *logs << "    " << p.second << " " << global_class_name(p.first) << "\n";
    }
  
  d->prune();
}

void
promote_globals(DesignState &ds, bool do_promote)
{
  Promoter promoter(ds);
  promoter.promote(do_promote);
}