source: rtems/c/src/lib/libbsp/arm/rtl22xx/include/bsp.h @ 053abcda

4.115
Last change on this file since 053abcda was 053abcda, checked in by Joel Sherrill <joel.sherrill@…>, on 04/23/14 at 23:38:43

multiple BSPs: Remove BSP_SMALL_MEMORY

  • Property mode set to 100644
File size: 4.7 KB
Line 
1/**
2 * @file
3 * @ingroup arm_rtl22xx
4 * @brief Global BSP definitions.
5 */
6
7/*
8 * Philips LPC22XX/LPC21xx BSP header file
9 *
10 * by Ray,Xu <Rayx.cn@gmail.com>
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15*/
16#ifndef _BSP_H
17#define _BSP_H
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <bspopts.h>
24#include <bsp/default-initial-extension.h>
25
26/**
27 * @defgroup arm_rtl22xx RTL22XX Support
28 * @ingroup bsp_arm
29 * @brief RTL22XX Support Package
30 * @{
31 */
32
33#include <rtems.h>
34#include <rtems/iosupp.h>
35#include <rtems/console.h>
36#include <rtems/clockdrv.h>
37
38#define BSP_FEATURE_IRQ_EXTENSION
39
40#define CONFIG_ARM_CLK 60000000L
41/* cclk=cco/(2*P) */
42/* cco = cclk*2*P       */
43
44/** @brief system clk frequecy,<=60Mhz, defined in system configuration */
45#define LPC22xx_Fcclk   CONFIG_ARM_CLK
46
47/* Fcco 156M~320Mhz*/
48/** @brief system clk frequecy,<=60Mhz, defined in system configuration */
49#define LPC22xx_Fcclk   CONFIG_ARM_CLK
50#define LPC22xx_Fcco    LPC22xx_Fcclk * 4
51/** @brief VPB clk frequency,1,1/2,1/4 times of Fcclk */
52#define LPC22xx_Fpclk   (LPC22xx_Fcclk /4) *1
53
54
55
56/**
57 * @name Fcclk range: 10MHz ~ MCU allowed frequency
58 * @{
59 */
60
61#define Fcclk_MIN           10000000L
62#define Fcclk_MAX           60000000L
63
64/** @} */
65
66/**
67 * @name Fcco range: 156MHz ~ 320MHz
68 * @{
69 */
70
71#define Fcco_MIN            156000000L
72#define Fcco_MAX            320000000L
73
74/** @} */
75
76#define PLLFEED_DATA1       0xAA
77#define PLLFEED_DATA2       0x55
78
79/**
80 * @name PLL PLLCON register bit descriptions
81 * @{
82 */
83
84#define PLLCON_ENABLE_BIT   0
85#define PLLCON_CONNECT_BIT  1
86
87/** @} */
88
89/**
90 * @name PLL PLLSTAT register bit descriptions
91 * @{
92 */
93
94#define PLLSTAT_ENABLE_BIT  8
95#define PLLSTAT_CONNECT_BIT 9
96#define PLLSTAT_LOCK_BIT    10
97
98/** @} */
99
100/**
101 * @name PM Peripheral Type
102 * @{
103 */
104
105#define PC_TIMER0           0x2
106#define PC_TIMER1           0x4
107#define PC_UART0            0x8
108#define PC_UART1            0x10
109#define PC_PWM0             0x20
110#define PC_I2C              0x80
111#define PC_SPI0             0x100
112#define PC_RTC              0x200
113
114/** @} */
115
116/** @brief OSC [Hz] */
117#define FOSC              11059200
118/** @brief Core clk [Hz] */
119#define FCCLK             FOSC<<2
120
121/**
122 * @name System Configure
123 * @{
124 */
125
126/** @brief osc freq,10MHz~25MHz, change to a real one if needed */
127#define Fosc    11059200
128/** @brief system freq 2^n time of  Fosc(1~32) <=60MHZ */
129#define Fcclk   (Fosc << 2)
130/** @brief CCO freq 2,4,8,16 time of Fcclk 156MHz~320MHz */
131#define Fcco    (Fcclk <<2)
132/** @brief VPB freq only(Fcclk / 4) 1~4 */
133#define Fpclk   (Fcclk >>2) * 1
134/* This was M.  That is a BAD BAD public constant.  I renamed it to
135 * JOEL_M so it wouldn't conflict with user code.  If you can find
136 * a better name, fix this.  But nothing I found uses it.
137 */
138
139/** @} */
140
141#define JOEL_M       Fcclk / Fosc
142#define P_min   Fcco_MIN / (2*Fcclk) + 1;
143#define P_max   Fcco_MAX / (2*Fcclk);
144
145#define  UART_BPS       115200
146
147/** @brief Time Precision time [us] */
148#define TIMER_PRECISION   10
149
150/** @brief I2C Speed [bit/s] */
151#define I2CSPEED          20000         // 20 Kbit/s
152
153/**
154 * @name Uarts buffers size
155 * @{
156 */
157
158#define RXBUFSIZE         32
159#define TXBUFSIZE         32
160
161/** @} */
162
163/** @brief SPI Speed [bit/s] */
164#define SPISPEED          1500000       // 1.5 Mbit/s
165/** @brief SPI EEPROM CS pin
166 *
167 *  (SSEL is not suitable for CS, because is used by SPI module for multi master SPI interface)
168 */
169#define SPI_CS_PIN        P0_13
170#define SPI_CS_PIN_FUNC   PINSEL0_bit.SPI_CS_PIN
171
172/**
173 * @name Flash definition
174 * @{
175 */
176
177//#define FLASH_SIZE      (0x200000-FLASH_BOOT)   // Total area of Flash region in words 8 bit
178/** @brief Total area of Flash region in words 8 bit */
179#define FLASH_SIZE        (0x80000-FLASH_BOOT)
180//#define FLASH_SIZE      (0x80000-FLASH_BOOT)      // Total area of Flash region in words 8 bit
181#define FLASH_BEGIN       0x80000000
182/** @brief First 0x8000 bytes reserved for boot loader etc. */
183#define FLASH_BASE        (FLASH_BEGIN+FLASH_BOOT)
184
185/** @} */
186
187/**
188 * @name SRAM definition
189 * @{
190 */
191
192/** @brief Total area of Flash region in words 8 bit */
193#define SRAM_SIZE         0x100000
194/** @brief First 0x8000 bytes reserved for boot loader etc. */
195#define SRAM_BASE         0x81000000
196
197/** @} */
198
199/** @brief CS8900A definition */
200#define CS8900A_BASE      0x82000000
201/** @brief RTL8019AS definition */
202#define RTL8019AS_BASE    0x82000000
203
204struct rtems_bsdnet_ifconfig;
205int cs8900_driver_attach (struct rtems_bsdnet_ifconfig *config,
206                          int                          attaching);
207
208/**
209 * @name Network driver configuration
210 * @{
211 */
212
213#define RTEMS_BSP_NETWORK_DRIVER_NAME   "eth0"
214#define RTEMS_BSP_NETWORK_DRIVER_ATTACH cs8900_driver_attach
215
216/** @} */
217
218/** @} */
219
220#ifdef __cplusplus
221}
222#endif
223
224#endif /* _BSP_H */
Note: See TracBrowser for help on using the repository browser.