cmicx.h (609B)
1 /* 2 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 3 * 4 * Copyright 2007-2019 Broadcom Inc. All rights reserved. 5 */ 6 7 8 /* 9 * cmicx.h 10 * 11 * header for interface proviced by cmicx module 12 */ 13 14 15 #ifndef _CMICX_H_ 16 #define _CMICX_H_ 17 18 #include "cmicx_sim_util.h" 19 extern unsigned char cmicx_init(void); 20 extern unsigned char cmicx_update(pcid_info_t *pcid_info); 21 extern unsigned char cmicx_pcid_register_read(addr_t addr,reg_t *reg); 22 extern unsigned char cmicx_pcid_register_write(addr_t addr,reg_t reg); 23 24 #endif /* _CMICX_H */ 25