1 |
27 |
unneback |
#ifndef CYGONCE_ASSABET_H
|
2 |
|
|
#define CYGONCE_ASSABET_H
|
3 |
|
|
|
4 |
|
|
/*=============================================================================
|
5 |
|
|
//
|
6 |
|
|
// assabet.h
|
7 |
|
|
//
|
8 |
|
|
// Platform specific support (register layout, etc)
|
9 |
|
|
//
|
10 |
|
|
//=============================================================================
|
11 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
12 |
|
|
// -------------------------------------------
|
13 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
14 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
15 |
|
|
//
|
16 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
17 |
|
|
// the terms of the GNU General Public License as published by the Free
|
18 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
19 |
|
|
//
|
20 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
21 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
22 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
23 |
|
|
// for more details.
|
24 |
|
|
//
|
25 |
|
|
// You should have received a copy of the GNU General Public License along
|
26 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
27 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
28 |
|
|
//
|
29 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
30 |
|
|
// or inline functions from this file, or you compile this file and link it
|
31 |
|
|
// with other works to produce a work based on this file, this file does not
|
32 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
33 |
|
|
// License. However the source code for this file must still be made available
|
34 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
35 |
|
|
//
|
36 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
37 |
|
|
// this file might be covered by the GNU General Public License.
|
38 |
|
|
//
|
39 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
40 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
41 |
|
|
// -------------------------------------------
|
42 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
43 |
|
|
//=============================================================================
|
44 |
|
|
//#####DESCRIPTIONBEGIN####
|
45 |
|
|
//
|
46 |
|
|
// Author(s): gthomas
|
47 |
|
|
// Contributors: gthomas
|
48 |
|
|
// Date: 2000-05-08
|
49 |
|
|
// Purpose: Intel SA1110/Assabet platform specific support routines
|
50 |
|
|
// Description:
|
51 |
|
|
// Usage: #include <cyg/hal/assabet.h>
|
52 |
|
|
//
|
53 |
|
|
//####DESCRIPTIONEND####
|
54 |
|
|
//
|
55 |
|
|
//===========================================================================*/
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
#ifndef __ASSEMBLER__
|
59 |
|
|
//
|
60 |
|
|
// Board Control Register
|
61 |
|
|
// Note: This register is write-only. Thus a shadow copy is provided so that
|
62 |
|
|
// it may be safely updated/shared by multiple threads.
|
63 |
|
|
//
|
64 |
|
|
extern unsigned long _assabet_BCR; // Shadow copy
|
65 |
|
|
|
66 |
|
|
extern void assabet_BCR(unsigned long mask, unsigned long value);
|
67 |
|
|
|
68 |
|
|
//
|
69 |
|
|
// Board Configuration data - read at RESET
|
70 |
|
|
//
|
71 |
|
|
extern unsigned long _assabet_CFG;
|
72 |
|
|
#endif
|
73 |
|
|
|
74 |
|
|
//
|
75 |
|
|
// Signal assertion levels
|
76 |
|
|
//
|
77 |
|
|
#define SA1110_LOGIC_ONE(m) (m & 0xFFFFFFFF)
|
78 |
|
|
#define SA1110_LOGIC_ZERO(m) (m & 0x00000000)
|
79 |
|
|
|
80 |
|
|
//
|
81 |
|
|
// SA1110/Assabet Board Control Register
|
82 |
|
|
//
|
83 |
|
|
#define SA1110_BOARD_CONTROL REG32_PTR(0x12000000)
|
84 |
|
|
#define SA1110_BCR_MIN 0x00A014E4 // Reset state
|
85 |
|
|
|
86 |
|
|
#define SA1110_BCR_CF_POWER 0x00000001 // 1 = CompactFlash power on
|
87 |
|
|
#define SA1110_BCR_CF_POWER_ON SA1110_LOGIC_ONE(SA1110_BCR_CF_POWER)
|
88 |
|
|
#define SA1110_BCR_CF_POWER_OFF SA1110_LOGIC_ZERO(SA1110_BCR_CF_POWER)
|
89 |
|
|
#define SA1110_BCR_CF_RESET 0x00000002 // 1 = CompactFlash reset
|
90 |
|
|
#define SA1110_BCR_CF_RESET_ENABLE SA1110_LOGIC_ONE(SA1110_BCR_CF_RESET)
|
91 |
|
|
#define SA1110_BCR_CF_RESET_DISABLE SA1110_LOGIC_ZERO(SA1110_BCR_CF_RESET)
|
92 |
|
|
#define SA1110_BCR_SOFT_RESET 0x00000004 // 0 = resets UCB1300, ADI7171, UDA1341
|
93 |
|
|
#define SA1110_BCR_IRDA_FREQ 0x00000008 // 0 = SIR, 1 = MIR/FIR
|
94 |
|
|
#define SA1110_BCR_IRDA_MD 0x00000030 // IrDA Mode & range
|
95 |
|
|
#define SA1110_BCR_IRDA_MD_MAX 0x00000000 // Max range and power
|
96 |
|
|
#define SA1110_BCR_IRDA_MD_OFF 0x00000010 // Shutdown
|
97 |
|
|
#define SA1110_BCR_IRDA_MD_23 0x00000020 // 2/3 power
|
98 |
|
|
#define SA1110_BCR_IRDA_MD_13 0x00000030 // 1/3 power
|
99 |
|
|
#define SA1110_BCR_STEREO_LB 0x00000040 // 1 = Stereo loopback on
|
100 |
|
|
#define SA1110_BCR_CF_BUS 0x00000080 // 0 = CompactFlash bus on
|
101 |
|
|
#define SA1110_BCR_CF_BUS_ON SA1110_LOGIC_ZERO(SA1110_BCR_CF_BUS)
|
102 |
|
|
#define SA1110_BCR_CF_BUS_OFF SA1110_LOGIC_ONE(SA1110_BCR_CF_BUS)
|
103 |
|
|
#define SA1110_BCR_AUDIO_ON 0x00000100 // 1 = UDA1341, MIC, DAA power on
|
104 |
|
|
#define SA1110_BCR_BACKLIGHT 0x00000200 // 1 = LCD backlight on
|
105 |
|
|
#define SA1110_BCR_LCD_BPP 0x00000400 // 1 = 16 RGB, 0 = 12 RGB
|
106 |
|
|
#define SA1110_BCR_LCD_16BPP SA1110_LOGIC_ONE(SA1110_BCR_LCD_BPP)
|
107 |
|
|
#define SA1110_BCR_LCD_12BPP SA1110_LOGIC_ZERO(SA1110_BCR_LCD_BPP)
|
108 |
|
|
#define SA1110_BCR_LCD 0x00000800 // 1 = LCD panel and controller on
|
109 |
|
|
#define SA1110_BCR_LCD_ON SA1110_LOGIC_ONE(SA1110_BCR_LCD)
|
110 |
|
|
#define SA1110_BCR_LCD_OFF SA1110_LOGIC_ZERO(SA1110_BCR_LCD)
|
111 |
|
|
#define SA1110_BCR_RS232_ENABLE 0x00001000 // 1 = Enable RD232 signals
|
112 |
|
|
#define SA1110_BCR_RED_LED 0x00002000 // 0 = Red LED on
|
113 |
|
|
#define SA1110_BCR_RED_LED_ON SA1110_LOGIC_ZERO(SA1110_BCR_RED_LED)
|
114 |
|
|
#define SA1110_BCR_RED_LED_OFF SA1110_LOGIC_ONE(SA1110_BCR_RED_LED)
|
115 |
|
|
#define SA1110_BCR_GREEN_LED 0x00004000 // 0 = Green LED on
|
116 |
|
|
#define SA1110_BCR_GREEN_LED_ON SA1110_LOGIC_ZERO(SA1110_BCR_GREEN_LED)
|
117 |
|
|
#define SA1110_BCR_GREEN_LED_OFF SA1110_LOGIC_ONE(SA1110_BCR_GREEN_LED)
|
118 |
|
|
#define SA1110_BCR_MOTOR 0x00008000 // 1 = Vibrator motor on
|
119 |
|
|
#define SA1110_BCR_MOTOR_ON SA1110_LOGIC_ONE(SA1110_BCR_MOTOR)
|
120 |
|
|
#define SA1110_BCR_MOTOR_OFF SA1110_LOGIC_ZERO(SA1110_BCR_MOTOR)
|
121 |
|
|
#define SA1110_BCR_COM_DTR 0x00010000 // COM port Data Terminal Ready
|
122 |
|
|
#define SA1110_BCR_COM_RTS 0x00020000 // COM port Request To Send
|
123 |
|
|
#define SA1110_BCR_RADIO_WAKE 0x00040000 // 1 = Wake up CPU with radio
|
124 |
|
|
#define SA1110_BCR_MUTE 0x00200000 // 1 = Audio muted
|
125 |
|
|
|
126 |
|
|
//
|
127 |
|
|
// Special purpose GPIO interrupt mappings
|
128 |
|
|
//
|
129 |
|
|
#define SA1110_CF_IRQ CYGNUM_HAL_INTERRUPT_GPIO21
|
130 |
|
|
#define SA1110_CF_DETECT CYGNUM_HAL_INTERRUPT_GPIO22
|
131 |
|
|
|
132 |
|
|
//
|
133 |
|
|
// GPIO layout
|
134 |
|
|
//
|
135 |
|
|
#define SA1110_GPIO_CF_DETECT 0x00400000 // 0 = Compact Flash detect
|
136 |
|
|
#define SA1110_GPIO_CF_PRESENT SA1110_LOGIC_ZERO(SA1110_GPIO_CF_DETECT)
|
137 |
|
|
#define SA1110_GPIO_CF_ABSENT SA1110_LOGIC_ONE(SA1110_GPIO_CF_DETECT)
|
138 |
|
|
|
139 |
|
|
//
|
140 |
|
|
// LCD Controller
|
141 |
|
|
//
|
142 |
|
|
#define SA1110_LCCR0 SA11X0_REGISTER(0x30100000)
|
143 |
|
|
#define SA1110_LCSR SA11X0_REGISTER(0x30100004)
|
144 |
|
|
#define SA1110_DBAR1 SA11X0_REGISTER(0x30100010)
|
145 |
|
|
#define SA1110_DCAR1 SA11X0_REGISTER(0x30100014)
|
146 |
|
|
#define SA1110_DBAR2 SA11X0_REGISTER(0x30100018)
|
147 |
|
|
#define SA1110_DCAR2 SA11X0_REGISTER(0x3010001C)
|
148 |
|
|
#define SA1110_LCCR1 SA11X0_REGISTER(0x30100020)
|
149 |
|
|
#define SA1110_LCCR2 SA11X0_REGISTER(0x30100024)
|
150 |
|
|
#define SA1110_LCCR3 SA11X0_REGISTER(0x30100028)
|
151 |
|
|
|
152 |
|
|
/*---------------------------------------------------------------------------*/
|
153 |
|
|
/* end of assabet.h */
|
154 |
|
|
#endif /* CYGONCE_ASSABET_H */
|