1 /***********************license start***************
2  * Copyright (c) 2003-2012  Cavium Inc. ([email protected]). All rights
3  * reserved.
4  *
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met:
9  *
10  *   * Redistributions of source code must retain the above copyright
11  *     notice, this list of conditions and the following disclaimer.
12  *
13  *   * Redistributions in binary form must reproduce the above
14  *     copyright notice, this list of conditions and the following
15  *     disclaimer in the documentation and/or other materials provided
16  *     with the distribution.
17 
18  *   * Neither the name of Cavium Inc. nor the names of
19  *     its contributors may be used to endorse or promote products
20  *     derived from this software without specific prior written
21  *     permission.
22 
23  * This Software, including technical data, may be subject to U.S. export  control
24  * laws, including the U.S. Export Administration Act and its  associated
25  * regulations, and may be subject to export or import  regulations in other
26  * countries.
27 
28  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
29  * AND WITH ALL FAULTS AND CAVIUM INC. MAKES NO PROMISES, REPRESENTATIONS OR
30  * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
31  * THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR
32  * DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM
33  * SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE,
34  * MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF
35  * VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR
36  * CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK ARISING OUT OF USE OR
37  * PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
38  ***********************license end**************************************/
39 
40 
41 /**
42  * cvmx-spx0-defs.h
43  *
44  * Configuration and status register (CSR) type definitions for
45  * Octeon spx0.
46  *
47  * This file is auto generated. Do not edit.
48  *
49  * <hr>$Revision$<hr>
50  *
51  */
52 #ifndef __CVMX_SPX0_DEFS_H__
53 #define __CVMX_SPX0_DEFS_H__
54 
55 #if CVMX_ENABLE_CSR_ADDRESS_CHECKING
56 #define CVMX_SPX0_PLL_BW_CTL CVMX_SPX0_PLL_BW_CTL_FUNC()
CVMX_SPX0_PLL_BW_CTL_FUNC(void)57 static inline uint64_t CVMX_SPX0_PLL_BW_CTL_FUNC(void)
58 {
59 	if (!(OCTEON_IS_MODEL(OCTEON_CN38XX)))
60 		cvmx_warn("CVMX_SPX0_PLL_BW_CTL not supported on this chip\n");
61 	return CVMX_ADD_IO_SEG(0x0001180090000388ull);
62 }
63 #else
64 #define CVMX_SPX0_PLL_BW_CTL (CVMX_ADD_IO_SEG(0x0001180090000388ull))
65 #endif
66 #if CVMX_ENABLE_CSR_ADDRESS_CHECKING
67 #define CVMX_SPX0_PLL_SETTING CVMX_SPX0_PLL_SETTING_FUNC()
CVMX_SPX0_PLL_SETTING_FUNC(void)68 static inline uint64_t CVMX_SPX0_PLL_SETTING_FUNC(void)
69 {
70 	if (!(OCTEON_IS_MODEL(OCTEON_CN38XX)))
71 		cvmx_warn("CVMX_SPX0_PLL_SETTING not supported on this chip\n");
72 	return CVMX_ADD_IO_SEG(0x0001180090000380ull);
73 }
74 #else
75 #define CVMX_SPX0_PLL_SETTING (CVMX_ADD_IO_SEG(0x0001180090000380ull))
76 #endif
77 
78 /**
79  * cvmx_spx0_pll_bw_ctl
80  */
81 union cvmx_spx0_pll_bw_ctl {
82 	uint64_t u64;
83 	struct cvmx_spx0_pll_bw_ctl_s {
84 #ifdef __BIG_ENDIAN_BITFIELD
85 	uint64_t reserved_5_63                : 59;
86 	uint64_t bw_ctl                       : 5;  /**< Core PLL bandwidth control */
87 #else
88 	uint64_t bw_ctl                       : 5;
89 	uint64_t reserved_5_63                : 59;
90 #endif
91 	} s;
92 	struct cvmx_spx0_pll_bw_ctl_s         cn38xx;
93 	struct cvmx_spx0_pll_bw_ctl_s         cn38xxp2;
94 };
95 typedef union cvmx_spx0_pll_bw_ctl cvmx_spx0_pll_bw_ctl_t;
96 
97 /**
98  * cvmx_spx0_pll_setting
99  */
100 union cvmx_spx0_pll_setting {
101 	uint64_t u64;
102 	struct cvmx_spx0_pll_setting_s {
103 #ifdef __BIG_ENDIAN_BITFIELD
104 	uint64_t reserved_17_63               : 47;
105 	uint64_t setting                      : 17; /**< Core PLL setting */
106 #else
107 	uint64_t setting                      : 17;
108 	uint64_t reserved_17_63               : 47;
109 #endif
110 	} s;
111 	struct cvmx_spx0_pll_setting_s        cn38xx;
112 	struct cvmx_spx0_pll_setting_s        cn38xxp2;
113 };
114 typedef union cvmx_spx0_pll_setting cvmx_spx0_pll_setting_t;
115 
116 #endif
117