source: rtems/c/src/lib/libbsp/arm/gp32/include/bsp.h @ 0d833168

4.104.115
Last change on this file since 0d833168 was 32b8506, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 14:53:02

Whitespace removal.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*-------------------------------------------------------------------------+
2| bsp.h - ARM BSP
3+--------------------------------------------------------------------------+
4| This include file contains definitions related to the ARM BSP.
5+--------------------------------------------------------------------------+
6|
7| Copyright (c) Canon Research France SA.]
8| Emmanuel Raguet, mailto:raguet@crf.canon.fr
9|
10|  The license and distribution terms for this file may be
11|  found in found in the file LICENSE in this distribution or at
12|  http://www.rtems.com/license/LICENSE.
13|
14|  $Id$
15+--------------------------------------------------------------------------*/
16
17
18#ifndef _BSP_H
19#define _BSP_H
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#include <bspopts.h>
26
27#include <rtems.h>
28#include <rtems/iosupp.h>
29#include <rtems/console.h>
30#include <rtems/clockdrv.h>
31#include <s3c24xx.h>
32
33#define gp32_initButtons() {rPBCON=0x0;}
34#define gp32_getButtons() \
35    ( (((~rPEDAT >> 6) & 0x3 )<<8) | (((~rPBDAT >> 8) & 0xFF)<<0) )
36
37/*functions to get the differents s3c2400 clks*/
38uint32_t get_FCLK(void);
39uint32_t get_HCLK(void);
40uint32_t get_PCLK(void);
41uint32_t get_UCLK(void);
42
43
44void gp32_setPalette( unsigned char pos, uint16_t color);
45
46/* What is the input clock freq in hertz? */
47#define BSP_OSC_FREQ  12000000    /* 12 MHz oscillator */
48#define M_MDIV 81       /* FCLK=133Mhz */
49#define M_PDIV 2
50#define M_SDIV 1
51#define M_CLKDIVN 2     /* HCLK=FCLK/2, PCLK=FCLK/2 */
52
53#define REFEN   0x1     /* enable refresh */
54#define TREFMD  0x0     /* CBR(CAS before RAS)/auto refresh */
55#define Trp     0x0     /* 2 clk */
56#define Trc     0x3     /* 7 clk */
57#define Tchr    0x2     /* 3 clk */
58
59
60/*
61 *  This BSP provides its own IDLE task to override the RTEMS one.
62 *  So we prototype it and define the constant confdefs.h expects
63 *  to configure a BSP specific one.
64 */
65Thread bsp_idle_task(uint32_t);
66
67#define BSP_IDLE_TASK_BODY bsp_idle_task
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif /* _BSP_H */
74
Note: See TracBrowser for help on using the repository browser.