summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/arm_bare_bsp/include/registers.h
blob: 3b11c3856f6cc7f9c4aea68bc690ef2e82777d08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 *  BSP registers declaration
 *
 * Copyright (c) 2000 Canon Research France SA.
 * Emmanuel Raguet, mailto:raguet@crf.canon.fr
 *
 * The license and distribution terms for this file may be
 * found in found in the file LICENSE in this distribution or at
 * http://www.rtems.com/license/LICENSE.
 *
 */


#ifndef  __REGS_H__
#define __REGS_H__

/*
 * VARIABLE DECLARATION
 */

#ifndef __asm__
extern volatile unsigned long *Regs;        /* Chip registers        */
#endif



/*
 * Here must be "defined" each register, to use with Regs as
 * LM_Regs[REGISTER1] = value
 */

#define	REGISTER1      1
#define REGISTER2      2


/*
 * define for UART registers to be able
 * to compile and link arm_bare_bsp
 */

#define RSRBR   0
#define RSTHR	1
#define RSIER	2
#define RSIIR	3
#define RSFCR	4
#define RSLCR	5
#define RSLSR	6
#define RSDLL	7
#define RSDLH	8
#define RSCNT   9

#endif /*__REGS_H__*/