static int tid_info_show(struct seq_file *seq, void *v)
 {
+       unsigned int tid_start = 0;
        struct adapter *adap = seq->private;
        const struct tid_info *t = &adap->tids;
        enum chip_type chip = CHELSIO_CHIP_VERSION(adap->params.chip);
 
+       if (chip > CHELSIO_T5)
+               tid_start = t4_read_reg(adap, LE_DB_ACTIVE_TABLE_START_INDEX_A);
+
        if (t4_read_reg(adap, LE_DB_CONFIG_A) & HASHEN_F) {
                unsigned int sb;
                seq_printf(seq, "Connections in use: %u\n",
                        sb = t4_read_reg(adap, LE_DB_SRVR_START_INDEX_A);
 
                if (sb) {
-                       seq_printf(seq, "TID range: 0..%u/%u..%u", sb - 1,
-                                  adap->tids.hash_base,
+                       seq_printf(seq, "TID range: %u..%u/%u..%u", tid_start,
+                                  sb - 1, adap->tids.hash_base,
                                   t->ntids - 1);
                        seq_printf(seq, ", in use: %u/%u\n",
                                   atomic_read(&t->tids_in_use),
                seq_printf(seq, "Connections in use: %u\n",
                           atomic_read(&t->conns_in_use));
 
-               seq_printf(seq, "TID range: 0..%u", t->ntids - 1);
+               seq_printf(seq, "TID range: %u..%u", tid_start,
+                          tid_start + t->ntids - 1);
                seq_printf(seq, ", in use: %u\n",
                           atomic_read(&t->tids_in_use));
        }