]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo_bsp/ps7_cortexa9_0/include/smc.h
fcfccebaa6c02fe0dbd282304e0eace4ce037b4b
[freertos] / FreeRTOS / Demo / CORTEX_A9_Zynq_ZC702 / RTOSDemo_bsp / ps7_cortexa9_0 / include / smc.h
1 /******************************************************************************
2 *
3 * (c) Copyright 2010-13  Xilinx, Inc. All rights reserved.
4 *
5 * This file contains confidential and proprietary information of Xilinx, Inc.
6 * and is protected under U.S. and international copyright and other
7 * intellectual property laws.
8 *
9 * DISCLAIMER
10 * This disclaimer is not a license and does not grant any rights to the
11 * materials distributed herewith. Except as otherwise provided in a valid
12 * license issued to you by Xilinx, and to the maximum extent permitted by
13 * applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL
14 * FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS,
15 * IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
16 * MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE;
17 * and (2) Xilinx shall not be liable (whether in contract or tort, including
18 * negligence, or under any other theory of liability) for any loss or damage
19 * of any kind or nature related to, arising under or in connection with these
20 * materials, including for any direct, or any indirect, special, incidental,
21 * or consequential loss or damage (including loss of data, profits, goodwill,
22 * or any type of loss or damage suffered as a result of any action brought by
23 * a third party) even if such damage or loss was reasonably foreseeable or
24 * Xilinx had been advised of the possibility of the same.
25 *
26 * CRITICAL APPLICATIONS
27 * Xilinx products are not designed or intended to be fail-safe, or for use in
28 * any application requiring fail-safe performance, such as life-support or
29 * safety devices or systems, Class III medical devices, nuclear facilities,
30 * applications related to the deployment of airbags, or any other applications
31 * that could lead to death, personal injury, or severe property or
32 * environmental damage (individually and collectively, "Critical
33 * Applications"). Customer assumes the sole risk and liability of any use of
34 * Xilinx products in Critical Applications, subject only to applicable laws
35 * and regulations governing limitations on product liability.
36 *
37 * THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE
38 * AT ALL TIMES.
39 *
40 ******************************************************************************/
41 /*****************************************************************************/
42 /**
43 * @file smc.h
44 *
45 * <pre>
46 * MODIFICATION HISTORY:
47 *
48 * Ver   Who  Date     Changes
49 * ----- ---- -------- ---------------------------------------------------
50 * 1.00a sdm  11/03/09 Initial release.
51 * </pre>
52 *
53 * @note         None.
54 *
55 ******************************************************************************/
56
57 #ifndef SMC_H /* prevent circular inclusions */
58 #define SMC_H /* by using protection macros */
59
60 #ifdef __cplusplus
61 extern "C" {
62 #endif
63
64 /***************************** Include Files *********************************/
65
66 #include "xparameters.h"
67 #include "xil_io.h"
68
69 /***************** Macros (Inline Functions) Definitions *********************/
70
71 /**************************** Type Definitions *******************************/
72
73 /************************** Constant Definitions *****************************/
74
75 /* Memory controller configuration register offset */
76 #define XSMCPSS_MC_STATUS               0x000   /* Controller status reg, RO */
77 #define XSMCPSS_MC_INTERFACE_CONFIG     0x004   /* Interface config reg, RO */
78 #define XSMCPSS_MC_SET_CONFIG           0x008   /* Set configuration reg, WO */
79 #define XSMCPSS_MC_CLR_CONFIG           0x00C   /* Clear config reg, WO */
80 #define XSMCPSS_MC_DIRECT_CMD           0x010   /* Direct command reg, WO */
81 #define XSMCPSS_MC_SET_CYCLES           0x014   /* Set cycles register, WO */
82 #define XSMCPSS_MC_SET_OPMODE           0x018   /* Set opmode register, WO */
83 #define XSMCPSS_MC_REFRESH_PERIOD_0     0x020   /* Refresh period_0 reg, RW */
84 #define XSMCPSS_MC_REFRESH_PERIOD_1     0x024   /* Refresh period_1 reg, RW */
85
86 /* Chip select configuration register offset */
87 #define XSMCPSS_CS_IF0_CHIP_0_OFFSET    0x100   /* Interface 0 chip 0 config */
88 #define XSMCPSS_CS_IF0_CHIP_1_OFFSET    0x120   /* Interface 0 chip 1 config */
89 #define XSMCPSS_CS_IF0_CHIP_2_OFFSET    0x140   /* Interface 0 chip 2 config */
90 #define XSMCPSS_CS_IF0_CHIP_3_OFFSET    0x160   /* Interface 0 chip 3 config */
91 #define XSMCPSS_CS_IF1_CHIP_0_OFFSET    0x180   /* Interface 1 chip 0 config */
92 #define XSMCPSS_CS_IF1_CHIP_1_OFFSET    0x1A0   /* Interface 1 chip 1 config */
93 #define XSMCPSS_CS_IF1_CHIP_2_OFFSET    0x1C0   /* Interface 1 chip 2 config */
94 #define XSMCPSS_CS_IF1_CHIP_3_OFFSET    0x1E0   /* Interface 1 chip 3 config */
95
96 /* User configuration register offset */
97 #define XSMCPSS_UC_STATUS_OFFSET        0x200   /* User status reg, RO */
98 #define XSMCPSS_UC_CONFIG_OFFSET        0x204   /* User config reg, WO */
99
100 /* Integration test register offset */
101 #define XSMCPSS_IT_OFFSET               0xE00
102
103 /* ID configuration register offset */
104 #define XSMCPSS_ID_PERIP_0_OFFSET       0xFE0
105 #define XSMCPSS_ID_PERIP_1_OFFSET       0xFE4
106 #define XSMCPSS_ID_PERIP_2_OFFSET       0xFE8
107 #define XSMCPSS_ID_PERIP_3_OFFSET       0xFEC
108 #define XSMCPSS_ID_PCELL_0_OFFSET       0xFF0
109 #define XSMCPSS_ID_PCELL_1_OFFSET       0xFF4
110 #define XSMCPSS_ID_PCELL_2_OFFSET       0xFF8
111 #define XSMCPSS_ID_PCELL_3_OFFSET       0xFFC
112
113 /************************** Variable Definitions *****************************/
114
115 /************************** Function Prototypes ******************************/
116
117 void XSmc_SramInit (void);
118 void XSmc_NorInit(void);
119
120 #ifdef __cplusplus
121 }
122 #endif /* __cplusplus */
123
124 #endif /* SMC_H */