OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [rtl/] [verilog/] [openMSP430_defines.v] - Blame information for rev 202

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 olivier.gi
//----------------------------------------------------------------------------
2 117 olivier.gi
// Copyright (C) 2009 , Olivier Girard
3 2 olivier.gi
//
4 117 olivier.gi
// Redistribution and use in source and binary forms, with or without
5
// modification, are permitted provided that the following conditions
6
// are met:
7
//     * Redistributions of source code must retain the above copyright
8
//       notice, this list of conditions and the following disclaimer.
9
//     * Redistributions in binary form must reproduce the above copyright
10
//       notice, this list of conditions and the following disclaimer in the
11
//       documentation and/or other materials provided with the distribution.
12
//     * Neither the name of the authors nor the names of its contributors
13
//       may be used to endorse or promote products derived from this software
14
//       without specific prior written permission.
15 2 olivier.gi
//
16 117 olivier.gi
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
21
// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
26
// THE POSSIBILITY OF SUCH DAMAGE
27 2 olivier.gi
//
28
//----------------------------------------------------------------------------
29 200 olivier.gi
//
30 23 olivier.gi
// *File Name: openMSP430_defines.v
31 200 olivier.gi
//
32 2 olivier.gi
// *Module Description:
33
//                      openMSP430 Configuration file
34
//
35
// *Author(s):
36
//              - Olivier Girard,    olgirard@gmail.com
37
//
38
//----------------------------------------------------------------------------
39 17 olivier.gi
// $Rev: 202 $
40
// $LastChangedBy: olivier.girard $
41
// $LastChangedDate: 2015-07-01 23:13:32 +0200 (Wed, 01 Jul 2015) $
42
//----------------------------------------------------------------------------
43 202 olivier.gi
`define OMSP_NO_INCLUDE
44 103 olivier.gi
`ifdef OMSP_NO_INCLUDE
45
`else
46 33 olivier.gi
`include "openMSP430_undefines.v"
47 103 olivier.gi
`endif
48 2 olivier.gi
 
49 111 olivier.gi
//============================================================================
50
//============================================================================
51
// BASIC SYSTEM CONFIGURATION
52
//============================================================================
53
//============================================================================
54 72 olivier.gi
//
55 111 olivier.gi
// Note: the sum of program, data and peripheral memory spaces must not
56
//      exceed 64 kB
57 72 olivier.gi
//
58 2 olivier.gi
 
59 33 olivier.gi
// Program Memory Size:
60 72 olivier.gi
//                     Uncomment the required memory size
61
//-------------------------------------------------------
62 151 olivier.gi
//`define PMEM_SIZE_CUSTOM
63 72 olivier.gi
//`define PMEM_SIZE_59_KB
64
//`define PMEM_SIZE_55_KB
65
//`define PMEM_SIZE_54_KB
66
//`define PMEM_SIZE_51_KB
67
//`define PMEM_SIZE_48_KB
68
//`define PMEM_SIZE_41_KB
69
//`define PMEM_SIZE_32_KB
70
//`define PMEM_SIZE_24_KB
71
//`define PMEM_SIZE_16_KB
72
//`define PMEM_SIZE_12_KB
73
//`define PMEM_SIZE_8_KB
74 202 olivier.gi
`define PMEM_SIZE_4_KB
75
//`define PMEM_SIZE_2_KB
76 72 olivier.gi
//`define PMEM_SIZE_1_KB
77 2 olivier.gi
 
78 111 olivier.gi
 
79 33 olivier.gi
// Data Memory Size:
80 72 olivier.gi
//                     Uncomment the required memory size
81
//-------------------------------------------------------
82 151 olivier.gi
//`define DMEM_SIZE_CUSTOM
83 72 olivier.gi
//`define DMEM_SIZE_32_KB
84
//`define DMEM_SIZE_24_KB
85
//`define DMEM_SIZE_16_KB
86
//`define DMEM_SIZE_10_KB
87
//`define DMEM_SIZE_8_KB
88
//`define DMEM_SIZE_5_KB
89
//`define DMEM_SIZE_4_KB
90
//`define DMEM_SIZE_2p5_KB
91
//`define DMEM_SIZE_2_KB
92 202 olivier.gi
`define DMEM_SIZE_1_KB
93 72 olivier.gi
//`define DMEM_SIZE_512_B
94
//`define DMEM_SIZE_256_B
95 202 olivier.gi
//`define DMEM_SIZE_128_B
96 2 olivier.gi
 
97 111 olivier.gi
 
98 67 olivier.gi
// Include/Exclude Hardware Multiplier
99
`define MULTIPLIER
100
 
101
 
102 111 olivier.gi
// Include/Exclude Serial Debug interface
103 2 olivier.gi
`define DBG_EN
104
 
105
 
106 111 olivier.gi
//============================================================================
107
//============================================================================
108
// ADVANCED SYSTEM CONFIGURATION (FOR EXPERIENCED USERS)
109
//============================================================================
110
//============================================================================
111
 
112
//-------------------------------------------------------
113 134 olivier.gi
// Custom user version number
114
//-------------------------------------------------------
115
// This 5 bit field can be freely used in order to allow
116
// custom identification of the system through the debug
117
// interface.
118
// (see CPU_ID.USER_VERSION field in the documentation)
119
//-------------------------------------------------------
120
`define USER_VERSION 5'b00000
121
 
122
 
123
//-------------------------------------------------------
124
// Include/Exclude Watchdog timer
125
//-------------------------------------------------------
126
// When excluded, the following functionality will be
127
// lost:
128
//        - Watchog (both interval and watchdog modes)
129
//        - NMI interrupt edge selection
130
//        - Possibility to generate a software PUC reset
131
//-------------------------------------------------------
132
`define WATCHDOG
133
 
134
 
135 180 olivier.gi
//-------------------------------------------------------
136 202 olivier.gi
// Include/Exclude DMA interface support
137
//-------------------------------------------------------
138
`define DMA_IF_EN
139
 
140
 
141
//-------------------------------------------------------
142 134 olivier.gi
// Include/Exclude Non-Maskable-Interrupt support
143
//-------------------------------------------------------
144
`define NMI
145
 
146
 
147
//-------------------------------------------------------
148 192 olivier.gi
// Number of available IRQs
149
//-------------------------------------------------------
150
// Indicates the number of interrupt vectors supported
151
// (16, 32 or 64).
152
//-------------------------------------------------------
153 200 olivier.gi
`define IRQ_16
154 192 olivier.gi
//`define IRQ_32
155 200 olivier.gi
//`define IRQ_64
156 192 olivier.gi
 
157
 
158
//-------------------------------------------------------
159 134 olivier.gi
// Input synchronizers
160
//-------------------------------------------------------
161
// In some cases, the asynchronous input ports might
162
// already be synchronized externally.
163
// If an extensive CDC design review showed that this
164
// is really the case,  the individual synchronizers
165
// can be disabled with the following defines.
166
//
167
// Notes:
168
//        - all three signals are all sampled in the MCLK domain
169
//
170
//        - the dbg_en signal reset the debug interface
171
//         when 0. Therefore make sure it is glitch free.
172
//
173
//-------------------------------------------------------
174
`define SYNC_NMI
175
//`define SYNC_CPU_EN
176
//`define SYNC_DBG_EN
177
 
178
 
179
//-------------------------------------------------------
180 111 olivier.gi
// Peripheral Memory Space:
181
//-------------------------------------------------------
182
// The original MSP430 architecture map the peripherals
183
// from 0x0000 to 0x01FF (i.e. 512B of the memory space).
184
// The following defines allow you to expand this space
185
// up to 32 kB (i.e. from 0x0000 to 0x7fff).
186
// As a consequence, the data memory mapping will be
187
// shifted up and a custom linker script will therefore
188
// be required by the GCC compiler.
189
//-------------------------------------------------------
190 151 olivier.gi
//`define PER_SIZE_CUSTOM
191 111 olivier.gi
//`define PER_SIZE_32_KB
192
//`define PER_SIZE_16_KB
193
//`define PER_SIZE_8_KB
194
//`define PER_SIZE_4_KB
195
//`define PER_SIZE_2_KB
196
//`define PER_SIZE_1_KB
197
`define PER_SIZE_512_B
198
 
199
 
200
//-------------------------------------------------------
201
// Defines the debugger CPU_CTL.RST_BRK_EN reset value
202
// (CPU break on PUC reset)
203
//-------------------------------------------------------
204
// When defined, the CPU will automatically break after
205 134 olivier.gi
// a PUC occurrence by default. This is typically useful
206 111 olivier.gi
// when the program memory can only be initialized through
207
// the serial debug interface.
208
//-------------------------------------------------------
209 134 olivier.gi
`define DBG_RST_BRK_EN
210 111 olivier.gi
 
211
 
212
//============================================================================
213
//============================================================================
214
// EXPERT SYSTEM CONFIGURATION ( !!!! EXPERTS ONLY !!!! )
215
//============================================================================
216
//============================================================================
217 2 olivier.gi
//
218 111 olivier.gi
// IMPORTANT NOTE:  Please update following configuration options ONLY if
219
//                 you have a good reason to do so... and if you know what
220
//                 you are doing :-P
221
//
222
//============================================================================
223 2 olivier.gi
 
224 111 olivier.gi
//-------------------------------------------------------
225 154 olivier.gi
// Select serial debug interface protocol
226
//-------------------------------------------------------
227
//    DBG_UART -> Enable UART (8N1) debug interface
228
//    DBG_I2C  -> Enable I2C debug interface
229
//-------------------------------------------------------
230
`define DBG_UART
231
//`define DBG_I2C
232
 
233
 
234
//-------------------------------------------------------
235
// Enable the I2C broadcast address
236
//-------------------------------------------------------
237
// For multicore systems, a common I2C broadcast address
238
// can be given to all oMSP cores in order to
239
// synchronously RESET, START, STOP, or STEP all CPUs
240
// at once with a single I2C command.
241
// If you have a single openMSP430 in your system,
242
// this option can stay commented-out.
243
//-------------------------------------------------------
244
//`define DBG_I2C_BROADCAST
245
 
246
 
247
//-------------------------------------------------------
248 134 olivier.gi
// Number of hardware breakpoint/watchpoint units
249
// (each unit contains two hardware addresses available
250
// for breakpoints or watchpoints):
251 111 olivier.gi
//   - DBG_HWBRK_0 -> Include hardware breakpoints unit 0
252
//   - DBG_HWBRK_1 -> Include hardware breakpoints unit 1
253
//   - DBG_HWBRK_2 -> Include hardware breakpoints unit 2
254
//   - DBG_HWBRK_3 -> Include hardware breakpoints unit 3
255
//-------------------------------------------------------
256
// Please keep in mind that hardware breakpoints only
257
// make sense whenever the program memory is not an SRAM
258
// (i.e. Flash/OTP/ROM/...) or when you are interested
259 134 olivier.gi
// in data breakpoints.
260 111 olivier.gi
//-------------------------------------------------------
261
//`define  DBG_HWBRK_0
262
//`define  DBG_HWBRK_1
263
//`define  DBG_HWBRK_2
264
//`define  DBG_HWBRK_3
265
 
266
 
267
//-------------------------------------------------------
268
// Enable/Disable the hardware breakpoint RANGE mode
269
//-------------------------------------------------------
270
// When enabled this feature allows the hardware breakpoint
271
// units to stop the cpu whenever an instruction or data
272
// access lays within an address range.
273
// Note that this feature is not supported by GDB.
274
//-------------------------------------------------------
275
//`define DBG_HWBRK_RANGE
276
 
277
 
278
//-------------------------------------------------------
279 151 olivier.gi
// Custom Program/Data and Peripheral Memory Spaces
280
//-------------------------------------------------------
281
// The following values are valid only if the
282
// corresponding *_SIZE_CUSTOM defines are uncommented:
283
//
284
//  - *_SIZE   : size of the section in bytes.
285
//  - *_AWIDTH : address port width, this value must allow
286
//               to address all WORDS of the section
287
//               (i.e. the *_SIZE divided by 2)
288
//-------------------------------------------------------
289
 
290 202 olivier.gi
// Custom Program memory    (enabled with PMEM_SIZE_CUSTOM)
291 151 olivier.gi
`define PMEM_CUSTOM_AWIDTH      10
292 154 olivier.gi
`define PMEM_CUSTOM_SIZE      2048
293 151 olivier.gi
 
294 202 olivier.gi
// Custom Data memory       (enabled with DMEM_SIZE_CUSTOM)
295 151 olivier.gi
`define DMEM_CUSTOM_AWIDTH       6
296
`define DMEM_CUSTOM_SIZE       128
297
 
298 202 olivier.gi
// Custom Peripheral memory (enabled with PER_SIZE_CUSTOM)
299 151 olivier.gi
`define PER_CUSTOM_AWIDTH        8
300
`define PER_CUSTOM_SIZE        512
301
 
302
 
303
//-------------------------------------------------------
304 134 olivier.gi
// ASIC version
305 111 olivier.gi
//-------------------------------------------------------
306 134 olivier.gi
// When uncommented, this define will enable the
307
// ASIC system configuration section (see below) and
308
// will activate scan support for production test.
309 106 olivier.gi
//
310 134 olivier.gi
// WARNING: if you target an FPGA, leave this define
311
//          commented.
312 111 olivier.gi
//-------------------------------------------------------
313 202 olivier.gi
`define ASIC
314 2 olivier.gi
 
315 106 olivier.gi
 
316 134 olivier.gi
//============================================================================
317
//============================================================================
318
// ASIC SYSTEM CONFIGURATION ( !!!! EXPERTS/PROFESSIONALS ONLY !!!! )
319
//============================================================================
320
//============================================================================
321
`ifdef ASIC
322 111 olivier.gi
 
323 134 olivier.gi
//===============================================================
324
// FINE GRAINED CLOCK GATING
325
//===============================================================
326
 
327
//-------------------------------------------------------
328
// When uncommented, this define will enable the fine
329
// grained clock gating of all registers in the core.
330
//-------------------------------------------------------
331
`define CLOCK_GATING
332
 
333
 
334
//===============================================================
335 180 olivier.gi
// ASIC CLOCKING
336
//===============================================================
337
 
338
//-------------------------------------------------------
339
// When uncommented, this define will enable the ASIC
340
// architectural clock gating as well as the advanced low
341
// power modes support (most common).
342
// Comment this out in order to get FPGA-like clocking.
343
//-------------------------------------------------------
344
`define ASIC_CLOCKING
345
 
346
 
347
`ifdef ASIC_CLOCKING
348
//===============================================================
349 134 olivier.gi
// LFXT CLOCK DOMAIN
350
//===============================================================
351
 
352
//-------------------------------------------------------
353
// When uncommented, this define will enable the lfxt_clk
354
// clock domain.
355
// When commented out, the whole chip is clocked with dco_clk.
356
//-------------------------------------------------------
357
`define LFXT_DOMAIN
358
 
359
 
360
//===============================================================
361
// CLOCK MUXES
362
//===============================================================
363
 
364
//-------------------------------------------------------
365
// MCLK: Clock Mux
366
//-------------------------------------------------------
367
// When uncommented, this define will enable the
368
// MCLK clock MUX allowing the selection between
369
// DCO_CLK and LFXT_CLK with the BCSCTL2.SELMx register.
370
// When commented, DCO_CLK is selected.
371
//-------------------------------------------------------
372 202 olivier.gi
//`define MCLK_MUX
373 134 olivier.gi
 
374
//-------------------------------------------------------
375
// SMCLK: Clock Mux
376
//-------------------------------------------------------
377
// When uncommented, this define will enable the
378
// SMCLK clock MUX allowing the selection between
379
// DCO_CLK and LFXT_CLK with the BCSCTL2.SELS register.
380
// When commented, DCO_CLK is selected.
381
//-------------------------------------------------------
382 202 olivier.gi
//`define SMCLK_MUX
383 134 olivier.gi
 
384
//-------------------------------------------------------
385
// WATCHDOG: Clock Mux
386
//-------------------------------------------------------
387
// When uncommented, this define will enable the
388
// Watchdog clock MUX allowing the selection between
389
// ACLK and SMCLK with the WDTCTL.WDTSSEL register.
390
// When commented out, ACLK is selected if the
391
// WATCHDOG_NOMUX_ACLK define is uncommented, SMCLK is
392
// selected otherwise.
393
//-------------------------------------------------------
394 202 olivier.gi
//`define WATCHDOG_MUX
395 134 olivier.gi
//`define WATCHDOG_NOMUX_ACLK
396
 
397
 
398
//===============================================================
399
// CLOCK DIVIDERS
400
//===============================================================
401
 
402
//-------------------------------------------------------
403
// MCLK: Clock divider
404
//-------------------------------------------------------
405
// When uncommented, this define will enable the
406
// MCLK clock divider (/1/2/4/8)
407
//-------------------------------------------------------
408
`define MCLK_DIVIDER
409
 
410
//-------------------------------------------------------
411
// SMCLK: Clock divider (/1/2/4/8)
412
//-------------------------------------------------------
413
// When uncommented, this define will enable the
414
// SMCLK clock divider
415
//-------------------------------------------------------
416
`define SMCLK_DIVIDER
417
 
418
//-------------------------------------------------------
419
// ACLK: Clock divider (/1/2/4/8)
420
//-------------------------------------------------------
421
// When uncommented, this define will enable the
422
// ACLK clock divider
423
//-------------------------------------------------------
424
`define ACLK_DIVIDER
425
 
426
 
427
//===============================================================
428
// LOW POWER MODES
429
//===============================================================
430
 
431
//-------------------------------------------------------
432
// LOW POWER MODE: CPUOFF
433
//-------------------------------------------------------
434
// When uncommented, this define will include the
435
// clock gate allowing to switch off MCLK in
436
// all low power modes: LPM0, LPM1, LPM2, LPM3, LPM4
437
//-------------------------------------------------------
438
`define CPUOFF_EN
439
 
440
//-------------------------------------------------------
441
// LOW POWER MODE: SCG0
442
//-------------------------------------------------------
443
// When uncommented, this define will enable the
444
// DCO_ENABLE/WKUP port control (always 1 when commented).
445
// This allows to switch off the DCO oscillator in the
446
// following low power modes: LPM1, LPM3, LPM4
447
//-------------------------------------------------------
448
`define SCG0_EN
449
 
450
//-------------------------------------------------------
451
// LOW POWER MODE: SCG1
452
//-------------------------------------------------------
453
// When uncommented, this define will include the
454
// clock gate allowing to switch off SMCLK in
455
// the following low power modes: LPM2, LPM3, LPM4
456
//-------------------------------------------------------
457
`define SCG1_EN
458
 
459
//-------------------------------------------------------
460
// LOW POWER MODE: OSCOFF
461
//-------------------------------------------------------
462
// When uncommented, this define will include the
463
// LFXT_CLK clock gate and enable the LFXT_ENABLE/WKUP
464
// port control (always 1 when commented).
465
// This allows to switch off the low frequency oscillator
466
// in the following low power modes: LPM4
467
//-------------------------------------------------------
468
`define OSCOFF_EN
469
 
470
 
471
`endif
472 180 olivier.gi
`endif
473 134 olivier.gi
 
474 2 olivier.gi
//==========================================================================//
475
//==========================================================================//
476
//==========================================================================//
477
//==========================================================================//
478
//=====        SYSTEM CONSTANTS --- !!!!!!!! DO NOT EDIT !!!!!!!!      =====//
479
//==========================================================================//
480
//==========================================================================//
481
//==========================================================================//
482
//==========================================================================//
483
 
484 72 olivier.gi
//
485 111 olivier.gi
// PROGRAM, DATA & PERIPHERAL MEMORY CONFIGURATION
486
//==================================================
487 2 olivier.gi
 
488 72 olivier.gi
// Program Memory Size
489
`ifdef PMEM_SIZE_59_KB
490
  `define PMEM_AWIDTH      15
491
  `define PMEM_SIZE     60416
492
`endif
493
`ifdef PMEM_SIZE_55_KB
494
  `define PMEM_AWIDTH      15
495
  `define PMEM_SIZE     56320
496
`endif
497
`ifdef PMEM_SIZE_54_KB
498
  `define PMEM_AWIDTH      15
499
  `define PMEM_SIZE     55296
500
`endif
501
`ifdef PMEM_SIZE_51_KB
502
  `define PMEM_AWIDTH      15
503
  `define PMEM_SIZE     52224
504
`endif
505
`ifdef PMEM_SIZE_48_KB
506
  `define PMEM_AWIDTH      15
507
  `define PMEM_SIZE     49152
508
`endif
509
`ifdef PMEM_SIZE_41_KB
510
  `define PMEM_AWIDTH      15
511
  `define PMEM_SIZE     41984
512
`endif
513
`ifdef PMEM_SIZE_32_KB
514
  `define PMEM_AWIDTH      14
515
  `define PMEM_SIZE     32768
516
`endif
517
`ifdef PMEM_SIZE_24_KB
518
  `define PMEM_AWIDTH      14
519
  `define PMEM_SIZE     24576
520
`endif
521
`ifdef PMEM_SIZE_16_KB
522
  `define PMEM_AWIDTH      13
523
  `define PMEM_SIZE     16384
524
`endif
525
`ifdef PMEM_SIZE_12_KB
526
  `define PMEM_AWIDTH      13
527
  `define PMEM_SIZE     12288
528
`endif
529
`ifdef PMEM_SIZE_8_KB
530
  `define PMEM_AWIDTH      12
531
  `define PMEM_SIZE      8192
532
`endif
533
`ifdef PMEM_SIZE_4_KB
534
  `define PMEM_AWIDTH      11
535
  `define PMEM_SIZE      4096
536
`endif
537
`ifdef PMEM_SIZE_2_KB
538
  `define PMEM_AWIDTH      10
539
  `define PMEM_SIZE      2048
540
`endif
541
`ifdef PMEM_SIZE_1_KB
542
  `define PMEM_AWIDTH       9
543
  `define PMEM_SIZE      1024
544
`endif
545 151 olivier.gi
`ifdef PMEM_SIZE_CUSTOM
546
  `define PMEM_AWIDTH       `PMEM_CUSTOM_AWIDTH
547
  `define PMEM_SIZE         `PMEM_CUSTOM_SIZE
548
`endif
549 72 olivier.gi
 
550
// Data Memory Size
551
`ifdef DMEM_SIZE_32_KB
552
  `define DMEM_AWIDTH       14
553
  `define DMEM_SIZE      32768
554
`endif
555
`ifdef DMEM_SIZE_24_KB
556
  `define DMEM_AWIDTH       14
557
  `define DMEM_SIZE      24576
558
`endif
559
`ifdef DMEM_SIZE_16_KB
560
  `define DMEM_AWIDTH       13
561
  `define DMEM_SIZE      16384
562
`endif
563
`ifdef DMEM_SIZE_10_KB
564
  `define DMEM_AWIDTH       13
565
  `define DMEM_SIZE      10240
566
`endif
567
`ifdef DMEM_SIZE_8_KB
568
  `define DMEM_AWIDTH       12
569
  `define DMEM_SIZE       8192
570
`endif
571
`ifdef DMEM_SIZE_5_KB
572
  `define DMEM_AWIDTH       12
573
  `define DMEM_SIZE       5120
574
`endif
575
`ifdef DMEM_SIZE_4_KB
576
  `define DMEM_AWIDTH       11
577
  `define DMEM_SIZE       4096
578
`endif
579
`ifdef DMEM_SIZE_2p5_KB
580
  `define DMEM_AWIDTH       11
581
  `define DMEM_SIZE       2560
582
`endif
583
`ifdef DMEM_SIZE_2_KB
584
  `define DMEM_AWIDTH       10
585
  `define DMEM_SIZE       2048
586
`endif
587
`ifdef DMEM_SIZE_1_KB
588
  `define DMEM_AWIDTH        9
589
  `define DMEM_SIZE       1024
590
`endif
591
`ifdef DMEM_SIZE_512_B
592
  `define DMEM_AWIDTH        8
593
  `define DMEM_SIZE        512
594
`endif
595
`ifdef DMEM_SIZE_256_B
596
  `define DMEM_AWIDTH        7
597
  `define DMEM_SIZE        256
598
`endif
599
`ifdef DMEM_SIZE_128_B
600
  `define DMEM_AWIDTH        6
601
  `define DMEM_SIZE        128
602
`endif
603 151 olivier.gi
`ifdef DMEM_SIZE_CUSTOM
604
  `define DMEM_AWIDTH       `DMEM_CUSTOM_AWIDTH
605
  `define DMEM_SIZE         `DMEM_CUSTOM_SIZE
606
`endif
607 72 olivier.gi
 
608 111 olivier.gi
// Peripheral Memory Size
609
`ifdef PER_SIZE_32_KB
610
  `define PER_AWIDTH        14
611
  `define PER_SIZE       32768
612
`endif
613
`ifdef PER_SIZE_16_KB
614
  `define PER_AWIDTH        13
615
  `define PER_SIZE       16384
616
`endif
617
`ifdef PER_SIZE_8_KB
618
  `define PER_AWIDTH        12
619
  `define PER_SIZE        8192
620
`endif
621
`ifdef PER_SIZE_4_KB
622
  `define PER_AWIDTH        11
623
  `define PER_SIZE        4096
624
`endif
625
`ifdef PER_SIZE_2_KB
626
  `define PER_AWIDTH        10
627
  `define PER_SIZE        2048
628
`endif
629
`ifdef PER_SIZE_1_KB
630
  `define PER_AWIDTH         9
631
  `define PER_SIZE        1024
632
`endif
633
`ifdef PER_SIZE_512_B
634
  `define PER_AWIDTH         8
635
  `define PER_SIZE         512
636
`endif
637 151 olivier.gi
`ifdef PER_SIZE_CUSTOM
638
  `define PER_AWIDTH        `PER_CUSTOM_AWIDTH
639
  `define PER_SIZE          `PER_CUSTOM_SIZE
640
`endif
641 111 olivier.gi
 
642 33 olivier.gi
// Data Memory Base Adresses
643 111 olivier.gi
`define DMEM_BASE  `PER_SIZE
644 2 olivier.gi
 
645 33 olivier.gi
// Program & Data Memory most significant address bit (for 16 bit words)
646
`define PMEM_MSB   `PMEM_AWIDTH-1
647
`define DMEM_MSB   `DMEM_AWIDTH-1
648 111 olivier.gi
`define PER_MSB    `PER_AWIDTH-1
649 2 olivier.gi
 
650 192 olivier.gi
// Number of available IRQs
651
`ifdef  IRQ_16
652
`define IRQ_NR 16
653
`endif
654
`ifdef  IRQ_32
655
`define IRQ_NR 32
656
`define IRQ_NR_GE_32
657
`endif
658
`ifdef  IRQ_64
659
`define IRQ_NR 64
660
`define IRQ_NR_GE_32
661
`endif
662
 
663 72 olivier.gi
//
664
// STATES, REGISTER FIELDS, ...
665
//======================================
666 2 olivier.gi
 
667
// Instructions type
668
`define INST_SO  0
669
`define INST_JMP 1
670
`define INST_TO  2
671
 
672
// Single-operand arithmetic
673
`define RRC    0
674
`define SWPB   1
675
`define RRA    2
676
`define SXT    3
677
`define PUSH   4
678
`define CALL   5
679
`define RETI   6
680
`define IRQ    7
681
 
682
// Conditional jump
683
`define JNE    0
684
`define JEQ    1
685
`define JNC    2
686
`define JC     3
687
`define JN     4
688
`define JGE    5
689
`define JL     6
690
`define JMP    7
691
 
692
// Two-operand arithmetic
693
`define MOV    0
694
`define ADD    1
695
`define ADDC   2
696
`define SUBC   3
697
`define SUB    4
698
`define CMP    5
699
`define DADD   6
700
`define BIT    7
701
`define BIC    8
702
`define BIS    9
703
`define XOR   10
704
`define AND   11
705
 
706
// Addressing modes
707
`define DIR      0
708
`define IDX      1
709
`define INDIR    2
710
`define INDIR_I  3
711
`define SYMB     4
712
`define IMM      5
713
`define ABS      6
714
`define CONST    7
715
 
716 111 olivier.gi
// Instruction state machine
717
`define I_IRQ_FETCH 3'h0
718
`define I_IRQ_DONE  3'h1
719
`define I_DEC       3'h2
720
`define I_EXT1      3'h3
721
`define I_EXT2      3'h4
722
`define I_IDLE      3'h5
723
 
724 2 olivier.gi
// Execution state machine
725 134 olivier.gi
// (swapped E_IRQ_0 and E_IRQ_2 values to suppress glitch generation warning from lint tool)
726
`define E_IRQ_0     4'h2
727 111 olivier.gi
`define E_IRQ_1     4'h1
728 134 olivier.gi
`define E_IRQ_2     4'h0
729 111 olivier.gi
`define E_IRQ_3     4'h3
730
`define E_IRQ_4     4'h4
731
`define E_SRC_AD    4'h5
732
`define E_SRC_RD    4'h6
733
`define E_SRC_WR    4'h7
734
`define E_DST_AD    4'h8
735
`define E_DST_RD    4'h9
736
`define E_DST_WR    4'hA
737
`define E_EXEC      4'hB
738
`define E_JUMP      4'hC
739
`define E_IDLE      4'hD
740 2 olivier.gi
 
741
// ALU control signals
742
`define ALU_SRC_INV   0
743
`define ALU_INC       1
744
`define ALU_INC_C     2
745
`define ALU_ADD       3
746
`define ALU_AND       4
747
`define ALU_OR        5
748
`define ALU_XOR       6
749
`define ALU_DADD      7
750
`define ALU_STAT_7    8
751
`define ALU_STAT_F    9
752
`define ALU_SHIFT    10
753
`define EXEC_NO_WR   11
754
 
755
// Debug interface
756
`define DBG_UART_WR   18
757
`define DBG_UART_BW   17
758
`define DBG_UART_ADDR 16:11
759
 
760
// Debug interface CPU_CTL register
761
`define HALT        0
762
`define RUN         1
763
`define ISTEP       2
764
`define SW_BRK_EN   3
765
`define FRZ_BRK_EN  4
766
`define RST_BRK_EN  5
767
`define CPU_RST     6
768
 
769
// Debug interface CPU_STAT register
770
`define HALT_RUN    0
771
`define PUC_PND     1
772
`define SWBRK_PND   3
773
`define HWBRK0_PND  4
774
`define HWBRK1_PND  5
775
 
776
// Debug interface BRKx_CTL register
777
`define BRK_MODE_RD 0
778
`define BRK_MODE_WR 1
779
`define BRK_MODE    1:0
780
`define BRK_EN      2
781
`define BRK_I_EN    3
782
`define BRK_RANGE   4
783
 
784
// Basic clock module: BCSCTL1 Control Register
785
`define DIVAx       5:4
786 202 olivier.gi
`define DMA_CPUOFF  0
787
`define DMA_SCG0    1
788
`define DMA_SCG1    2
789
`define DMA_OSCOFF  3
790 2 olivier.gi
 
791
// Basic clock module: BCSCTL2 Control Register
792 134 olivier.gi
`define SELMx       7
793
`define DIVMx       5:4
794 2 olivier.gi
`define SELS        3
795
`define DIVSx       2:1
796
 
797 134 olivier.gi
// MCLK Clock gate
798
`ifdef CPUOFF_EN
799
  `define MCLK_CGATE
800
`else
801
`ifdef MCLK_DIVIDER
802
  `define MCLK_CGATE
803
`endif
804
`endif
805 2 olivier.gi
 
806 134 olivier.gi
// SMCLK Clock gate
807
`ifdef SCG1_EN
808
  `define SMCLK_CGATE
809
`else
810
`ifdef SMCLK_DIVIDER
811
  `define SMCLK_CGATE
812
`endif
813
`endif
814
 
815 2 olivier.gi
//
816
// DEBUG INTERFACE EXTRA CONFIGURATION
817
//======================================
818
 
819 111 olivier.gi
// Debug interface: CPU version
820 202 olivier.gi
//   1 - FPGA support only (Pre-BSD licence era)
821
//   2 - Add ASIC support
822
//   3 - Add DMA interface support
823
`define CPU_VERSION   3'h3
824 111 olivier.gi
 
825 2 olivier.gi
// Debug interface: Software breakpoint opcode
826
`define DBG_SWBRK_OP 16'h4343
827
 
828
// Debug UART interface auto data synchronization
829
// If the following define is commented out, then
830
// the DBG_UART_BAUD and DBG_DCO_FREQ need to be properly
831
// defined.
832
`define DBG_UART_AUTO_SYNC
833
 
834
// Debug UART interface data rate
835
//      In order to properly setup the UART debug interface, you
836
//      need to specify the DCO_CLK frequency (DBG_DCO_FREQ) and
837
//      the chosen BAUD rate from the UART interface.
838
//
839
//`define DBG_UART_BAUD    9600
840
//`define DBG_UART_BAUD   19200
841
//`define DBG_UART_BAUD   38400
842
//`define DBG_UART_BAUD   57600
843
//`define DBG_UART_BAUD  115200
844
//`define DBG_UART_BAUD  230400
845
//`define DBG_UART_BAUD  460800
846
//`define DBG_UART_BAUD  576000
847
//`define DBG_UART_BAUD  921600
848
`define DBG_UART_BAUD 2000000
849
`define DBG_DCO_FREQ  20000000
850
`define DBG_UART_CNT ((`DBG_DCO_FREQ/`DBG_UART_BAUD)-1)
851
 
852 134 olivier.gi
// Debug interface input synchronizer
853
`define SYNC_DBG_UART_RXD
854
 
855 57 olivier.gi
// Enable/Disable the hardware breakpoint RANGE mode
856 111 olivier.gi
`ifdef DBG_HWBRK_RANGE
857
 `define HWBRK_RANGE 1'b1
858
`else
859
 `define HWBRK_RANGE 1'b0
860
`endif
861 57 olivier.gi
 
862 74 olivier.gi
// Counter width for the debug interface UART
863
`define DBG_UART_XFER_CNT_W 16
864
 
865 2 olivier.gi
// Check configuration
866
`ifdef DBG_EN
867
 `ifdef DBG_UART
868 154 olivier.gi
   `ifdef DBG_I2C
869
CONFIGURATION ERROR: I2C AND UART DEBUG INTERFACE ARE BOTH ENABLED
870 2 olivier.gi
   `endif
871
 `else
872 154 olivier.gi
   `ifdef DBG_I2C
873 2 olivier.gi
   `else
874 154 olivier.gi
CONFIGURATION ERROR: I2C OR UART DEBUG INTERFACE SHOULD BE ENABLED
875 2 olivier.gi
   `endif
876
 `endif
877
`endif
878 67 olivier.gi
 
879
//
880
// MULTIPLIER CONFIGURATION
881
//======================================
882
 
883
// If uncommented, the following define selects
884
// the 16x16 multiplier (1 cycle) instead of the
885
// default 16x8 multplier (2 cycles)
886
//`define MPY_16x16
887 200 olivier.gi
 
888 134 olivier.gi
//======================================
889
// CONFIGURATION CHECKS
890
//======================================
891 192 olivier.gi
 
892
`ifdef  IRQ_16
893
  `ifdef  IRQ_32
894
CONFIGURATION ERROR: ONLY ONE OF THE IRQ NUMBER OPTION CAN BE SELECTED
895
  `endif
896
  `ifdef  IRQ_64
897
CONFIGURATION ERROR: ONLY ONE OF THE IRQ NUMBER OPTION CAN BE SELECTED
898
  `endif
899
`endif
900
`ifdef  IRQ_32
901
  `ifdef  IRQ_64
902
CONFIGURATION ERROR: ONLY ONE OF THE IRQ NUMBER OPTION CAN BE SELECTED
903
  `endif
904
`endif
905 134 olivier.gi
`ifdef LFXT_DOMAIN
906
`else
907
 `ifdef MCLK_MUX
908
CONFIGURATION ERROR: THE MCLK_MUX CAN ONLY BE ENABLED IF THE LFXT_DOMAIN IS ENABLED AS WELL
909
 `endif
910
 `ifdef SMCLK_MUX
911
CONFIGURATION ERROR: THE SMCLK_MUX CAN ONLY BE ENABLED IF THE LFXT_DOMAIN IS ENABLED AS WELL
912 200 olivier.gi
 `endif
913 134 olivier.gi
 `ifdef WATCHDOG_MUX
914
CONFIGURATION ERROR: THE WATCHDOG_MUX CAN ONLY BE ENABLED IF THE LFXT_DOMAIN IS ENABLED AS WELL
915
 `else
916
   `ifdef WATCHDOG_NOMUX_ACLK
917
CONFIGURATION ERROR: THE WATCHDOG_NOMUX_ACLK CAN ONLY BE ENABLED IF THE LFXT_DOMAIN IS ENABLED AS WELL
918
   `endif
919
 `endif
920
 `ifdef OSCOFF_EN
921
CONFIGURATION ERROR: THE OSCOFF LOW POWER MODE CAN ONLY BE ENABLED IF THE LFXT_DOMAIN IS ENABLED AS WELL
922 200 olivier.gi
 `endif
923 134 olivier.gi
`endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.