2 * @file x393_tasks_mcntrl_en_dis_priority.vh
4 * @author Andrey Filippov
6 * @brief Simulation tasks for software reading/writing (with test patterns)
7 * of the block buffers.
9 * @copyright Copyright (c) 2015 Elphel, Inc.
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.
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.
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/> .
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.
42 write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_CMDA_EN + en, 0);
49 write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_CKE_EN + en, 0);
56 write_contol_register(MCONTR_PHY_0BIT_ADDR + MCONTR_PHY_0BIT_SDRST_ACT + en, 0);
63 write_contol_register(MCONTR_TOP_0BIT_ADDR + MCONTR_TOP_0BIT_REFRESH_EN + en, 0);
70 write_contol_register(MCONTR_TOP_0BIT_ADDR + MCONTR_TOP_0BIT_MCONTR_EN + en, 0);
74 task enable_memcntrl_channels;
75 input [15:0] chnen; // bit-per-channel, 1 - enable;
77 ENABLED_CHANNELS = chnen; // currently enabled memory channels
78 write_contol_register(MCONTR_TOP_16BIT_ADDR + MCONTR_TOP_16BIT_CHN_EN, {16'b0,chnen});
82 task enable_memcntrl_en_dis;
87 ENABLED_CHANNELS = ENABLED_CHANNELS | (1<<chn);
89 ENABLED_CHANNELS = ENABLED_CHANNELS & ~(1<<chn);
91 write_contol_register(MCONTR_TOP_16BIT_ADDR + MCONTR_TOP_16BIT_CHN_EN, {16'b0,ENABLED_CHANNELS});
96 task configure_channel_priority;
98 input [15:0] priority; // (higher is more important)
100 write_contol_register(MCONTR_ARBIT_ADDR + chn, {16'b0,priority});