📄 audio.v
字号:
// Copyright 2006, 2007 Dennis van Weeren//// This file is part of Minimig//// Minimig is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 3 of the License, or// (at your option) any later version.//// Minimig is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program. If not, see <http://www.gnu.org/licenses/>.//////// This is the audio part of Paula//// 27-12-2005 -started coding// 28-12-2005 -done lots of work// 29-12-2005 -done lots of work// 01-01-2006 -we are having OK sound in dma mode now// 02-01-2006 -fixed last state// 03-01-2006 -added dmas to avoid interference with copper cycles// 04-01-2006 -experimented with DAC// 06-01-2006 -experimented some more with DAC and decided to leave it as it is for now// 07-01-2006 -cleaned up code// 21-02-2006 -improved audio state machine// 22-02-2006 -fixed dma interrupt timing, Turrican-3 theme now plays correct!module audio(clk,reset,horbeam,regaddress,datain,dmacon,audint,audpen,dmal,dmas,left,right);input clk; //bus clockinput reset; //reset input [8:0]horbeam; //horizontal beamcounterinput [8:1]regaddress; //register address inputinput [15:0]datain; //bus data ininput [3:0]dmacon; //audio dma register inputoutput [3:0]audint; //audio interrupt requestinput [3:0]audpen; //audio interrupt pendingoutput dmal; //dma request output dmas; //dma special output left; //audio bitstream out leftoutput right; //audio bitstream out right//register names and addressesparameter AUD0BASE=9'h0a0;parameter AUD1BASE=9'h0b0;parameter AUD2BASE=9'h0c0;parameter AUD3BASE=9'h0d0;//local signals reg dmal; //see above reg dmas; //see abovereg tick; //audio clock enablewire [3:0]aen; //address enable 0-3wire [3:0]dmareq; //dma request 0-3wire [3:0]dmaspc; //dma restart 0-3wire [7:0]sample0; //channel 0 audio sample wire [7:0]sample1; //channel 1 audio sample wire [7:0]sample2; //channel 2 audio sample wire [7:0]sample3; //channel 3 audio sample wire [6:0]vol0; //channel 0 volume wire [6:0]vol1; //channel 1 volume wire [6:0]vol2; //channel 2 volume wire [6:0]vol3; //channel 3 volume //--------------------------------------------------------------------------------------//address decoderassign aen[0]=(regaddress[8:4]==AUD0BASE[8:4])?1:0;assign aen[1]=(regaddress[8:4]==AUD1BASE[8:4])?1:0;assign aen[2]=(regaddress[8:4]==AUD2BASE[8:4])?1:0;assign aen[3]=(regaddress[8:4]==AUD3BASE[8:4])?1:0;//--------------------------------------------------------------------------------------//generate audio clock enablealways @(posedge clk) if(reset) tick<=0; else tick<=~tick;//--------------------------------------------------------------------------------------//dma request logic//slot 0x000010011 (channel #0)//slot 0x000010111 (channel #1)//slot 0x000011011 (channel #2)//slot 0x000011111 (channel #3)always @(horbeam or dmareq or dmaspc)begin if((horbeam[8:4]==5'b00001) && (horbeam[1:0]==2'b11)) begin case(horbeam[3:2]) 2'b00: dmal=dmareq[0]; 2'b01: dmal=dmareq[1]; 2'b10: dmal=dmareq[2]; 2'b11: dmal=dmareq[3]; endcase case(horbeam[3:2]) 2'b00: dmas=dmaspc[0]; 2'b01: dmas=dmaspc[1]; 2'b10: dmas=dmaspc[2]; 2'b11: dmas=dmaspc[3]; endcase end else begin dmal=0; dmas=0; endend//--------------------------------------------------------------------------------------//instantiate audio channel 0audiochannel ach0 ( .clk(clk), .reset(reset), .tick(tick), .aen(aen[0]), .den(dmacon[0]), .regaddress(regaddress[3:1]), .data(datain), .volume(vol0), .sample(sample0), .intreq(audint[0]), .intpen(audpen[0]), .dmareq(dmareq[0]), .dmas(dmaspc[0]) );//instantiate audio channel 1audiochannel ach1 ( .clk(clk), .reset(reset), .tick(tick), .aen(aen[1]), .den(dmacon[1]), .regaddress(regaddress[3:1]), .data(datain), .volume(vol1), .sample(sample1), .intreq(audint[1]), .intpen(audpen[1]), .dmareq(dmareq[1]), .dmas(dmaspc[1]) );//instantiate audio channel 2audiochannel ach2 ( .clk(clk), .reset(reset), .tick(tick), .aen(aen[2]), .den(dmacon[2]), .regaddress(regaddress[3:1]), .data(datain), .volume(vol2), .sample(sample2), .intreq(audint[2]), .intpen(audpen[2]), .dmareq(dmareq[2]), .dmas(dmaspc[2]) );//instantiate audio channel 3audiochannel ach3 ( .clk(clk), .reset(reset), .tick(tick), .aen(aen[3]), .den(dmacon[3]), .regaddress(regaddress[3:1]), .data(datain), .volume(vol3), .sample(sample3), .intreq(audint[3]), .intpen(audpen[3]), .dmareq(dmareq[3]), .dmas(dmaspc[3]) );//instantiate volume control and sigma/delta modulatorsigmadelta dac0 ( .clk(clk), .sample0(sample0), .sample1(sample1), .sample2(sample2), .sample3(sample3), .vol0(vol0), .vol1(vol1), .vol2(vol2), .vol3(vol3), .left(left), .right(right) );//--------------------------------------------------------------------------------------endmodule//--------------------------------------------------------------------------------------//--------------------------------------------------------------------------------------//--------------------------------------------------------------------------------------// audio data processing// stereo volume control// stereo sigma/delta bitstream modulator// channel 1&2 --> left// channel 0&3 --> rightmodule sigmadelta(clk,sample0,sample1,sample2,sample3,vol0,vol1,vol2,vol3,left,right);input clk; //bus clockinput [7:0]sample0; //sample 0 inputinput [7:0]sample1; //sample 1 inputinput [7:0]sample2; //sample 2 inputinput [7:0]sample3; //sample 3 inputinput [6:0]vol0; //volume 0 inputinput [6:0]vol1; //volume 1 inputinput [6:0]vol2; //volume 2 inputinput [6:0]vol3; //volume 3 inputoutput left; //left bitstream outputoutput right; //right bitsteam output//local signalsreg [14:0]acculeft; //sigma/delta accumulator left reg [14:0]accuright; //sigma/delta accumulator rightwire [7:0]leftsmux; //left mux samplewire [7:0]rightsmux; //right mux samplewire [6:0]leftvmux; //left mux volumwire [6:0]rightvmux; //right mux volumewire [13:0]ldata; //left DAC datawire [13:0]rdata; //right DAC datareg mxc; //multiplex control//--------------------------------------------------------------------------------------//multiplexer controlalways @(posedge clk) mxc<=~mxc;//sample multiplexerassign leftsmux=(mxc)?sample1:sample2;assign rightsmux=(mxc)?sample0:sample3;//volume multiplexerassign leftvmux=(mxc)?vol1:vol2;assign rightvmux=(mxc)?vol0:vol3;//left volume control//when volume MSB is set, volume is always maximumsvmul sv0( .sample(leftsmux), .volume({ (leftvmux[6]|leftvmux[5]), (leftvmux[6]|leftvmux[4]), (leftvmux[6]|leftvmux[3]), (leftvmux[6]|leftvmux[2]), (leftvmux[6]|leftvmux[1]), (leftvmux[6]|leftvmux[0])}), .out(ldata) );//right volume control//when volume MSB is set, volume is always maximumsvmul sv1( .sample(rightsmux), .volume({ (rightvmux[6]|rightvmux[5]), (rightvmux[6]|rightvmux[4]), (rightvmux[6]|rightvmux[3]), (rightvmux[6]|rightvmux[2]), (rightvmux[6]|rightvmux[1]), (rightvmux[6]|rightvmux[0])}), .out(rdata) );//--------------------------------------------------------------------------------------//left sigma/delta modulatoralways @(posedge clk) acculeft[14:0]<={1'b0,acculeft[13:0]}+{1'b0,~ldata[13],ldata[12:0]};assign left=acculeft[14];//right sigma/delta modulatoralways @(posedge clk) accuright[14:0]<={1'b0,accuright[13:0]}+{1'b0,~rdata[13],rdata[12:0]};assign right=accuright[14];endmodule//--------------------------------------------------------------------------------------//--------------------------------------------------------------------------------------//--------------------------------------------------------------------------------------//this module multiplies a signed 8 bit sample with an unsigned 6 bit volume setting//it produces a 14bit signed resultmodule svmul(sample,volume,out);input [7:0]sample; //signed sample inputinput [5:0]volume; //unsigned volume inputoutput [13:0]out; //signed product outwire [13:0]sesample; //sign extended samplewire [13:0]sevolume; //sign extended volume//sign extend input parametersassign sesample[13:0]={sample[7],sample[7],sample[7],sample[7],sample[7],sample[7],sample[7:0]};assign sevolume[13:0]={8'b00000000,volume[5:0]};//multiply, synthesizer should infer multiplier hereassign out[13:0]=sesample[13:0]*sevolume[13:0];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -