source: rtems/c/src/lib/libbsp/arm/gp32/include/bsp.h @ 4906d7f7

4.104.114.84.95
Last change on this file since 4906d7f7 was 4bc22a6d, checked in by Philippe Simons <loki_666@…>, on 07/07/05 at 22:07:11

2005-07-07 Philippe Simons <loki_666@…>

  • Makefile.am: Remove lcd.rel, added console/uart.c, removed conio stuffs.
  • console/conio.c, console/console.c, console/defaultfont.c, include/conio.h : files removed.
  • console/uart.c: New file.
  • include/bsp.h: lcd.c prototypes removed.
  • startup/bspstart.c: bsp_reset() cause gp32 to reset to bios, added a bsp_idle_task which put s3c2400 in a "wait for IRQ" state.
  • 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 <s3c2400.h>
32
33extern rtems_configuration_table BSP_Configuration;
34
35#define gp32_initButtons() {rPBCON=0x0;}
36#define gp32_getButtons() ( (((~rPEDAT >> 6) & 0x3 )<<8) | (((~rPBDAT >> 8) & 0xFF)<<0) )
37
38/*functions to get the differents s3c2400 clks*/
39uint32_t get_FCLK(void);
40uint32_t get_HCLK(void);
41uint32_t get_PCLK(void);
42uint32_t get_UCLK(void);
43
44
45void gp32_setPalette( unsigned char pos, uint16_t color);
46
47/* What is the input clock freq in hertz? */
48#define BSP_OSC_FREQ  12000000    /* 12 MHz oscillator */
49#define M_MDIV 81       /* FCLK=133Mhz */
50#define M_PDIV 2
51#define M_SDIV 1
52#define M_CLKDIVN 2     /* HCLK=FCLK/2, PCLK=FCLK/2 */
53
54#define REFEN   0x1     /* enable refresh */
55#define TREFMD  0x0     /* CBR(CAS before RAS)/auto refresh */
56#define Trp     0x0     /* 2 clk */
57#define Trc     0x3     /* 7 clk */
58#define Tchr    0x2     /* 3 clk */
59
60
61/* How many serial ports? */
62#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 1
63
64/* How big should the interrupt stack be? */
65#define CONFIGURE_INTERRUPT_STACK_MEMORY  (16 * 1024)
66
67#ifdef __cplusplus
68}
69#endif
70
71#endif /* _BSP_H */
72/* end of include file */
73
Note: See TracBrowser for help on using the repository browser.