亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? state_machine.v

?? 基于pci的verolog hdl 狀態機描述
?? V
字號:
module state_machine (devsel_l, trdy_l, stop_l, pci_ad_oe, 
    dts_oe, par_oe, bk_oe, pci_ad_en, hit_ba0_l, hit_ba1_l, 
    pci_frame_l, pci_idsel, pci_irdy_l, pci_ad, pci_cbe_l, 
    pci_clk, pci_rst_l, abort_sig, data_stop_l, com, 
    data_write_l, ready_l, bkend_abort_l, count_rst_l, count_en_l, 
    retry_l, base_region0_l, base_region1_l, r_w_l, data_read_l,
    be_oe);
 
  output devsel_l; 
  output trdy_l; 
  output stop_l; 
  output pci_ad_oe;     // OE for PCI address bus
  output dts_oe;        // OE control for the devsel, trdy_l, stop_l (dts)
  output par_oe;        // OE control for pci_par
  output bk_oe;         // OE control for bkend_dat bus
  output pci_ad_en;     // clock enable for the PCI address latch register
  output abort_sig;     // sets the status register bit for abort
  output data_write_l;  // used as a clock enable for the pci_clk
                        // to the bkend device
  output count_rst_l;   // async reset to the retry counter
  output count_en_l;    // the clock enable for the retry counter
  output base_region0_l; // chip selects to the backend 
  output base_region1_l; // chip selects to the backend
  output r_w_l;          // read == 1 & write == 0
  output data_read_l;    // the read strobe for the backend device
  output be_oe;          // enables the byte enables for the backend
  input hit_ba0_l;       // The pci address is in base address 0
  input hit_ba1_l;       // The pci address is in base address 1
  input pci_frame_l;     // The pci_frame_l signal
  input pci_idsel;      // The pci idsel signal
  input pci_irdy_l;     // The pci irdy signal
  input [31:0] pci_ad;  // raw pci address data bus
  input [3:0] pci_cbe_l; // The command or byte enables 
  input pci_clk;
  input pci_rst_l;
  input bkend_abort_l;  // bkend has had a fatal error
  input data_stop_l;    // bkend requesting transaction to stop
  input [1:0] com;
  input ready_l;        // bkend is ready to start a transaction cycle
  input retry_l;        // when active retry counter has timed out 

  
  reg devsel_l; 
  reg trdy_l, stop_l, pci_ad_oe; 
  reg dts_oe, par_oe, bk_oe; 
  reg pci_ad_en;
  reg be_oe;
  reg abort_sig;
  reg count_rst_l, count_en_l;
  reg base_region0_l, base_region1_l;
  reg r_w_l;
  reg read_flag, single_read_flag;
 
  
  reg [11:0] cstate;
 
 
  parameter [11:0] 

     idle =         12'b0000_0000_0001,
     con_wait =     12'b0000_0000_0010,
     con_wait2 =    12'b0000_0000_0100,
     con =          12'b0000_0000_1000,
     read_wait =    12'b0000_0001_0000,
     rw =           12'b0000_0010_0000,
     rw_wait =      12'b0000_0100_0000,
     rw_wait2 =     12'b0000_1000_0000,
     last_rw =      12'b0001_0000_0000,
     backoff =      12'b0010_0000_0000,
     retry =        12'b0100_0000_0000,
     abort =        12'b1000_0000_0000;


 
 `define config_read (pci_cbe_l == 4'b1010)
 `define config_write (pci_cbe_l == 4'b1011)
 `define func_zero_type_zero (pci_ad[10:8] == 3'b000) && (pci_ad[1:0] == 2'b00)

 `define write_ba0 pci_addr[7:2] == 6'h10
 `define write_ba1 pci_addr[7:2] == 6'h14
 
 `define no_config (!pci_idsel && !pci_frame_l)
 `define io_read ((pci_cbe_l == 4'b0010)  && com[0]) 
 `define io_write ((pci_cbe_l == 4'b0011) && com[0])
 `define mem_read ((pci_cbe_l == 4'b0110) && com[1])
 `define mem_write ((pci_cbe_l == 4'b0111) && com[1])

 
 // mealy state machine 
 always @ (posedge pci_clk or negedge pci_rst_l)
   begin 
     if (!pci_rst_l) begin 
	 cstate <= #1 idle;
	 devsel_l <= #1 1; 
         trdy_l <= #1 1; 
	 stop_l <= #1 1;
	 pci_ad_oe <= #13 0; 
         dts_oe <= #13 0; 
	 par_oe <= #13 0; 
	 bk_oe <= #13 0; 
         abort_sig <= #1 0;
	 count_rst_l <= #1 1;
	 count_en_l <= #1 1;
	 base_region0_l <= #1 1;
	 base_region1_l <= #1 1;
	 r_w_l <= #1 1; 
	 read_flag <= #1 0;
	 single_read_flag <= #1 0;
        end 
        else begin 
	 case (cstate) 
	   idle:
 	      begin 
	      	if ((`config_read || `config_write) && `func_zero_type_zero
		&& !pci_frame_l && pci_idsel) begin 
	      	  cstate <= #1 con_wait;
		  dts_oe <= #13 1;
	          if (`config_read) begin 
		    pci_ad_oe <= #13 1; 
		  end
		  else begin 
		    pci_ad_oe <= #13 0; 
		  end
		  par_oe <= #13 0;
		  devsel_l <= #1 1;
		  trdy_l <= #1 1; 
		  stop_l <= #1 1; 
		  count_rst_l <= #1 1;
	          count_en_l <= #1 1;
		  abort_sig <= #1 0;
		  base_region0_l <= #1 1;
	          base_region1_l <= #1 1;
	          r_w_l <= #1 1;
		end

		else if ((`io_read || `mem_read) && `no_config ) begin 
		  cstate <= #1 rw_wait;
		  read_flag <= #1 1; 
		  dts_oe <= #13 1; 
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1;
		  stop_l <= #1 1; 
		  count_rst_l <= #1 0; 
	          count_en_l <= #1 1;
		  abort_sig <= #1 0; 
		  base_region0_l <= #1 1;
	          base_region1_l <= #1 1;
	          r_w_l <= #1 1;
		end
		else if ((`io_write || `mem_write) && `no_config )begin 
		  cstate <= #1 rw_wait;
		  read_flag <= #1 0; 
		  dts_oe <= #13 1; 
		  devsel_l <= #1 1;
		  trdy_l <= #1 1; 
		  stop_l <= #1 1; 
		  count_rst_l <= #1 0;
	          count_en_l <= #1 1;
		  abort_sig <= #1 0; 
		  base_region0_l <= #1 1;
	          base_region1_l <= #1 1;
	          r_w_l <= #1 1; 
		end
		else begin 
		  cstate <= #1 idle;
	          devsel_l <= #1 1; 
                  trdy_l <= #1 1; 
	          stop_l <= #1 1;
	          pci_ad_oe <= #13 0; 
                  dts_oe <= #13 0; 
	          par_oe <= #13 0; 
	          bk_oe <= #13 0; 
                  abort_sig <= #1 0;
	          count_rst_l <= #1 1;
	          count_en_l <= #1 1;
		  abort_sig <= #1 0; 
		  base_region0_l <= #1 1;
	          base_region1_l <= #1 1;
	          r_w_l <= #1 1;
		end	      
	      end
	      
        con_wait: 
	      begin 
	         cstate <= con_wait2;
                 devsel_l <= #1 0;
	      end

	 con_wait2: 
	      begin 
		cstate <= con;
		par_oe <= #13 1; 
 		trdy_l <= #1 0; 
                if (!pci_frame_l)  
		  stop_l <= #1 0; 
		                 
		else
		  stop_l <= #1 1; 
	      end

	 con:
	      begin 
		if (!pci_irdy_l) begin 
		 
		  cstate <= backoff;
		  devsel_l <= #1 1;
		  trdy_l <= #1 1;
		  stop_l <= #1 1;
		  pci_ad_oe <= #13 0;
		end
		else begin 
		 
		  cstate <= con;
		  devsel_l <= #1 0;
		  trdy_l <= #1 0;
		  if (!pci_frame_l)  
		    stop_l <= #1 0; 
		                   
		  else
 		    stop_l <= #1 1; 
		end
	      end


   	  rw_wait:
    	     begin 
	
	       if (pci_frame_l && read_flag) begin 
		     single_read_flag <= #1 1;
	           end
	           else begin 
		     single_read_flag <= #1 0; 
	           end

	       if (!hit_ba0_l) begin 
	           cstate <= #1 rw_wait2;
	           count_rst_l <= #1 1;
		   count_en_l <= #1 0; 
		   base_region0_l <= #1 0;
		   base_region1_l <= #1 1;
		   dts_oe <= #13 1; 
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 1;
		   if (read_flag) begin 
		     bk_oe <= #13 0;
		     r_w_l <= #1 1;
		     end
		   else begin 
		     bk_oe <= #13 1; 
		     r_w_l <= #1 0;
		   end 
		end
		else if (!hit_ba1_l) begin 
		   cstate <= #1 rw_wait2;
	           count_rst_l <= #1 1;
		   count_en_l <= #1 0;
		   base_region0_l <= #1 1; 
		   base_region1_l <= #1 0;
		   dts_oe <= #13 1; 
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 1; 
		   if (read_flag) begin 
		     bk_oe <= #13 0; 
		     r_w_l <= #1 1;
		     end
		   else begin 
		     bk_oe <= #13 1; 
		     r_w_l <= #1 0;
		   end 
		end
		else begin 
		   cstate <= #1 idle;
		   bk_oe <= #13 0;  
	           count_rst_l <= #1 1; 
		   count_en_l <= #1 1;
		   r_w_l <= #1 1;
		   base_region0_l <= #1 1;
		   base_region1_l <= #1 1; 
		   dts_oe <= #13 0; 
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1;
		   stop_l <= #1 1;
		end
	     end
	
	     
          rw_wait2: // don't monitor abort here
	      begin 
	
		if (read_flag) begin 
	          pci_ad_oe <= #13 1;
		  par_oe <= #13 1;
		  end
		else begin 
                  pci_ad_oe <= #13 0; 
		end
	
		if (!retry_l) begin 
		  // retry timeout
		  cstate <= #1 retry;
		  devsel_l <= #1 0; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 0; 
		end
		else if (retry_l && !ready_l && !pci_frame_l && data_stop_l) begin 
		  // normal burst write or read with no timeout or stop
		  devsel_l <= #1 0; 
		  stop_l <= #1 1; 
                  if (read_flag) begin 
		    cstate <= read_wait;
		    trdy_l <= #1 1;
		  end
		  else begin 
		    cstate <= rw;
		    trdy_l <= #1 0;
		  end
		end
		else if (retry_l && !ready_l && pci_frame_l) begin 
		  // single read or write with no timeout & stop is don't care
		  devsel_l <= #1 0; 
		  stop_l <= #1 1;
 		  if (read_flag) begin 
		    cstate <= read_wait;
		    trdy_l <= #1 1;
		  end
		  else begin 
		    cstate <= last_rw;
		    trdy_l <= #1 0;
		  end
		end
		else if (retry_l && !ready_l && !data_stop_l) begin 
		  // single read or write & backend only wants one cycle
		  if (read_flag ) begin 
		    cstate <= read_wait;
		    devsel_l <= #1 0; 
	            trdy_l <= #1 1;
		    stop_l <= #1 1;
		  end
		  else begin 
		    cstate <= last_rw; 
		    devsel_l <= #1 0; 
		    trdy_l <= #1 0; 
		    stop_l <= #1 0; 
		  end
		end
		else if (retry_l && ready_l) begin 
		  // enable retry counter
		  cstate <= #1 rw_wait2;
		  count_en_l <= #1 0;
		  devsel_l <= #1 0; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 1; 
		end
		else if (!bkend_abort_l) begin 
		  cstate <= #1 abort;
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 0;
 		  abort_sig <= #1 1;
		end
		else begin 
		  cstate <= rw_wait2;
		end
	      
	      end

          read_wait: 
 	   //This state is used to READ the first piece of data
	      begin   
	         if ( !bkend_abort_l) begin 
		   cstate <= #1 abort;
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 0;
		   bk_oe <= #13 0;
		   base_region0_l <= #1 1; 
		   base_region1_l <= #1 1; 
		   abort_sig <= #1 1;
		 end
		 else if (!pci_frame_l && bkend_abort_l && data_stop_l) begin 
		   cstate <= #1 rw; 
		   devsel_l <= #1 0; 
		   trdy_l <= #1 0; 
		   stop_l <= #1 1; 
		 end
	         else if (pci_frame_l && bkend_abort_l && data_stop_l) begin 
		   cstate <= #1 last_rw; 
		   devsel_l <= #1 0; 
		   trdy_l <= #1 0; 
		   stop_l <= #1 1;
		 end
		 
		 else if (!data_stop_l) begin 
		   cstate <= last_rw;
		   devsel_l <= #1 0; 
		   trdy_l <= #1 0; 
		   stop_l <= #1 0;
		   bk_oe <= #13 0;
		 end
		 else  begin 
		   cstate <= idle;
		 end
		   	     
	      end
	
	  rw:
	      begin 
	        if ( !bkend_abort_l) begin 
		   cstate <= #1 abort;
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 0;
 		   bk_oe <= #13 0;  
		   base_region0_l <= #1 1; 
		   base_region1_l <= #1 1; 
		   abort_sig <= #1 1;
		 end
		 else if (!pci_frame_l && bkend_abort_l && data_stop_l) begin 
		   cstate <= #1 rw;
		   devsel_l <= #1 0; 
		   trdy_l <= #1 0; 
		   stop_l <= #1 1; 
		 end
		 else if (pci_frame_l && bkend_abort_l && data_stop_l) begin 
		   cstate <= #1 backoff;
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 1;
		   pci_ad_oe <= #13 0;
 		   bk_oe <= #13 0;  
		   base_region0_l <= #1 1; 
		   base_region1_l <= #1 1; 
		 end
		 else if (pci_frame_l && !data_stop_l) begin 
		   cstate <= backoff;
		   devsel_l <= #1 1; 
		   trdy_l <= #1 1; 
		   stop_l <= #1 1;
		   bk_oe <= #13 0;  
                   base_region0_l <= #1 1; 
		   base_region1_l <= #1 1; 
		 end
		 else if (!data_stop_l) begin 
		   cstate <= last_rw; 
		   devsel_l <= #1 0; 
		   trdy_l <= #1 0; 
		   stop_l <= #1 0;
		 end
		 else  begin 
		   cstate <= idle;
		 end
		   	     
	      end
	  last_rw:
  	      begin 
		if (pci_frame_l) begin 
		  // pci_frame_l end gracefully
		  cstate <= backoff;
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 1;
                  bk_oe <= #13 0;  
		  pci_ad_oe <= #13 0;
                  base_region0_l <= #1 1; 
		  base_region1_l <= #1 1; 
		end
		else if (!pci_frame_l) begin 
		  cstate <= last_rw; 
		  devsel_l <= #1 0; 
 		  trdy_l <= #1 1;
		  stop_l <= #1 0;
		end
		else begin 
                  cstate <= idle;
		end	     
	      end
	 retry:
   	      begin
	        if (!pci_frame_l) begin 
		  cstate <= retry;
		  dts_oe <= #13 1; 
		  devsel_l <= #1 0; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 0;
 		  bk_oe <= #13 0;  
                  base_region0_l <= #1 1; 
		  base_region1_l <= #1 1;   
		end
		else if (pci_frame_l) begin 
		  cstate <= backoff;
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 1;
                  bk_oe <= #13 0; 
 		  pci_ad_oe <= #13 0;
		  base_region0_l <= #1 1; 
		  base_region1_l <= #1 1;  
		end
	      end	
         abort:
	      begin 
		if (!pci_frame_l) begin 
		  cstate <= abort;
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 0;
		  abort_sig <= #1 0;
		end
		else if (pci_frame_l) begin 
		  cstate <= backoff;
		  devsel_l <= #1 1; 
		  trdy_l <= #1 1; 
		  stop_l <= #1 1;
		  bk_oe <= #13 0;
		  pci_ad_oe <= #13 0;
		  abort_sig <= #1 0; 
		end
	      end
	 backoff:
   	      begin 
		cstate <= idle;
		pci_ad_oe <= #13 0; 
		dts_oe <= #13 0; 
		par_oe <= #13 0; 
		bk_oe <=#13 0; 
	      end

	 default:
	      begin 
		cstate <= #1 idle;
	        devsel_l <= #1 1; 
                trdy_l <= #1 1; 
	        stop_l <= #1 1;
	        pci_ad_oe <= #13 0; 
                dts_oe <= #13 0; 
	        par_oe <= #13 0; 
	        bk_oe <= #13 0; 
                abort_sig <= #1 0;
	      end
	 endcase
       end
   
   end
 
always @ (cstate)
  begin 
    if (cstate == idle || cstate == backoff) begin 
        be_oe <= #1 0;
      end
      else begin 
	be_oe <= #1 1;
      end
  
  end


always @ (pci_frame_l or cstate)
  begin 
    if (cstate == idle && !pci_frame_l) begin 
        pci_ad_en <= #1 1;
      end
      else begin 
	pci_ad_en <= #1 0;
      end
  
  end


assign #1 data_write_l = (!trdy_l && !pci_irdy_l && !read_flag && !ready_l) ? 0 : 1;


assign #1 data_read_l = ( (single_read_flag && (cstate == rw_wait2) && !ready_l ) || (!single_read_flag && read_flag && !pci_frame_l && !pci_irdy_l && !ready_l && (cstate == rw_wait2 || cstate == rw || cstate == last_rw || cstate == abort)) ) ? 0 : 1;       
 
endmodule  

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕av一区二区三区| av亚洲精华国产精华精华| 亚洲国产精品久久不卡毛片 | 狠狠网亚洲精品| 综合亚洲深深色噜噜狠狠网站| 99视频一区二区| 久久99最新地址| 有坂深雪av一区二区精品| 日韩欧美国产综合| 色噜噜狠狠成人中文综合| 九九在线精品视频| 日韩专区一卡二卡| 五月天精品一区二区三区| 亚洲码国产岛国毛片在线| 国产喷白浆一区二区三区| 欧美精品久久99久久在免费线| 高清在线成人网| 国产在线一区观看| 国产精品资源在线| 国产一区视频网站| 日本va欧美va欧美va精品| 亚洲国产另类av| 久久国内精品视频| 狠狠色狠狠色合久久伊人| 经典三级在线一区| 日韩激情一二三区| 亚洲人成网站精品片在线观看| 在线亚洲人成电影网站色www| 国产精品77777| 成人午夜大片免费观看| 日韩一区二区三| 日韩免费观看2025年上映的电影 | 国产日韩欧美电影| 亚洲欧洲av另类| 亚洲韩国精品一区| 久草精品在线观看| 91亚洲精品乱码久久久久久蜜桃| 欧美色偷偷大香| 国产精品久久毛片av大全日韩| 精品处破学生在线二十三| 中文字幕欧美激情一区| 亚洲精品福利视频网站| 亚洲精品日韩综合观看成人91| 91精品一区二区三区久久久久久| 欧美一区二区三区思思人| 精品欧美一区二区在线观看| 精品国产免费人成电影在线观看四季| 亚洲一区二区美女| 欧美亚洲一区二区三区四区| 亚洲猫色日本管| 欧美吞精做爰啪啪高潮| 丝袜脚交一区二区| 精品国产乱码久久久久久闺蜜| 黄页视频在线91| 26uuu亚洲| 国产三级精品视频| 色综合中文综合网| 8v天堂国产在线一区二区| 亚洲国产三级在线| 在线综合视频播放| 久久99精品久久久久婷婷| 26uuu色噜噜精品一区二区| 成人综合在线观看| 一区二区三区日韩精品视频| 7777精品伊人久久久大香线蕉完整版 | 欧美高清在线视频| 91欧美一区二区| 日韩精品91亚洲二区在线观看| 日韩欧美在线一区二区三区| 国产经典欧美精品| 亚洲男帅同性gay1069| 欧美福利视频导航| 成人免费高清在线| 天堂在线亚洲视频| 国产精品乱码人人做人人爱 | 国产亚洲欧美日韩俺去了| www.日韩在线| 另类小说一区二区三区| 中文字幕制服丝袜成人av| 欧美一区二区三区啪啪| 国产乱码精品一区二区三区五月婷| 欧美日韩精品福利| 亚洲自拍偷拍九九九| 色综合中文字幕| 亚洲品质自拍视频| 欧美又粗又大又爽| 麻豆精品久久精品色综合| 国产精品亚洲成人| 91麻豆免费看| 国产精品免费aⅴ片在线观看| 国内成人免费视频| 欧美成人精品二区三区99精品| 亚洲成a人片在线不卡一二三区 | 欧美性受xxxx黑人xyx| 日韩一区欧美一区| 波多野结衣在线一区| 国产亚洲va综合人人澡精品| 久久99精品久久久久| 制服.丝袜.亚洲.另类.中文| 亚洲成人av在线电影| 欧美性极品少妇| 亚洲永久免费视频| 欧洲激情一区二区| 亚洲一区二区五区| 欧美日韩一区小说| 手机精品视频在线观看| 欧美日韩大陆一区二区| 天堂蜜桃91精品| 欧美一区二区三区成人| 久久国产欧美日韩精品| 精品国产一区二区精华| 国产剧情一区在线| 欧美国产日韩a欧美在线观看| 大白屁股一区二区视频| 国产精品伦理在线| 一本久久a久久免费精品不卡| 怡红院av一区二区三区| 欧美视频日韩视频| 免费国产亚洲视频| 久久婷婷久久一区二区三区| 国产精品888| 亚洲欧美偷拍另类a∨色屁股| 欧美婷婷六月丁香综合色| 视频精品一区二区| 精品国产免费一区二区三区四区 | 国产在线精品国自产拍免费| 国产日韩精品久久久| 成人app网站| 亚洲国产日韩a在线播放| 制服丝袜成人动漫| 国产成人综合精品三级| 亚洲欧美色综合| 911精品产国品一二三产区| 国内精品伊人久久久久av影院 | 亚洲电影第三页| 欧美变态凌虐bdsm| 成人h版在线观看| 亚洲国产一区二区视频| 日韩精品中文字幕一区二区三区| 国产福利91精品一区| 亚洲色图视频免费播放| 欧美一区二区三区播放老司机| 国产成a人亚洲| 亚洲一二三级电影| 精品盗摄一区二区三区| 色婷婷亚洲婷婷| 韩国精品一区二区| 亚洲欧美日韩中文字幕一区二区三区 | 亚洲欧美韩国综合色| 欧美剧情片在线观看| 国产成人在线网站| 亚洲国产日韩a在线播放| 精品国产网站在线观看| 色欧美片视频在线观看在线视频| 男女男精品视频网| 亚洲欧洲国产日本综合| 日韩欧美自拍偷拍| 色综合久久中文字幕综合网| 久久国产视频网| 亚洲国产一区视频| 国产精品午夜在线观看| 欧美一区二区成人| 91一区二区在线| 国产呦精品一区二区三区网站| 一区二区三区四区蜜桃| 久久久午夜电影| 91精品国产综合久久蜜臀| 色综合久久综合网欧美综合网| 国产美女av一区二区三区| 午夜久久久影院| 椎名由奈av一区二区三区| 久久一夜天堂av一区二区三区| 欧美日韩一区二区三区四区| 高清成人在线观看| 精品在线观看免费| 国产成人亚洲综合色影视| 日本欧美大码aⅴ在线播放| 亚洲精品自拍动漫在线| 国产精品无人区| 精品免费视频一区二区| 欧美精品v国产精品v日韩精品| 99久久久久久99| 高清久久久久久| 国产一区91精品张津瑜| 麻豆精品在线播放| 日本女人一区二区三区| 日精品一区二区| 午夜精品久久久久影视| 亚洲已满18点击进入久久| 亚洲视频免费看| 中文字幕一区免费在线观看| 国产调教视频一区| 国产亚洲自拍一区| 久久久午夜精品| 久久精品夜夜夜夜久久| 久久久亚洲精品一区二区三区| 久久无码av三级| 国产三级精品在线| 欧美极品aⅴ影院| 国产精品欧美极品|