]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/dev/bxe/hw_dump_reg_st.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / dev / bxe / hw_dump_reg_st.h
1 /*-
2  * Copyright (c) 2007-2011 Broadcom Corporation. All rights reserved.
3  *
4  *    Gary Zambrano <zambrano@broadcom.com>
5  *    David Christensen <davidch@broadcom.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of Broadcom Corporation nor the name of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written consent.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33  /*$FreeBSD$*/
34
35 #ifndef _HW_DUMP_REG_ST_H
36 #define _HW_DUMP_REG_ST_H
37
38 #define BXE_GRCDUMP_BUF_SIZE    0xE0000
39
40 #define XSTORM_WAITP_ADDRESS    0x2b8a80
41 #define TSTORM_WAITP_ADDRESS    0x2b8a80
42 #define USTORM_WAITP_ADDRESS    0x2b8a80
43 #define CSTORM_WAITP_ADDRESS    0x2b8a80
44 #define TSTORM_CAM_MODE         0x1B1440
45
46 /* Register address structure. */
47 typedef struct reg_addr {
48         uint32_t        addr;
49         uint32_t        size;
50 }*preg_addr;
51
52 /* Wide register address structure. */
53 typedef struct wreg_addr {
54         uint32_t        addr;
55         uint32_t        size;
56         uint32_t        const_regs_count;
57         uint32_t        * const_regs;
58 }*pwreg_addr;
59
60 /* Dump header parameters. */
61 struct hd_param {
62         uint32_t        time_stamp;
63         uint32_t        diag_ver;
64         uint32_t        grc_dump_ver;
65 };
66
67 /* Global parameters. */
68 extern struct   wreg_addr wreg_addrs_e1[];
69 extern struct   reg_addr reg_addrs_e1[];
70 extern uint32_t regs_count_e1;
71 extern uint32_t wregs_count_e1;
72 extern struct   hd_param hd_param_e1;
73
74 extern struct   wreg_addr wreg_addrs_e1h[];
75 extern struct   reg_addr reg_addrs_e1h[];
76 extern uint32_t regs_count_e1h;
77 extern uint32_t wregs_count_e1h;
78 extern struct   hd_param hd_param_e1h;
79
80 #endif //_HW_DUMP_REG_ST_H