| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| // |
| // adc_ctrl module |
| |
| `include "prim_assert.sv" |
| |
| module adc_ctrl ( |
| input clk_i, //regular core clock for SW config interface |
| input clk_aon_i, //always-on slow clock for internal logic |
| input rst_ni, //power-on hardware reset |
| input rst_slow_ni, //power-on reset for the 200KHz clock(logic) |
| |
| //Regster interface |
| input tlul_pkg::tl_h2d_t tl_i, |
| output tlul_pkg::tl_d2h_t tl_o, |
| |
| output ast_pkg::adc_ast_req_t adc_o, |
| input ast_pkg::adc_ast_rsp_t adc_i, |
| |
| //Inter-module IO |
| //AST interface |
| //input [9:0] adc_d, |
| //ADC voltage level, each step is 2.148mV(2200mV/1024). It covers 0-2.2V |
| //input adc_d_val,//Valid bit(pulse) for adc_d |
| //output logic adc_pd,//Power down ADC(used in deep sleep mode to save power) |
| //output logic [1:0] adc_chnsel, |
| //channel select for ADC; |
| //2'b0 means stop, 2'b01 means first channel, 2'b10 means second channel, 2'b11 ilegal |
| |
| //interrupt interface |
| output logic intr_debug_cable_o, |
| // Debug cable is detected(attached or disconnected); raise the interrupt to CPU |
| |
| //pwrmgr interface |
| output logic debug_cable_wakeup_o |
| //Debug cable is detected; wake up the GSC(CPU) in normal sleep and deep sleep mode |
| //input [2:0] pwr_sts,//3'b001: deep sleep, 3'b010: normal sleep, 3'b100: fully active |
| ); |
| |
| import adc_ctrl_reg_pkg::*; |
| |
| adc_ctrl_reg2hw_t reg2hw; |
| adc_ctrl_hw2reg_t hw2reg; |
| |
| |
| // TODO: hookup integrity error output |
| // Register module |
| adc_ctrl_reg_top u_reg ( |
| .clk_i(clk_i), |
| .rst_ni(rst_ni), |
| .tl_i(tl_i), |
| .tl_o(tl_o), |
| .reg2hw(reg2hw), |
| .hw2reg(hw2reg), |
| .intg_err_o(), |
| .devmode_i(1'b1) |
| ); |
| |
| // Instantiate DCD core module |
| adc_ctrl_core i_adc_ctrl_core ( |
| .clk_aon_i(clk_aon_i), |
| .rst_slow_ni(rst_slow_ni), |
| .clk_i(clk_i), |
| .rst_ni(rst_ni), |
| .adc_en_ctl_i(reg2hw.adc_en_ctl), |
| .adc_pd_ctl_i(reg2hw.adc_pd_ctl), |
| .adc_lp_sample_ctl_i(reg2hw.adc_lp_sample_ctl), |
| .adc_sample_ctl_i(reg2hw.adc_sample_ctl), |
| .adc_fsm_rst_i(reg2hw.adc_fsm_rst), |
| .adc_chn0_filter_ctl_i(reg2hw.adc_chn0_filter_ctl), |
| .adc_chn1_filter_ctl_i(reg2hw.adc_chn1_filter_ctl), |
| .adc_wakeup_ctl_i(reg2hw.adc_wakeup_ctl), |
| .adc_intr_ctl_i(reg2hw.adc_intr_ctl), |
| .adc_chn_val_o(hw2reg.adc_chn_val), |
| .intr_state_i(reg2hw.intr_state), |
| .intr_enable_i(reg2hw.intr_enable), |
| .intr_test_i(reg2hw.intr_test), |
| .intr_state_o(hw2reg.intr_state), |
| .adc_intr_status_o(hw2reg.adc_intr_status), |
| .adc_wakeup_status_o(hw2reg.adc_wakeup_status), |
| .debug_cable_wakeup_o(debug_cable_wakeup_o), |
| .intr_debug_cable_o(intr_debug_cable_o), |
| .adc_i(adc_i), |
| .adc_o(adc_o) |
| ); |
| |
| // All outputs should be known value after reset |
| `ASSERT_KNOWN(IntrDebugCableKnown, intr_debug_cable_o) |
| `ASSERT_KNOWN(WakeDebugCableKnown, debug_cable_wakeup_o) |
| `ASSERT_KNOWN(TlODValidKnown, tl_o.d_valid) |
| `ASSERT_KNOWN(TlOAReadyKnown, tl_o.a_ready) |
| `ASSERT_KNOWN(ADCPDKnown, adc_o.pd) |
| `ASSERT_KNOWN(ADCChnSelKnown, adc_o.channel_sel) |
| |
| endmodule |