1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2021 Broadcom. All Rights Reserved. The term 4 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. 5 */ 6 7 /** 8 * All common (i.e. transport-independent) SLI-4 functions are implemented 9 * in this file. 10 */ 11 #include "sli4.h" 12 13 static struct sli4_asic_entry_t sli4_asic_table[] = { 14 { SLI4_ASIC_REV_B0, SLI4_ASIC_GEN_5}, 15 { SLI4_ASIC_REV_D0, SLI4_ASIC_GEN_5}, 16 { SLI4_ASIC_REV_A3, SLI4_ASIC_GEN_6}, 17 { SLI4_ASIC_REV_A0, SLI4_ASIC_GEN_6}, 18 { SLI4_ASIC_REV_A1, SLI4_ASIC_GEN_6}, 19 { SLI4_ASIC_REV_A3, SLI4_ASIC_GEN_6}, 20 { SLI4_ASIC_REV_A1, SLI4_ASIC_GEN_7}, 21 { SLI4_ASIC_REV_A0, SLI4_ASIC_GEN_7}, 22 }; 23