URL
https://opencores.org/ocsvn/z80control/z80control/trunk
Subversion Repositories z80control
[/] [z80control/] [trunk/] [CII_Starter_USB_API_v1/] [HW/] [AUDIO_DAC.v] - Rev 12
Compare with Previous | Blame | View Log
//Legal Notice: (C)2006 Altera Corporation. All rights reserved. Your //use of Altera Corporation's design tools, logic functions and other //software and tools, and its AMPP partner logic functions, and any //output files any of the foregoing (including device programming or //simulation files), and any associated documentation or information are //expressly subject to the terms and conditions of the Altera Program //License Subscription Agreement or other applicable license agreement, //including, without limitation, that your use is for the sole purpose //of programming logic devices manufactured by Altera and sold by Altera //or its authorized distributors. Please refer to the applicable //agreement for further details. module AUDIO_DAC ( // Memory Side oFLASH_ADDR,iFLASH_DATA, oSDRAM_ADDR,iSDRAM_DATA, oSRAM_ADDR,iSRAM_DATA, // Audio Side oAUD_BCK, oAUD_DATA, oAUD_LRCK, // Control Signals iSrc_Select, iCLK_18_4, iRST_N ); parameter REF_CLK = 18432000; // 18.432 MHz parameter SAMPLE_RATE = 48000; // 48 KHz parameter DATA_WIDTH = 16; // 16 Bits parameter CHANNEL_NUM = 2; // Dual Channel parameter SIN_SAMPLE_DATA = 48; parameter FLASH_DATA_NUM = 4194304; // 4 MWords parameter SDRAM_DATA_NUM = 4194304; // 4 MWords parameter SRAM_DATA_NUM = 262144; // 256 KWords parameter FLASH_ADDR_WIDTH= 22; // 22 Address Line parameter SDRAM_ADDR_WIDTH= 22; // 22 Address Line parameter SRAM_ADDR_WIDTH= 18; // 18 Address Line parameter FLASH_DATA_WIDTH= 8; // 8 Bits parameter SDRAM_DATA_WIDTH= 16; // 16 Bits parameter SRAM_DATA_WIDTH= 16; // 16 Bits //////////// Input Source Number ////////////// parameter SIN_SANPLE = 0; parameter FLASH_DATA = 1; parameter SDRAM_DATA = 2; parameter SRAM_DATA = 3; ////////////////////////////////////////////////// // Memory Side output [FLASH_ADDR_WIDTH-1:0] oFLASH_ADDR; input [FLASH_DATA_WIDTH-1:0] iFLASH_DATA; output [SDRAM_ADDR_WIDTH:0] oSDRAM_ADDR; input [SDRAM_DATA_WIDTH-1:0] iSDRAM_DATA; output [SRAM_ADDR_WIDTH:0] oSRAM_ADDR; input [SRAM_DATA_WIDTH-1:0] iSRAM_DATA; // Audio Side output oAUD_DATA; output oAUD_LRCK; output reg oAUD_BCK; // Control Signals input [1:0] iSrc_Select; input iCLK_18_4; input iRST_N; // Internal Registers and Wires reg [3:0] BCK_DIV; reg [8:0] LRCK_1X_DIV; reg [7:0] LRCK_2X_DIV; reg [6:0] LRCK_4X_DIV; reg [3:0] SEL_Cont; //////// DATA Counter //////// reg [5:0] SIN_Cont; reg [FLASH_ADDR_WIDTH-1:0] FLASH_Cont; reg [SDRAM_ADDR_WIDTH-1:0] SDRAM_Cont; reg [SRAM_ADDR_WIDTH-1:0] SRAM_Cont; //////////////////////////////////// reg [DATA_WIDTH-1:0] Sin_Out; reg [DATA_WIDTH-1:0] FLASH_Out; reg [DATA_WIDTH-1:0] SDRAM_Out; reg [DATA_WIDTH-1:0] SRAM_Out; reg [DATA_WIDTH-1:0] FLASH_Out_Tmp; reg [DATA_WIDTH-1:0] SDRAM_Out_Tmp; reg [DATA_WIDTH-1:0] SRAM_Out_Tmp; reg LRCK_1X; reg LRCK_2X; reg LRCK_4X; //////////// AUD_BCK Generator ////////////// always@(posedge iCLK_18_4 or negedge iRST_N) begin if(!iRST_N) begin BCK_DIV <= 0; oAUD_BCK <= 0; end else begin if(BCK_DIV >= REF_CLK/(SAMPLE_RATE*DATA_WIDTH*CHANNEL_NUM*2)-1 ) begin BCK_DIV <= 0; oAUD_BCK <= ~oAUD_BCK; end else BCK_DIV <= BCK_DIV+1; end end ////////////////////////////////////////////////// //////////// AUD_LRCK Generator ////////////// always@(posedge iCLK_18_4 or negedge iRST_N) begin if(!iRST_N) begin LRCK_1X_DIV <= 0; LRCK_2X_DIV <= 0; LRCK_4X_DIV <= 0; LRCK_1X <= 0; LRCK_2X <= 0; LRCK_4X <= 0; end else begin // LRCK 1X if(LRCK_1X_DIV >= REF_CLK/(SAMPLE_RATE*2)-1 ) begin LRCK_1X_DIV <= 0; LRCK_1X <= ~LRCK_1X; end else LRCK_1X_DIV <= LRCK_1X_DIV+1; // LRCK 2X if(LRCK_2X_DIV >= REF_CLK/(SAMPLE_RATE*4)-1 ) begin LRCK_2X_DIV <= 0; LRCK_2X <= ~LRCK_2X; end else LRCK_2X_DIV <= LRCK_2X_DIV+1; // LRCK 4X if(LRCK_4X_DIV >= REF_CLK/(SAMPLE_RATE*8)-1 ) begin LRCK_4X_DIV <= 0; LRCK_4X <= ~LRCK_4X; end else LRCK_4X_DIV <= LRCK_4X_DIV+1; end end assign oAUD_LRCK = LRCK_1X; ////////////////////////////////////////////////// ////////// Sin LUT ADDR Generator ////////////// always@(negedge LRCK_1X or negedge iRST_N) begin if(!iRST_N) SIN_Cont <= 0; else begin if(SIN_Cont < SIN_SAMPLE_DATA-1 ) SIN_Cont <= SIN_Cont+1; else SIN_Cont <= 0; end end ////////////////////////////////////////////////// ////////// FLASH ADDR Generator ////////////// always@(negedge LRCK_4X or negedge iRST_N) begin if(!iRST_N) FLASH_Cont <= 0; else begin if(FLASH_Cont < FLASH_DATA_NUM-1 ) FLASH_Cont <= FLASH_Cont+1; else FLASH_Cont <= 0; end end assign oFLASH_ADDR = FLASH_Cont; ////////////////////////////////////////////////// ////////// FLASH DATA Reorder ////////////// always@(posedge LRCK_4X or negedge iRST_N) begin if(!iRST_N) FLASH_Out_Tmp <= 0; else begin if(FLASH_Cont[0]) FLASH_Out_Tmp[15:8] <= iFLASH_DATA; else FLASH_Out_Tmp[7:0] <= iFLASH_DATA; end end always@(negedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) FLASH_Out <= 0; else FLASH_Out <= FLASH_Out_Tmp; end ////////////////////////////////////////////////// ////////// SDRAM ADDR Generator ////////////// always@(negedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SDRAM_Cont <= 0; else begin if(SDRAM_Cont < SDRAM_DATA_NUM-1 ) SDRAM_Cont <= SDRAM_Cont+1; else SDRAM_Cont <= 0; end end assign oSDRAM_ADDR = SDRAM_Cont; ////////////////////////////////////////////////// ////////// SDRAM DATA Latch ////////////// always@(posedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SDRAM_Out_Tmp <= 0; else SDRAM_Out_Tmp <= iSDRAM_DATA; end always@(negedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SDRAM_Out <= 0; else SDRAM_Out <= SDRAM_Out_Tmp; end ////////////////////////////////////////////////// //////////// SRAM ADDR Generator //////////// always@(negedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SRAM_Cont <= 0; else begin if(SRAM_Cont < SRAM_DATA_NUM-1 ) SRAM_Cont <= SRAM_Cont+1; else SRAM_Cont <= 0; end end assign oSRAM_ADDR = SRAM_Cont; ////////////////////////////////////////////////// ////////// SRAM DATA Latch ////////////// always@(posedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SRAM_Out_Tmp <= 0; else SRAM_Out_Tmp <= iSRAM_DATA; end always@(negedge LRCK_2X or negedge iRST_N) begin if(!iRST_N) SRAM_Out <= 0; else SRAM_Out <= SRAM_Out_Tmp; end ////////////////////////////////////////////////// ////////// 16 Bits PISO MSB First ////////////// always@(negedge oAUD_BCK or negedge iRST_N) begin if(!iRST_N) SEL_Cont <= 0; else SEL_Cont <= SEL_Cont+1; end assign oAUD_DATA = (iSrc_Select==SIN_SANPLE) ? Sin_Out[~SEL_Cont] : (iSrc_Select==FLASH_DATA) ? FLASH_Out[~SEL_Cont]: (iSrc_Select==SDRAM_DATA) ? SDRAM_Out[~SEL_Cont]: SRAM_Out[~SEL_Cont] ; ////////////////////////////////////////////////// //////////// Sin Wave ROM Table ////////////// always@(SIN_Cont) begin case(SIN_Cont) 0 : Sin_Out <= 0 ; 1 : Sin_Out <= 4276 ; 2 : Sin_Out <= 8480 ; 3 : Sin_Out <= 12539 ; 4 : Sin_Out <= 16383 ; 5 : Sin_Out <= 19947 ; 6 : Sin_Out <= 23169 ; 7 : Sin_Out <= 25995 ; 8 : Sin_Out <= 28377 ; 9 : Sin_Out <= 30272 ; 10 : Sin_Out <= 31650 ; 11 : Sin_Out <= 32486 ; 12 : Sin_Out <= 32767 ; 13 : Sin_Out <= 32486 ; 14 : Sin_Out <= 31650 ; 15 : Sin_Out <= 30272 ; 16 : Sin_Out <= 28377 ; 17 : Sin_Out <= 25995 ; 18 : Sin_Out <= 23169 ; 19 : Sin_Out <= 19947 ; 20 : Sin_Out <= 16383 ; 21 : Sin_Out <= 12539 ; 22 : Sin_Out <= 8480 ; 23 : Sin_Out <= 4276 ; 24 : Sin_Out <= 0 ; 25 : Sin_Out <= 61259 ; 26 : Sin_Out <= 57056 ; 27 : Sin_Out <= 52997 ; 28 : Sin_Out <= 49153 ; 29 : Sin_Out <= 45589 ; 30 : Sin_Out <= 42366 ; 31 : Sin_Out <= 39540 ; 32 : Sin_Out <= 37159 ; 33 : Sin_Out <= 35263 ; 34 : Sin_Out <= 33885 ; 35 : Sin_Out <= 33049 ; 36 : Sin_Out <= 32768 ; 37 : Sin_Out <= 33049 ; 38 : Sin_Out <= 33885 ; 39 : Sin_Out <= 35263 ; 40 : Sin_Out <= 37159 ; 41 : Sin_Out <= 39540 ; 42 : Sin_Out <= 42366 ; 43 : Sin_Out <= 45589 ; 44 : Sin_Out <= 49152 ; 45 : Sin_Out <= 52997 ; 46 : Sin_Out <= 57056 ; 47 : Sin_Out <= 61259 ; default : Sin_Out <= 0 ; endcase end ////////////////////////////////////////////////// endmodule