OpenCores
URL https://opencores.org/ocsvn/wb_lpc/wb_lpc/trunk

Subversion Repositories wb_lpc

[/] [wb_lpc/] [trunk/] [rtl/] [verilog/] [wb_dreq_host.v] - Rev 3

Go to most recent revision | Compare with Previous | Blame | View Log

//
//////////////////////////////////////////////////////////////////////
////                                                              ////
////  $Id: wb_dreq_host.v,v 1.1 2008-03-02 20:46:40 hharte Exp $
////  wb_dreq_host.v -  Wishbone DMA Controller for LPC Host      ////
////                                                              ////
////  This file is part of the Wishbone LPC Bridge project        ////
////  http://www.opencores.org/projects/wb_lpc/                   ////
////                                                              ////
////  Author:                                                     ////
////      - Howard M. Harte (hharte@opencores.org)                ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
////                                                              ////
//// Copyright (C) 2008 Howard M. Harte                           ////
////                                                              ////
//// This source file may be used and distributed without         ////
//// restriction provided that this copyright statement is not    ////
//// removed from the file and that any derivative work contains  ////
//// the original copyright notice and the associated disclaimer. ////
////                                                              ////
//// This source file is free software; you can redistribute it   ////
//// and/or modify it under the terms of the GNU Lesser General   ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any   ////
//// later version.                                               ////
////                                                              ////
//// This source is distributed in the hope that it will be       ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
//// PURPOSE.  See the GNU Lesser General Public License for more ////
//// details.                                                     ////
////                                                              ////
//// You should have received a copy of the GNU Lesser General    ////
//// Public License along with this source; if not, download it   ////
//// from http://www.opencores.org/lgpl.shtml                     ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
 
`timescale 1 ns / 1 ns
 
`include "../../rtl/verilog/wb_lpc_defines.v"
 
module wb_dreq_host(clk_i, nrst_i,
                     dma_chan_o, dma_req_o,
							ldrq_i
);
	// Wishbone Slave Interface
	input			clk_i;
	input 		nrst_i;				// Active low reset.
 
	// Private DMA Interface
	output reg  [2:0] dma_chan_o;
	output reg			dma_req_o;
 
	// LPC Bus DMA Request Input
	input			ldrq_i;
 
	reg [1:0]	adr_cnt;
	reg [3:0]	state;
 
	always @(posedge clk_i or negedge nrst_i)
		if(~nrst_i)
		begin
			state <= `LDRQ_ST_IDLE;
			dma_chan_o <= 3'h0;
			dma_req_o <= 3'h0;
			adr_cnt <= 2'b00;
		end
		else begin
			case(state)
				`LDRQ_ST_IDLE:
					begin
						dma_req_o <= 1'b0;
						if(~ldrq_i) begin
							state <= `LDRQ_ST_ADDR;
							adr_cnt <= 2'h2;
						end
					end
				`LDRQ_ST_ADDR:
					begin
						dma_chan_o[adr_cnt] <= ldrq_i;
						adr_cnt <= adr_cnt - 1;
 
						if(adr_cnt == 2'h0)
							state <= `LDRQ_ST_ACT;
					end
				`LDRQ_ST_ACT:
					begin
						dma_req_o <= ldrq_i;
						state <= `LDRQ_ST_DONE;
					end
				`LDRQ_ST_DONE:
					begin
						dma_req_o <= 1'b0;
						state <= `LDRQ_ST_IDLE;
					end
			endcase
		end
 
endmodule
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.