1 |
134 |
olivier.gi |
/*===========================================================================*/
|
2 |
|
|
/* Copyright (C) 2001 Authors */
|
3 |
|
|
/* */
|
4 |
|
|
/* This source file may be used and distributed without restriction provided */
|
5 |
|
|
/* that this copyright statement is not removed from the file and that any */
|
6 |
|
|
/* derivative work contains the original copyright notice and the associated */
|
7 |
|
|
/* disclaimer. */
|
8 |
|
|
/* */
|
9 |
|
|
/* This source file is free software; you can redistribute it and/or modify */
|
10 |
|
|
/* it under the terms of the GNU Lesser General Public License as published */
|
11 |
|
|
/* by the Free Software Foundation; either version 2.1 of the License, or */
|
12 |
|
|
/* (at your option) any later version. */
|
13 |
|
|
/* */
|
14 |
|
|
/* This source is distributed in the hope that it will be useful, but WITHOUT*/
|
15 |
|
|
/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
|
16 |
|
|
/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
|
17 |
|
|
/* License for more details. */
|
18 |
|
|
/* */
|
19 |
|
|
/* You should have received a copy of the GNU Lesser General Public License */
|
20 |
|
|
/* along with this source; if not, write to the Free Software Foundation, */
|
21 |
|
|
/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
|
22 |
|
|
/* */
|
23 |
|
|
/*===========================================================================*/
|
24 |
|
|
/* CLOCK MODULE */
|
25 |
|
|
/*---------------------------------------------------------------------------*/
|
26 |
|
|
/* Test the clock module: */
|
27 |
|
|
/* - Check the LFXT wakeup when selected sa MCLK. */
|
28 |
|
|
/* */
|
29 |
|
|
/* Author(s): */
|
30 |
|
|
/* - Olivier Girard, olgirard@gmail.com */
|
31 |
|
|
/* */
|
32 |
|
|
/*---------------------------------------------------------------------------*/
|
33 |
|
|
/* $Rev: 19 $ */
|
34 |
|
|
/* $LastChangedBy: olivier.girard $ */
|
35 |
|
|
/* $LastChangedDate: 2009-08-04 23:47:15 +0200 (Tue, 04 Aug 2009) $ */
|
36 |
|
|
/*===========================================================================*/
|
37 |
|
|
|
38 |
|
|
`define LONG_TIMEOUT
|
39 |
|
|
|
40 |
|
|
integer mclk_counter;
|
41 |
|
|
always @ (negedge mclk)
|
42 |
|
|
mclk_counter <= mclk_counter+1;
|
43 |
|
|
|
44 |
|
|
integer lfxt_clk_counter;
|
45 |
|
|
always @ (negedge lfxt_clk)
|
46 |
|
|
lfxt_clk_counter <= lfxt_clk_counter+1;
|
47 |
|
|
|
48 |
|
|
reg [15:0] reg_val;
|
49 |
202 |
olivier.gi |
|
50 |
134 |
olivier.gi |
initial
|
51 |
|
|
begin
|
52 |
|
|
$display(" ===============================================");
|
53 |
|
|
$display("| START SIMULATION |");
|
54 |
|
|
$display(" ===============================================");
|
55 |
|
|
repeat(5) @(posedge mclk);
|
56 |
|
|
stimulus_done = 0;
|
57 |
|
|
|
58 |
180 |
olivier.gi |
`ifdef ASIC_CLOCKING
|
59 |
134 |
olivier.gi |
`ifdef OSCOFF_EN
|
60 |
|
|
`ifdef MCLK_MUX
|
61 |
202 |
olivier.gi |
|
62 |
134 |
olivier.gi |
//--------------------------------------------------------
|
63 |
|
|
// First make sure CPU runs with LFXT_CLK
|
64 |
|
|
//--------------------------------------------------------
|
65 |
|
|
|
66 |
|
|
@(r15 === 16'h0001);
|
67 |
|
|
#10;
|
68 |
|
|
mclk_counter = 0;
|
69 |
|
|
lfxt_clk_counter = 0;
|
70 |
|
|
@(r15 === 16'h0002);
|
71 |
|
|
#10;
|
72 |
|
|
if (mclk_counter !== 40) tb_error("====== CLOCK GENERATOR: TEST 1 =====");
|
73 |
|
|
if (lfxt_clk_counter !== 40) tb_error("====== CLOCK GENERATOR: TEST 2 =====");
|
74 |
|
|
if (r10 !== 0) tb_error("====== CLOCK GENERATOR: TEST 3 =====");
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
//--------------------------------------------------------
|
78 |
|
|
// Make sure the CPU stops and LFXT oscillator too
|
79 |
|
|
//--------------------------------------------------------
|
80 |
|
|
|
81 |
|
|
#10000;
|
82 |
|
|
mclk_counter = 0;
|
83 |
|
|
lfxt_clk_counter = 0;
|
84 |
|
|
#10000;
|
85 |
|
|
if (mclk_counter !== 0) tb_error("====== CLOCK GENERATOR: TEST 4 =====");
|
86 |
|
|
if (lfxt_clk_counter !== 0) tb_error("====== CLOCK GENERATOR: TEST 5 =====");
|
87 |
|
|
if (r10 !== 0) tb_error("====== CLOCK GENERATOR: TEST 6 =====");
|
88 |
|
|
#10000;
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
//--------------------------------------------------------
|
92 |
|
|
// Generate IRQ and make sure CPU re-runs with LFXT_CLK
|
93 |
|
|
//--------------------------------------------------------
|
94 |
|
|
|
95 |
200 |
olivier.gi |
wkup[0] = 1'b1;
|
96 |
134 |
olivier.gi |
@(negedge mclk);
|
97 |
200 |
olivier.gi |
irq[`IRQ_NR-16] = 1'b1;
|
98 |
|
|
@(negedge irq_acc[`IRQ_NR-16])
|
99 |
134 |
olivier.gi |
@(negedge mclk);
|
100 |
200 |
olivier.gi |
wkup[0] = 1'b0;
|
101 |
|
|
irq[`IRQ_NR-16] = 1'b0;
|
102 |
134 |
olivier.gi |
|
103 |
|
|
@(r15 === 16'h0003);
|
104 |
|
|
#10;
|
105 |
|
|
mclk_counter = 0;
|
106 |
|
|
lfxt_clk_counter = 0;
|
107 |
|
|
@(r15 === 16'h0004);
|
108 |
|
|
#10;
|
109 |
|
|
if (mclk_counter !== 40) tb_error("====== CLOCK GENERATOR: TEST 7 =====");
|
110 |
|
|
if (lfxt_clk_counter !== 40) tb_error("====== CLOCK GENERATOR: TEST 8 =====");
|
111 |
|
|
if (r10 !== 16'h5678) tb_error("====== CLOCK GENERATOR: TEST 9 =====");
|
112 |
|
|
|
113 |
|
|
|
114 |
|
|
`else
|
115 |
202 |
olivier.gi |
tb_skip_finish("| (this test requires the MCLK clock mux) |");
|
116 |
134 |
olivier.gi |
`endif
|
117 |
|
|
`else
|
118 |
202 |
olivier.gi |
tb_skip_finish("| (this test requires the OSCOFF option) |");
|
119 |
134 |
olivier.gi |
`endif
|
120 |
|
|
`else
|
121 |
202 |
olivier.gi |
tb_skip_finish("| (this test is not supported in FPGA mode) |");
|
122 |
134 |
olivier.gi |
`endif
|
123 |
|
|
|
124 |
|
|
stimulus_done = 1;
|
125 |
|
|
end
|