openbcm

Git mirror of https://github.com/Broadcom-Network-Switching-Software/OpenBCM
git clone git://git.finwo.net/mirror/broadcom/openbcm
Log | Files | Refs | README

mos_coredump.h (756B)


      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:    MOS_COREDUMP.h
      8  */
      9 
     10 #ifndef _SOC_SHARED_MOS_COREDUMP_H
     11 #define _SOC_SHARED_MOS_COREDUMP_H
     12 
     13 #ifdef BCM_UKERNEL
     14   /* Build for uKernel not SDK */
     15   #include "sdk_typedefs.h"
     16 #endif
     17 
     18 typedef struct mos_coredump_region_s {
     19     uint32    cores;              /* bitfield of core numbers region belongs to */
     20     uint32    baseaddr;           /* Core-view base addr of region */
     21     uint32    start;              /* Offset of start of region */
     22     uint32    end;                /* Offset of end of region */
     23 } mos_coredump_region_t;
     24 
     25 #endif
     26 
     27