source: rtems/c/src/lib/libbsp/arm/gp32/include/bsp.h @ 6710d81

4.104.114.95
Last change on this file since 6710d81 was 6710d81, checked in by Joel Sherrill <joel.sherrill@…>, on 12/11/07 at 22:09:30

2007-12-11 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, startup/bspstart.c: Fix idle task prototype.
  • Property mode set to 100644
File size: 2.0 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 <s3c2400.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/* How many serial ports? */
61#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 1
62
63/*
64 *  This BSP provides its own IDLE task to override the RTEMS one.
65 *  So we prototype it and define the constant confdefs.h expects
66 *  to configure a BSP specific one.
67 */
68Thread bsp_idle_task(uint32_t);
69
70#define BSP_IDLE_TASK_BODY bsp_idle_task
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif /* _BSP_H */
77
Note: See TracBrowser for help on using the repository browser.