hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 *  Copyright 2014-2015 Cisco Systems, Inc. and/or its affiliates.
 *  All rights reserved.
 */
 
#ifndef M00479_CLK_LOSS_DETECTOR_MEMMAP_PACKAGE_H
#define M00479_CLK_LOSS_DETECTOR_MEMMAP_PACKAGE_H
 
/*******************************************************************
 * Register Block
 * M00479_CLK_LOSS_DETECTOR_MEMMAP_PACKAGE_VHD_REGMAP
 *******************************************************************/
struct m00479_clk_loss_detector_regmap {
   /* Control module */
   uint32_t ctrl;             /* Reg 0x0000, Default=0x0 */
   uint32_t status;           /* Reg 0x0004 */
   /* Number of ref clk cycles before checking the clock under test */
   uint32_t ref_clk_cnt_val;  /* Reg 0x0008, Default=0xc4 */
   /* Number of test clk cycles required in the ref_clk_cnt_val period
    * to ensure that the test clock is performing as expected */
   uint32_t test_clk_cnt_val; /* Reg 0x000c, Default=0xa */
};
 
#define M00479_CLK_LOSS_DETECTOR_REG_CTRL_OFST 0
#define M00479_CLK_LOSS_DETECTOR_REG_STATUS_OFST 4
#define M00479_CLK_LOSS_DETECTOR_REG_REF_CLK_CNT_VAL_OFST 8
#define M00479_CLK_LOSS_DETECTOR_REG_TEST_CLK_CNT_VAL_OFST 12
 
/*******************************************************************
 * Bit Mask for register
 * M00479_CLK_LOSS_DETECTOR_MEMMAP_PACKAGE_VHD_BITMAP
 *******************************************************************/
/* ctrl [0:0] */
#define M00479_CTRL_BITMAP_ENABLE_OFST          (0)
#define M00479_CTRL_BITMAP_ENABLE_MSK           (0x1 << M00479_CTRL_BITMAP_ENABLE_OFST)
/* status [0:0] */
#define M00479_STATUS_BITMAP_CLOCK_MISSING_OFST (0)
#define M00479_STATUS_BITMAP_CLOCK_MISSING_MSK  (0x1 << M00479_STATUS_BITMAP_CLOCK_MISSING_OFST)
 
#endif /*M00479_CLK_LOSS_DETECTOR_MEMMAP_PACKAGE_H*/