hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * HND OOBR interface header
 *
 * Copyright (C) 2020, Broadcom.
 *
 *      Unless you and Broadcom execute a separate written software license
 * agreement governing use of this software, this software is licensed to you
 * under the terms of the GNU General Public License version 2 (the "GPL"),
 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
 * following added to such license:
 *
 *      As a special exception, the copyright holders of this software give you
 * permission to link this software with independent modules, and to copy and
 * distribute the resulting executable under terms of your choice, provided that
 * you also meet, for each linked independent module, the terms and conditions of
 * the license of that module.  An independent module is a module which is not
 * derived from this software.  The special exception does not apply to any
 * modifications of the software.
 *
 *
 * <<Broadcom-WL-IPTag/Dual:>>
 */
 
#ifndef _hndoobr_h_
#define _hndoobr_h_
 
#include <typedefs.h>
#include <siutils.h>
 
/* for 'srcpidx' of hnd_oobr_get_intr_config() */
#define HND_CORE_MAIN_INTR    0
#define HND_CORE_ALT_INTR    1
 
uint32 hnd_oobr_get_clkpwrreq(si_t *sih, uint coreid);
uint32 hnd_oobr_get_intstatus(si_t *sih);
int hnd_oobr_get_intr_config(si_t *sih, uint srccidx, uint srcpidx, uint dstcidx, uint *dstpidx);
int hnd_oobr_set_intr_src(si_t *sih, uint dstcidx, uint dstpidx, uint intrnum);
void hnd_oobr_init(si_t *sih);
 
#ifdef BCMDBG
/* dump oobr registers values to console */
void hnd_oobr_dump(si_t *sih);
#endif
 
#define OOBR_INVALID_PORT       0xFFu
 
/* per core source/dest sel reg */
#define OOBR_INTR_PER_CONFREG           4u           /* 4 interrupts per configure reg */
#define OOBR_INTR_NUM_MASK              0x7Fu
#define OOBR_INTR_EN                    0x80u
/* per core config reg */
#define OOBR_CORECNF_OUTPUT_MASK        0x0000FF00u
#define OOBR_CORECNF_OUTPUT_SHIFT       8u
#define OOBR_CORECNF_INPUT_MASK         0x00FF0000u
#define OOBR_CORECNF_INPUT_SHIFT        16u
 
#define OOBR_EXT_RSRC_REQ_PERCORE_OFFSET 0x34u
#define OOBR_EXT_RSRC_OFFSET 0x100u
#define OOBR_EXT_RSRC_SHIFT 7u
#define OOBR_EXT_RSRC_REQ_ADDR(oodr_base, core_idx) (uint32)((uintptr)(oodr_base) +\
    OOBR_EXT_RSRC_OFFSET + ((core_idx) << OOBR_EXT_RSRC_SHIFT) +\
    OOBR_EXT_RSRC_REQ_PERCORE_OFFSET)
 
typedef volatile struct hndoobr_percore_reg {
   uint32 sourcesel[OOBR_INTR_PER_CONFREG];        /* 0x00 - 0x0c */
   uint32 destsel[OOBR_INTR_PER_CONFREG];          /* 0x10 - 0x1c */
   uint32 reserved[4];
   uint32 clkpwrreq;                               /* 0x30 */
   uint32 extrsrcreq;                              /* 0x34 */
   uint32 config;                                  /* 0x38 */
   uint32 reserved1[17];                           /* 0x3c to 0x7c */
} hndoobr_percore_reg_t;
 
/* capability reg */
#define OOBR_CAP_CORECNT_MASK                0x0000001Fu
#define OOBR_CAP_MAX_INT2CORE_MASK            0x00F00000u
#define OOBR_CAP_MAX_INT2CORE_SHIFT            20u
 
#define OOBR_MAX_INT_PER_REG                4u
 
/* CoreNConfig reg */
#define OOBR_PERCORE_CORENCONFIG_INTOUTPUTS_MASK    0x0000FF00u
#define OOBR_PERCORE_CORENCONFIG_INTOUTPUTS_SHIFT    8u
 
typedef volatile struct hndoobr_reg {
   uint32 capability;                      /* 0x00 */
   uint32 reserved[3];
   uint32 intstatus[4];                    /* 0x10 - 0x1c */
   uint32 reserved1[56];                   /* 0x20 - 0xfc */
   hndoobr_percore_reg_t percore_reg[1];   /* 0x100 */
} hndoobr_reg_t;
 
#endif /* _hndoobr_h_ */