]> git.sur5r.net Git - freertos/blob - Demo/RX600_RX62N-RSK_IAR/Renesas-Files/hwsetup.c
Rename MDK to RSK for the RX ports.
[freertos] / Demo / RX600_RX62N-RSK_IAR / Renesas-Files / hwsetup.c
1 /******************************************************************************\r
2 * DISCLAIMER\r
3 \r
4 * This software is supplied by Renesas Technology Corp. and is only\r
5 * intended for use with Renesas products. No other uses are authorized.\r
6 \r
7 * This software is owned by Renesas Technology Corp. and is protected under\r
8 * all applicable laws, including copyright laws.\r
9 \r
10 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES\r
11 * REGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY,\r
12 * INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\r
13 * PARTICULAR PURPOSE AND NON-INFRINGEMENT.  ALL SUCH WARRANTIES ARE EXPRESSLY\r
14 * DISCLAIMED.\r
15 \r
16 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS\r
17 * TECHNOLOGY CORP. NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE\r
18 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES\r
19 * FOR ANY REASON RELATED TO THE THIS SOFTWARE, EVEN IF RENESAS OR ITS\r
20 * AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
21 \r
22 * Renesas reserves the right, without notice, to make changes to this\r
23 * software and to discontinue the availability of this software.\r
24 * By using this software, you agree to the additional terms and\r
25 * conditions found by accessing the following link:\r
26 * http://www.renesas.com/disclaimer\r
27 ******************************************************************************\r
28 * Copyright (C) 2008. Renesas Technology Corp., All Rights Reserved.\r
29 ******************************************************************************* \r
30 * File Name     : hwsetup.c\r
31 * Version         : 1.00\r
32 * Description  : Power up hardware initializations\r
33 ******************************************************************************\r
34 * History : DD.MM.YYYY Version Description\r
35 *                : 15.02.2010 1.00      First Release\r
36 ******************************************************************************/\r
37 \r
38 \r
39 /******************************************************************************\r
40 Includes   <System Includes> , "Project Includes"\r
41 ******************************************************************************/\r
42 #include <iorx62n.h>\r
43 #include "rskrx62ndef.h"\r
44 // #include "lcd.h" Uncomment this if an LCD is present.\r
45 #include "r_ether.h"\r
46 \r
47 /******************************************************************************\r
48 Typedef definitions\r
49 ******************************************************************************/\r
50 \r
51 /******************************************************************************\r
52 Macro definitions\r
53 ******************************************************************************/\r
54 \r
55 /******************************************************************************\r
56 Imported global variables and functions (from other files)\r
57 ******************************************************************************/\r
58 \r
59 /******************************************************************************\r
60 Exported global variables and functions (to be accessed by other files)\r
61 ******************************************************************************/\r
62 \r
63 /******************************************************************************\r
64 Private global variables and functions\r
65 ******************************************************************************/\r
66 void io_set_cpg(void);\r
67 void ConfigurePortPins(void);\r
68 void EnablePeripheralModules(void);\r
69 \r
70 /******************************************************************************\r
71 * Function Name: HardwareSetup\r
72 * Description  : This function does initial setting for CPG port pins used in\r
73 *              : the Demo including the MII pins of the Ethernet PHY connection.\r
74 * Arguments    : none\r
75 * Return Value : none\r
76 ******************************************************************************/\r
77 void HardwareSetup(void)\r
78 {\r
79         /* CPG setting */\r
80         io_set_cpg();\r
81 \r
82         /* Setup the port pins */\r
83         ConfigurePortPins();\r
84 \r
85     /* Enables peripherals */\r
86     EnablePeripheralModules();\r
87 \r
88 #if INCLUDE_LCD == 1\r
89     /* Initialize display */\r
90     InitialiseDisplay();\r
91 #endif\r
92 }\r
93 \r
94 /******************************************************************************\r
95 * Function Name: EnablePeripheralModules\r
96 * Description  : Enables Peripheral Modules before use\r
97 * Arguments    : none\r
98 * Return Value : none\r
99 ******************************************************************************/\r
100 void EnablePeripheralModules(void)\r
101 {\r
102         /*  Module standby clear */\r
103         SYSTEM.MSTPCRB.BIT.MSTPB15 = 0;                         /* EtherC, EDMAC */\r
104     SYSTEM.MSTPCRA.BIT.MSTPA15 = 0;             /* CMT0 */\r
105 }\r
106 \r
107 /******************************************************************************\r
108 * Function Name: ConfigurePortPins\r
109 * Description  : Configures port pins.\r
110 * Arguments    : none\r
111 * Return Value : none\r
112 ******************************************************************************/\r
113 void ConfigurePortPins(void)\r
114 {\r
115 /* Port pins default to inputs. To ensure safe initialisation set the pin states\r
116 before changing the data direction registers. This will avoid any unintentional\r
117 state changes on the external ports.\r
118 Many peripheral modules will override the setting of the port registers. Ensure\r
119 that the state is safe for external devices if the internal peripheral module is\r
120 disabled or powered down. */\r
121 \r
122         /* ==== MII/RMII Pins setting ==== */\r
123         /*--------------------------------------*/\r
124         /*    Port Function Control Register    */\r
125         /*--------------------------------------*/\r
126 #if ETH_MODE_SEL == ETH_MII_MODE\r
127         /*      EE=1, PHYMODE=1, ENETE3=1, ENETE2=0, ENETE1=1, ENETE0=0 (Ethernet)      */\r
128         IOPORT.PFENET.BYTE = 0x9A;\r
129 #endif  /*      ETH_MODE_SEL    */\r
130 #if ETH_MODE_SEL == ETH_RMII_MODE\r
131         /*      EE=1, PHYMODE=0, ENETE3=0, ENETE2=0, ENETE1=1, ENETE0=0 (Ethernet)      */\r
132         IOPORT.PFENET.BYTE = 0x82;\r
133 #endif  /*      ETH_MODE_SEL    */\r
134         /*-------------------------------------------*/\r
135         /*    Input Buffer Control Register (ICR)    */\r
136         /*-------------------------------------------*/\r
137 #if ETH_MODE_SEL == ETH_MII_MODE\r
138         /*      P54=1 Set ET_LINKSTA input      */\r
139         PORT5.ICR.BIT.B4 = 1;\r
140         /*      P71=1 Set ET_MDIO input */\r
141         PORT7.ICR.BIT.B1 = 1;\r
142         /*      P74=1 Set ET_ERXD1 input        */\r
143         PORT7.ICR.BIT.B4 = 1;\r
144         /*      P75=1 Set ET_ERXD0 input        */\r
145         PORT7.ICR.BIT.B5 = 1;\r
146         /*      P76=1 Set ET_RX_CLK input       */\r
147         PORT7.ICR.BIT.B6 = 1;\r
148         /*      P77=1 Set ET_RX_ER input        */\r
149         PORT7.ICR.BIT.B7 = 1;\r
150         /*      P83=1 Set ET_CRS input  */\r
151         PORT8.ICR.BIT.B3 = 1;\r
152         /*      PC0=1 Set ET_ERXD3 input        */\r
153         PORTC.ICR.BIT.B0 = 1;\r
154         /*      PC1=1 Set ET_ERXD2 input        */\r
155         PORTC.ICR.BIT.B1 = 1;\r
156         /*      PC2=1 Set ET_RX_DV input        */\r
157         PORTC.ICR.BIT.B2 = 1;\r
158         /*      PC4=1 Set EX_TX_CLK input       */\r
159         PORTC.ICR.BIT.B4 = 1;\r
160         /*      PC7=1 Set ET_COL input  */\r
161         PORTC.ICR.BIT.B7 = 1;\r
162 #endif  /*      ETH_MODE_SEL    */\r
163 #if ETH_MODE_SEL == ETH_RMII_MODE\r
164         /*      P54=1 Set ET_LINKSTA input      */\r
165         PORT5.ICR.BIT.B4 = 1;\r
166         /*      P71=1 Set ET_MDIO input */\r
167         PORT7.ICR.BIT.B1 = 1;\r
168         /* P74=1 Set RMII_RXD1 input    */\r
169         PORT7.ICR.BIT.B4 = 1;\r
170         /* P75=1 Set RMII_RXD0 input    */\r
171         PORT7.ICR.BIT.B5 = 1;\r
172         /* P76=1 Set REF50CLK input     */\r
173         PORT7.ICR.BIT.B6 = 1;\r
174         /* P77=1 Set RMII_RX_ER input   */\r
175         PORT7.ICR.BIT.B7 = 1;\r
176         /* P83=1 Set RMII_CRS_DV input  */\r
177         PORT8.ICR.BIT.B3 = 1;\r
178 #endif  /*      ETH_MODE_SEL    */\r
179 \r
180     /* Configure LED 0-5 pin settings */\r
181     PORT0.DR.BIT.B2 = 1; \r
182     PORT0.DR.BIT.B3 = 1;\r
183     PORT0.DR.BIT.B5 = 1;\r
184     PORT3.DR.BIT.B4 = 1;\r
185     PORT6.DR.BIT.B0 = 1;\r
186     PORT7.DR.BIT.B3 = 1;\r
187     PORT0.DDR.BIT.B2 = 1; \r
188     PORT0.DDR.BIT.B3 = 1;\r
189     PORT0.DDR.BIT.B5 = 1;\r
190     PORT3.DDR.BIT.B4 = 1;\r
191     PORT6.DDR.BIT.B0 = 1;\r
192     PORT7.DDR.BIT.B3 = 1;\r
193 \r
194     /* Configure SW 1-3 pin settings */\r
195     PORT0.DDR.BIT.B0 = 0;\r
196     PORT0.DDR.BIT.B1 = 0;\r
197     PORT0.DDR.BIT.B7 = 0;\r
198     PORT0.ICR.BIT.B0 = 1;\r
199     PORT0.ICR.BIT.B1 = 1;\r
200     PORT0.ICR.BIT.B7 = 1;\r
201 \r
202 #if INCLUDE_LCD == 1\r
203     /* Set LCD pins as outputs */\r
204     /* LCD-RS */\r
205     PORT8.DDR.BIT.B4 = 1;\r
206     /* LCD-EN */\r
207     PORT8.DDR.BIT.B5 = 1;\r
208     /*LCD-data */\r
209     PORT9.DDR.BYTE = 0xF0;\r
210 #endif\r
211 }\r
212 \r
213 /******************************************************************************\r
214 * Function Name: io_set_cpg\r
215 * Description  : Sets up operating speed\r
216 * Arguments    : none\r
217 * Return Value : none\r
218 ******************************************************************************/\r
219 void io_set_cpg(void)\r
220 {\r
221 /* Set CPU PLL operating frequencies. Changes to the peripheral clock will require\r
222 changes to the debugger and flash kernel BRR settings. */\r
223 \r
224         /* ==== CPG setting ==== */\r
225         SYSTEM.SCKCR.LONG = 0x00020100; /* Clockin = 12MHz */\r
226                                                                         /* I Clock = 96MHz, B Clock = 24MHz, */\r
227                                                                         /* P Clock = 48MHz */\r
228 \r
229 }\r
230 \r