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