Line 80... |
Line 80... |
module wbpwmaudio(i_clk,
|
module wbpwmaudio(i_clk,
|
// Wishbone interface
|
// Wishbone interface
|
i_wb_cyc, i_wb_stb, i_wb_we, i_wb_addr, i_wb_data,
|
i_wb_cyc, i_wb_stb, i_wb_we, i_wb_addr, i_wb_data,
|
o_wb_ack, o_wb_stall, o_wb_data,
|
o_wb_ack, o_wb_stall, o_wb_data,
|
o_pwm, o_int);
|
o_pwm, o_int);
|
parameter DEFAULT_RELOAD = 16'd1814, // about 44.1 kHz @ 80MHz
|
parameter DEFAULT_RELOAD = 17'd1814, // about 44.1 kHz @ 80MHz
|
//DEFAULT_RELOAD = 16'd2268,//about 44.1 kHz @ 100MHz
|
//DEFAULT_RELOAD = 17'd2268,//about 44.1 kHz @ 100MHz
|
VARIABLE_RATE=0,
|
VARIABLE_RATE=0,
|
TIMING_BITS=17;
|
TIMING_BITS=17;
|
input i_clk;
|
input i_clk;
|
input i_wb_cyc, i_wb_stb, i_wb_we;
|
input i_wb_cyc, i_wb_stb, i_wb_we;
|
input i_wb_addr;
|
input i_wb_addr;
|
Line 112... |
Line 112... |
assign w_reload_value = r_reload_value;
|
assign w_reload_value = r_reload_value;
|
end else begin
|
end else begin
|
assign w_reload_value = DEFAULT_RELOAD;
|
assign w_reload_value = DEFAULT_RELOAD;
|
end endgenerate
|
end endgenerate
|
|
|
|
reg ztimer;
|
reg [(TIMING_BITS-1):0] timer;
|
reg [(TIMING_BITS-1):0] timer;
|
initial timer = DEFAULT_RELOAD;
|
initial timer = DEFAULT_RELOAD;
|
|
initial ztimer= 1'b0;
|
always @(posedge i_clk)
|
always @(posedge i_clk)
|
if (timer == 0)
|
ztimer <= (timer == { {(TIMING_BITS-1){1'b0}}, 1'b1 });
|
|
always @(posedge i_clk)
|
|
if (ztimer)
|
timer <= w_reload_value;
|
timer <= w_reload_value;
|
else
|
else
|
timer <= timer - {{(TIMING_BITS-1){1'b0}},1'b1};
|
timer <= timer - {{(TIMING_BITS-1){1'b0}},1'b1};
|
|
|
reg [15:0] sample_out;
|
reg [15:0] sample_out;
|
always @(posedge i_clk)
|
always @(posedge i_clk)
|
if (timer == 0)
|
if (ztimer)
|
sample_out <= next_sample;
|
sample_out <= next_sample;
|
|
|
|
|
reg [15:0] next_sample;
|
reg [15:0] next_sample;
|
reg next_valid;
|
reg next_valid;
|
Line 138... |
Line 142... |
begin
|
begin
|
// Write with two's complement data, convert it
|
// Write with two's complement data, convert it
|
// internally to binary offset
|
// internally to binary offset
|
next_sample <= { ~i_wb_data[15], i_wb_data[14:0] };
|
next_sample <= { ~i_wb_data[15], i_wb_data[14:0] };
|
next_valid <= 1'b1;
|
next_valid <= 1'b1;
|
end else if (timer == 0)
|
end else if (ztimer)
|
next_valid <= 1'b0;
|
next_valid <= 1'b0;
|
|
|
initial o_int = 1'b0;
|
initial o_int = 1'b0;
|
always @(posedge i_clk)
|
always @(posedge i_clk)
|
o_int <= (~next_valid);
|
o_int <= (~next_valid);
|