x393  1.0
FPGAcodeforElphelNC393camera
x393_tasks_mcntrl_en_dis_priority.vh
Go to the documentation of this file.
1 /*!
2  * @file x393_tasks_mcntrl_en_dis_priority.vh
3  * @date 2015-02-07
4  * @author Andrey Filippov
5  *
6  * @brief Simulation tasks for software reading/writing (with test patterns)
7  * of the block buffers.
8  *
9  * @copyright Copyright (c) 2015 Elphel, Inc.
10  *
11  * <b>License:</b>
12  *
13  * x393_tasks_mcntrl_en_dis_priority.vh is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * x393_tasks_mcntrl_en_dis_priority.vh is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program. If not, see <http://www.gnu.org/licenses/> .
25  *
26  * Additional permission under GNU GPL version 3 section 7:
27  * If you modify this Program, or any covered work, by linking or combining it
28  * with independent modules provided by the FPGA vendor only (this permission
29  * does not extend to any 3-rd party modules, "soft cores" or macros) under
30  * different license terms solely for the purpose of generating binary "bitstream"
31  * files and/or simulating the code, the copyright holders of this Program give
32  * you the right to distribute the covered work without those independent modules
33  * as long as the source code for them is available from the FPGA vendor free of
34  * charge, and there is no dependence on any encrypted modules for simulating of
35  * the combined code. This permission applies to you if the distributed code
36  * contains all the components and scripts required to completely simulate it
37  * with at least one of the Free Software programs.
38  */
39 task enable_cmda;
40  input en;
41  begin
42  write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_CMDA_EN + en, 0);
43  end
44 endtask
45 
46 task enable_cke;
47  input en;
48  begin
49  write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_CKE_EN + en, 0);
50  end
51 endtask
52 
53 task activate_sdrst;
54  input en;
55  begin
56  write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_SDRST_ACT + en, 0);
57  end
58 endtask
59 
60 task enable_refresh;
61  input en;
62  begin
63  write_contol_register(MCONTR_TOP_0BIT_ADDR + MCONTR_TOP_0BIT_REFRESH_EN + en, 0);
64  end
65 endtask
66 
67 task enable_memcntrl;
68  input en;
69  begin
70  write_contol_register(MCONTR_TOP_0BIT_ADDR + MCONTR_TOP_0BIT_MCONTR_EN + en, 0);
71  end
72 endtask
73 
74 task enable_memcntrl_channels;
75  input [15:0] chnen; // bit-per-channel, 1 - enable;
76  begin
77  ENABLED_CHANNELS = chnen; // currently enabled memory channels
78  write_contol_register(MCONTR_TOP_16BIT_ADDR + MCONTR_TOP_16BIT_CHN_EN, {16'b0,chnen});
79  end
80 endtask
81 
82 task enable_memcntrl_en_dis;
83  input [3:0] chn;
84  input en;
85  begin
86  if (en) begin
87  ENABLED_CHANNELS = ENABLED_CHANNELS | (1<<chn);
88  end else begin
89  ENABLED_CHANNELS = ENABLED_CHANNELS & ~(1<<chn);
90  end
91  write_contol_register(MCONTR_TOP_16BIT_ADDR + MCONTR_TOP_16BIT_CHN_EN, {16'b0,ENABLED_CHANNELS});
92  end
93 endtask
94 
95 
96 task configure_channel_priority;
97  input [ 3:0] chn;
98  input [15:0] priority; // (higher is more important)
99  begin
100  write_contol_register(MCONTR_ARBIT_ADDR + chn, {16'b0,priority});
101  end
102 endtask