]> cloudbase.mooo.com Git - avrcpm.git/blob - avrcpm/avr/config.inc
2562ebb5807292f91f5dea41eb2185ebf621941f
[avrcpm.git] / avrcpm / avr / config.inc
1 ; Configuration, hardware definition, ...
2 ;
3 ; Copyright (C) 2010 Sprite_tm
4 ; Copyright (C) 2010 Leo C.
5 ;
6 ; This file is part of avrcpm.
7 ;
8 ; avrcpm is free software: you can redistribute it and/or modify it
9 ; under the terms of the GNU General Public License as published by
10 ; the Free Software Foundation, either version 3 of the License, or
11 ; (at your option) any later version.
12 ;
13 ; avrcpm is distributed in the hope that it will be useful,
14 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ; GNU General Public License for more details.
17 ;
18 ; You should have received a copy of the GNU General Public License
19 ; along with avrcpm. If not, see <http://www.gnu.org/licenses/>.
20 ;
21 ; $Id$
22 ;
23
24
25 #define VMAJOR 2 /* Version number */
26 #define VMINOR 0
27
28 #ifndef DRAM_8BIT
29 #define DRAM_8BIT 1 /* 1 = 8bit wide DRAM */
30 #endif
31 #ifndef F_CPU
32 #define F_CPU 20000000 /* system clock in Hz; defaults to 20MHz */
33 #endif
34 #ifndef BAUD
35 #define BAUD 38400 /* console baud rate */
36 #endif
37
38 #define K 1024
39 #define M 1204*K
40
41 ;#define RAMSIZE 256*K*4 /* 1 chip 256Kx4 */
42 #define RAMSIZE 4*M*4 * 2 /* 2 chips 4Mx4 */
43
44 #define FAT16_SUPPORT 1 /* Include Support for FAT16 Partitions */
45 /* which may contain CP/M image files. */
46 #define RAMDISKCNT 0 /* Number of RAM disks */
47 #define RAMDISKNR 'I'-'A' /* Drive "letter" for first RAM disk */
48
49 #define PARTID 0x52 /* Partition table id */
50 /* http://www.win.tue.nl/~aeb/partitions/partition_types-1.html */
51 #define IPLADDR 0x2000 /* Bootloader load address */
52
53 #define DRAM_WAITSTATES 1 /* Number of additional clock cycles for dram read access */
54 #define REFR_RATE 64000 /* dram refresh rate in cycles/s. */
55 /* Most drams need 1/15.6µs. */
56 #define RXBUFSIZE 128 /* USART recieve buffer size. Must be power of 2 */
57 #define TXBUFSIZE 128 /* USART transmit buffer size. Must be power of 2 */
58
59
60
61 #define EM_Z80 0 /* we don't have any z80 instructions yet */
62
63 .equ BOOT_DEBUG = 0
64 .equ MMC_DEBUG = 0 /* Increase for more debugging */
65 .equ FAT16_DEBUG = 2
66 .equ INS_DEBUG = 0
67 .equ MEMTEST = 1
68 .equ BOOTWAIT = 1
69 .equ PORT_DEBUG = 0
70 .equ DISK_DEBUG = 0 /* Increase for more debugging */
71 .equ HOSTRW_DEBUG= 0
72 .equ MEMFILL = 1
73 .equ STACK_DBG = 0
74 .equ PRINT_PC = 0
75 .equ HEAP_DEBUG = 1
76
77 #define MMC_SPI2X 1 /* 0 = SPI CLK/4, 1 = SPI CLK/2 */
78
79 #define MEMFILL_VAL 0xCB /* Fill ram with cbs, which will trigger an invalid opcode error. */
80 #define DBG_TRACE_BOTTOM 0x01 /* Page boundaries for INS_DEBUG and PRINT_PC */
81 #define DBG_TRACE_TOP 0xdc /* Trace is off, below bottom page and above top page. */
82
83 ;-----------------------------------------------------------------------
84 ; Port declarations
85
86 #if DRAM_8BIT /* Implies software uart */
87
88 ;Port D
89 .equ RAM_D0 = 0
90 .equ RAM_D1 = 1
91 .equ RAM_D2 = 2
92 .equ RAM_D3 = 3
93 .equ RAM_D4 = 4
94 .equ RAM_D5 = 5
95 .equ RAM_D6 = 6
96 .equ RAM_D7 = 7
97 .equ RAM_A0 = 0
98 .equ RAM_A1 = 1
99 .equ RAM_A2 = 2
100 .equ RAM_A3 = 3
101 .equ RAM_A4 = 4
102 .equ RAM_A5 = 5
103 .equ RAM_A6 = 6
104 .equ RAM_A7 = 7
105
106 ;Port B
107 .equ MMC_MOSI = 3
108 .equ MMC_MISO = 4
109 .equ MMC_SCK = 5
110 .equ RAM_A8 = 3
111 .equ RAM_A9 = 4
112 .equ RAM_A10 = 5
113
114 .equ RXD = 0
115 .equ TXD = 1
116 .equ MMC_CS = 2
117
118 .equ P_MMC_CS = PORTB
119 .equ P_A8 = PORTB
120 .equ P_RXD = PORTB
121
122 ;Port C
123 .equ RAM_RAS = 0
124 .equ RAM_CAS = 1
125 .equ RAM_OE = 2
126 .equ RAM_W = 3
127
128 .equ P_RAS = PORTC
129 .equ P_CAS = PORTC
130 .equ P_OE = PORTC
131 .equ P_W = PORTC
132
133
134 #else /* 4 bit RAM, hardware uart */
135
136 ; Port D
137 .equ RXD = 0
138 .equ TXD = 1
139 .equ RAM_OE = 2
140 .equ RAM_A8 = 3
141 .equ MMC_CS = 4
142 .equ RAM_A5 = 5
143 .equ RAM_A6 = 6
144 .equ RAM_A7 = 7
145
146 .equ P_RXD = PORTD
147 .equ P_OE = PORTD
148 .equ P_A8 = PORTD
149 .equ P_MMC_CS = PORTD
150 .equ P_AH = PORTD
151 ; RAM_A[7..5]
152 .equ RAM_AH_MASK = (1<<RAM_A8)|(1<<RAM_A7)|(1<<RAM_A6)|(1<<RAM_A5)
153 .equ PD_OUTPUT_MASK = (1<<MMC_CS) | (1<<RAM_OE) | RAM_AH_MASK
154
155
156 ;Port B
157 .equ RAM_A4 = 0
158 .equ RAM_A3 = 1
159 .equ RAM_A2 = 2
160 .equ RAM_A1 = 3
161 .equ MMC_MOSI = 3
162 .equ RAM_A0 = 4
163 .equ MMC_MISO = 4
164 .equ RAM_RAS = 5
165 .equ MMC_SCK = 5
166
167 .equ P_RAS = PORTB
168 .equ P_AL = PORTB
169 ; RAM_A[4..0]
170 .equ RAM_AL_MASK = (1<<RAM_A4)|(1<<RAM_A3)|(1<<RAM_A2)|(1<<RAM_A1)|(1<<RAM_A0)
171 .equ PB_OUTPUT_MASK = (1<<RAM_ras) | RAM_AL_MASK
172
173 ;Port C
174 .equ RAM_D0 = 0
175 .equ RAM_D1 = 1
176 .equ RAM_D2 = 2
177 .equ RAM_D3 = 3
178 .equ RAM_W = 4
179 .equ RAM_CAS = 5
180
181 .equ P_DQ = PORTC
182 .equ P_W = PORTC
183 .equ P_CAS = PORTC
184
185 .equ RAM_DQ_MASK = (1<<RAM_D3)|(1<<RAM_D2)|(1<<RAM_D1)|(1<<RAM_D0)
186 .equ PC_OUTPUT_MASK = (1<<RAM_CAS)|(1<<RAM_W)
187
188 #endif /* DRAM_8BIT */
189
190
191 ;-----------------------------------------------------------------------
192 ;Register definitions
193
194 .def _tmp0 = r0
195 .def _tmp1 = r1
196
197 .def _RAS0 = r2
198 .def _CAS0 = r3
199 .def _OE = r4
200 .def _WE = r5
201 .def _255 = r6
202 .def _0 = r7
203 .def z_a = r9
204 ;.def stx_bitcount = r9
205 ;.def stx_dr = r10
206 .def srx_lastedgel = r10
207 .def srx_lastedgeh = r11
208
209 .def insstore= r8 ;
210 ;.def insop = r13 ;
211 .def insdecl = r12 ;
212 .def insdech = r13 ;
213 .def z_spl = r14
214 .def z_sph = r15 ;
215 .def temp = r16 ;
216 .def temp2 = r17 ;
217 .def temp3 = r18
218 .def temp4 = r19
219 .def z_flags = r20 ;
220 ;
221 .def opl = r22 ;
222 .def oph = r23 ;
223 .def z_pcl = r24 ;
224 .def z_pch = r25 ;
225 ; xl ;r26
226 ; xh ;r27
227 ; yl ;r28
228 ; yh ;r29
229 ; zl ;r30 ;
230 ; zh ;r31 ;
231
232
233
234 #if defined __ATmega8__
235 .equ flags = TWBR
236 .equ P_PUD = SFIOR
237 #else
238 .equ flags = GPIOR0
239 .equ P_PUD = MCUCR
240 #endif
241
242 ; Flags:
243 .equ hostact = 7 ;host active flag
244 .equ hostwrt = 6 ;host written flag
245 .equ rsflag = 5 ;read sector flag
246 .equ readop = 4 ;1 if read operation
247 .equ trace = 0
248
249 ; This is the base z80 port address for clock access
250 #define TIMERPORT 0x40
251 #define TIMER_CTL TIMERPORT
252 #define TIMER_MSECS TIMERPORT+1
253 #define TIMER_SECS TIMER_MSECS+2
254
255 #define starttimercmd 1
256 #define quitTimerCmd 2
257 #define printTimerCmd 15
258 #define uptimeCmd 16
259
260 #if defined __ATmega8__
261 .equ RXTXDR0 = UDR
262 .equ UCSR0A = UCSRA
263 .equ UDRE0 = UDRE
264 .equ UCSR0B = UCSRB
265 .equ RXCIE0 = RXCIE
266 .equ UDRIE0 = UDRIE
267 .equ RXEN0 = RXEN
268 .equ TXEN0 = TXEN
269 .equ UCSR0C = UCSRC
270 .equ UCSZ00 = UCSZ0
271 .equ UCSZ01 = UCSZ1
272 .equ UBRR0H = UBRRH
273 .equ UBRR0L = UBRRL
274 .equ OCR2A = OCR2
275 .equ OC2Aaddr= OC2addr
276 .equ TCCR2A = TCCR2
277 .equ TCCR2B = TCCR2
278 .equ TIMSK1 = TIMSK
279 .equ TIMSK2 = TIMSK
280 .equ OCIE2A = OCIE2
281 .equ TIFR1 = TIFR
282 .equ ICIE1 = TICIE1
283 #else
284 .equ RXTXDR0 = UDR0
285 #endif
286
287 ; vim:set ts=8 noet nowrap
288
289