1 /******************************************************************************* 2 * Copyright 2019-2021 Microchip FPGA Embedded Systems Solutions. 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 * @file hw_hsio_mux.h 7 * @author Microchip-FPGA Embedded Systems Solutions 8 * 9 * 10 * Note 1: This file should not be edited. If you need to modify a parameter 11 * without going through regenerating using the MSS Configurator Libero flow 12 * or editing the associated xml file 13 * the following method is recommended: 14 15 * 1. edit the following file 16 * boards/your_board/platform_config/mpfs_hal_config/mss_sw_config.h 17 18 * 2. define the value you want to override there. 19 * (Note: There is a commented example in the platform directory) 20 21 * Note 2: The definition in mss_sw_config.h takes precedence, as 22 * mss_sw_config.h is included prior to the generated header files located in 23 * boards/your_board/fpga_design_config 24 * 25 */ 26 27 #ifndef HW_HSIO_MUX_H_ 28 #define HW_HSIO_MUX_H_ 29 30 31 #ifdef __cplusplus 32 extern "C" { 33 #endif 34 35 #if !defined (LIBERO_SETTING_TRIM_OPTIONS) 36 /*User trim options- set option to 1 to use */ 37 #define LIBERO_SETTING_TRIM_OPTIONS 0x00000000UL 38 /* TRIM_DDR_OPTION [0:1] */ 39 /* TRIM_SGMII_OPTION [1:1] */ 40 #endif 41 #if !defined (LIBERO_SETTING_DDR_IOC_REG0) 42 /*Manual trim values */ 43 #define LIBERO_SETTING_DDR_IOC_REG0 0x00000000UL 44 /* BANK_PCODE [0:6] RW value= 0x0 */ 45 /* BANK_NCODE [6:6] RW value= 0x0 */ 46 #endif 47 #if !defined (LIBERO_SETTING_SGMII_IOC_REG0) 48 /*Manual trim values */ 49 #define LIBERO_SETTING_SGMII_IOC_REG0 0x00000000UL 50 /* BANK_PCODE [0:6] RW value= 0x0 */ 51 /* BANK_NCODE [6:6] RW value= 0x0 */ 52 #endif 53 54 #ifdef __cplusplus 55 } 56 #endif 57 58 59 #endif /* #ifdef HW_HSIO_MUX_H_ */ 60 61