valkyrie.c (672B)
1 /* 2 * 3 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 4 * 5 * Copyright 2007-2019 Broadcom Inc. All rights reserved. 6 * 7 * File: valkyrie.c 8 * Purpose: 9 * Requires: 10 */ 11 12 13 #include <sal/core/boot.h> 14 15 #include <soc/triumph.h> 16 #include <soc/valkyrie.h> 17 #include <soc/drv.h> 18 19 #ifdef BCM_VALKYRIE_SUPPORT 20 21 /* 22 * Valkyrie chip driver functions. 23 */ 24 soc_functions_t soc_valkyrie_drv_funs = { 25 soc_triumph_misc_init, 26 soc_triumph_mmu_init, 27 soc_triumph_age_timer_get, 28 soc_triumph_age_timer_max_get, 29 soc_triumph_age_timer_set, 30 }; 31 #endif /* BCM_VALKYRIE_SUPPORT */