Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: ISC
0002 /*
0003  * Copyright (c) 2010 Broadcom Corporation
0004  */
0005 
0006 #ifndef _BRCM_SOC_H
0007 #define _BRCM_SOC_H
0008 
0009 #define SI_ENUM_BASE_DEFAULT    0x18000000
0010 
0011 /* Common core control flags */
0012 #define SICF_BIST_EN        0x8000
0013 #define SICF_PME_EN     0x4000
0014 #define SICF_CORE_BITS      0x3ffc
0015 #define SICF_FGC        0x0002
0016 #define SICF_CLOCK_EN       0x0001
0017 
0018 /* Common core status flags */
0019 #define SISF_BIST_DONE      0x8000
0020 #define SISF_BIST_ERROR     0x4000
0021 #define SISF_GATED_CLK      0x2000
0022 #define SISF_DMA64      0x1000
0023 #define SISF_CORE_BITS      0x0fff
0024 
0025 #endif              /* _BRCM_SOC_H */