42 parameter width=
16,
// counter number of bits 43 parameter n_chn=
16 // number of channels 48 input [
n_chn-
1:
0]
want_rq,
// both want_rq and need_rq should go inactive after being granted 50 input en_schedul,
// needs to be disabled before next access can be scheduled 51 output need,
// granted access is "needed" one, not just "wanted" 52 output grant,
// single-cycle granted channel access 53 output [
3:
0]
grant_chn,
// granted channel number, valid with grant, stays valid until en_schedul is deasserted 54 input [
3:
0]
pgm_addr,
// channel address to program priority 56 input pgm_en // enable programming priority data (use different clock?) 58 reg [
width*
n_chn-
1:
0]
pri_reg;
// priorities for each channel (start values for priority counters) 61 // reg [n_chn-1:0] want_set_r,need_set_r; 68 wire [
3:
0]
index;
// channel index to select 69 wire index_valid;
// selected index valid ("needed" or "wanted") 71 reg grant_sent;
// turns on after grant, until en_schedul is de-asserted 77 // Setting priority for each channel 80 for (
i=
0;
i<
n_chn;
i=
i+
1)
begin:
pri_reg_block 81 always @ (
posedge clk)
begin 88 // priority 1-hot encoders to make sure only one want/need request is "confirmed" in each clock cycle 89 // TODO: Make pri1hot16 parameter-configurable to be able to change priorities later 90 pri1hot16 i_pri1hot16_want(
// priority encoder, 1-hot output (lowest bit has highest priority) 102 always @(
posedge clk)
begin 113 always @ (
posedge clk)
begin 114 // want_set_r<=want_set; 115 // need_set_r<=need_set; 120 // TODO: want remains, need is removed (both need and want should be deactivated on grant!) 121 // Block that sets initial process state and increments it on every change of the requests 124 for (
i1=
0;
i1<
16;
i1=
i1+
1)
begin:
sched_state_block 125 // always @ (posedge rst or posedge clk) begin 126 always @ (
posedge clk)
begin 127 // if (rst) sched_state[width*i1 +: width] <= 0; // not needed? 130 // if (want_set_r[i1] || need_set_r[i1]) sched_state[width*i1 +: width] <= pri_reg[width*i1 +: width]; 132 // increment, but do not roll over 138 // Select the process to run 147 always @(
posedge clk)
begin
6647need_setwire[n_chn-1:0]
6653next_want_confwire[n_chn-1:0]
6655need_want_conf_wwire[n_chn-1:0]
[16*width-1:0] 10556values
i_pri1hot16_need pri1hot16
6644need_want_confreg[n_chn-1:0]
6642want_confreg[n_chn-1:0]
i_index_max_16 index_max_16
6641pri_regreg[width*n_chn-1:0]
6646want_setwire[n_chn-1:0]
6651sched_statereg[width*n_chn-1:0]
6648want_need_set_rreg[n_chn-1:0]
6645need_want_conf_dreg[n_chn-1:0]
6643need_confreg[n_chn-1:0]
6654next_need_confwire[n_chn-1:0]