falcon_tsc_enum.h (1895B)
1 /****************************************************************************** 2 ****************************************************************************** 3 * * 4 * Description : Enum types used by Serdes API functions * 5 * * 6 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 7 * 8 * Copyright 2007-2019 Broadcom Inc. All rights reserved. * 9 * No portions of this material may be reproduced in any form without * 10 * the written permission of: * 11 * Broadcom Corporation * 12 * 5300 California Avenue * 13 * Irvine, CA 92617 * 14 * * 15 * All information contained in this document is Broadcom Corporation * 16 * company private proprietary, and trade secret. * 17 */ 18 19 /** @file falcon_tsc_enum.h 20 * Enum types used by Serdes API functions 21 */ 22 23 #ifndef FALCON_TSC_API_ENUM_H 24 #define FALCON_TSC_API_ENUM_H 25 26 #include "common/srds_api_enum.h" 27 28 29 30 31 32 /** Falcon TSC PLL Config Enum */ 33 enum falcon_tsc_pll_enum { 34 FALCON_TSC_pll_div_128x, 35 FALCON_TSC_pll_div_132x, 36 FALCON_TSC_pll_div_140x, 37 FALCON_TSC_pll_div_160x, 38 FALCON_TSC_pll_div_165x, 39 FALCON_TSC_pll_div_168x, 40 FALCON_TSC_pll_div_175x, 41 FALCON_TSC_pll_div_180x, 42 FALCON_TSC_pll_div_184x, 43 FALCON_TSC_pll_div_200x, 44 FALCON_TSC_pll_div_224x, 45 FALCON_TSC_pll_div_264x, 46 FALCON_TSC_pll_div_180x_refc125 47 }; 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 #endif