《通信集成电路设计》第02章(A).ppt
《《通信集成电路设计》第02章(A).ppt》由会员分享,可在线阅读,更多相关《《通信集成电路设计》第02章(A).ppt(25页珍藏版)》请在三一办公上搜索。
1、2.3 S型时分接线器,S型时分接线器是空间型接线器(space switch),其功能是完成“空间交换”。即在一根入线中,可以选择任何一根出线与之连通。,2.3.1 S型接线器的基本组成S型接线器由mn交叉点矩阵和控制存储器组成。在每条入线i和出线j之间都有一个交叉点Kij,当某个交叉点在控制存储器控制下接通时,相应的入线即可与相应的出线相连,但必须建立在一定时隙的基础上。,2.3.2 S型接线器的工作原理根据控制存储器是控制输出线上交叉接点闭合还是控制输入线上交叉接点的闭合,可分为输出控制方式和输入控制方式两种。一、输出控制方式图2.13所示为88 S型时分接线器的组成方框图。,二、输入控
2、制方式输入控制方式的S型时分接线器,每条输入线上都配有一个控制存储器,控制该输入线与输出线的所有交叉接点。,电路设计,电路的结构图:以8入8出为例空间开关是个什么样?如何用数字电路的元素来表示?,电路的总体,data_in,clk,程序存储器,输入时钟电路,CPU接口电路,data_out,MBEB,CSB,RDB,WRB,A,D,F0,MF0,reset,8个8选1,module mux(hw0,hw1,hw2,hw3,hw4,hw5,hw6,hw7,out0,out1,out2,out3,out4,out5,out6,out7,sel0,sel1,sel2,sel3,sel4,sel5,s
3、el6,sel7);output 7:0 out0,out1,out2,out3,out4,out5,out6,out7;input 7:0 hw0,hw1,hw2,hw3,hw4,hw5,hw6,hw7;input 2:0 sel0,sel1,sel2,sel3,sel4,sel5,sel6,sel7;reg 7:0 out0,out1,out2,out3,out4,out5,out6,out7;always(hw0 or hw1 or hw2 or hw3 or hw4 or hw5 or hw6 or hw7 or sel0)begin case(sel)3b000:out1=hw0;3
4、b001:out1=hw1;3b010:out1=hw2;3b011:out1=hw3;3b100:out1=hw4;3b101:out1=hw5;3b110:out1=hw6;3b111:out1=hw7;endcase endendmodule,交换部分,module c_ram(wr_clk,wr_en,wr_addr,data_in,rd_clk,rd_en,rd_addr,data_out);input wr_clk,wr_en,rd_clk,rd_en;input 23:0 data_in;input 4:0 wr_addr,rd_addr;output 23:0 data_out
5、;reg 7:0 data_out;reg 23:0 mem 31:0;always(posedge wr_clk)if(wr_en)memwr_addr=data_in;always(posedge rd_clk)if(rd_en)data_out=memrd_addr;endmodule,控制部分,时钟电路,module mf_time(renset,clk,f0,mf0,count_ts_32,count_bit_8,count_mf_16);input renset,clk,f0,mf0;output 4:0 count_ts_32;output 2:0 count_bit_8;out
6、put 4:0 count_mf_16;wire en1,en2,en3;ts_32 ts_32(.clk(clk),.reset(reset),.en(en1),.clr(clr1),.count_ts_32(count_ts_32);bit_8 bit_8(.clk(clk),.reset(reset),.en(en2),.clr(clr2),.count_bit_8(count_bit_8);mf_16 mf_16(.clk(clk),.reset(reset),.en(en3),.clr(clr3),.count_mf_16(count_mf_16);assign en1=(count
7、_bit_8=7)?1:0;assign en2=1;assign en3=(count_ts_32=31 endmodule,电路图,clk,reset,f0,mf0,count_ts_32,count_bit_8,count_mf_16,32个时隙计数器,module ts_32(clk,reset,en,clr,count_ts_32);input reset,clk,en,clr;output 4:0 count_ts_32;reg 4:0 count_ts_32;always(posedge clk or negedge reset)begin if(!reset)count_ts_
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 通信集成电路设计 通信 集成电路设计 02
链接地址:https://www.31ppt.com/p-6529378.html