cvw/src/uncore/gpio_apb.sv

167 lines
6.9 KiB
Systemverilog
Raw Normal View History

2022-06-08 01:31:34 +00:00
///////////////////////////////////////////
// gpio_apb.sv
//
// Written: David_Harris@hmc.edu 14 January 2021
// Modified: bbracker@hmc.edu 15 Apr. 2021
//
// Purpose: General Purpose I/O peripheral
// See FE310-G002-Manual-v19p05 for specifications
// No interrupts, drive strength, or pull-ups supported
//
2023-01-14 14:15:35 +00:00
// Documentation: RISC-V System on Chip Design Chapter 15
//
2023-01-11 23:15:08 +00:00
// A component of the CORE-V-WALLY configurable RISC-V project.
// https://github.com/openhwgroup/cvw
2022-06-08 01:31:34 +00:00
//
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
2022-06-08 01:31:34 +00:00
//
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
2022-06-08 01:31:34 +00:00
//
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
// may obtain a copy of the License at
2022-06-08 01:31:34 +00:00
//
// https://solderpad.org/licenses/SHL-2.1/
//
// Unless required by applicable law or agreed to in writing, any work distributed under the
// License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
2022-06-08 01:31:34 +00:00
////////////////////////////////////////////////////////////////////////////////////////////////
2023-05-26 21:24:12 +00:00
module gpio_apb import cvw::*; #(parameter cvw_t P) (
2023-06-15 17:04:28 +00:00
input logic PCLK, PRESETn,
input logic PSEL,
input logic [7:0] PADDR,
input logic [P.XLEN-1:0] PWDATA,
2023-05-26 21:24:12 +00:00
input logic [P.XLEN/8-1:0] PSTRB,
2023-06-15 17:04:28 +00:00
input logic PWRITE,
input logic PENABLE,
output logic [P.XLEN-1:0] PRDATA,
output logic PREADY,
input logic [31:0] iof0, iof1,
input logic [31:0] GPIOIN,
output logic [31:0] GPIOOUT, GPIOEN,
output logic GPIOIntr
2023-01-15 01:21:07 +00:00
);
2022-06-08 01:31:34 +00:00
// register map
localparam GPIO_INPUT_VAL = 8'h00;
localparam GPIO_INPUT_EN = 8'h04;
localparam GPIO_OUTPUT_EN = 8'h08;
localparam GPIO_OUTPUT_VAL = 8'h0C;
localparam GPIO_RISE_IE = 8'h18;
localparam GPIO_RISE_IP = 8'h1C;
localparam GPIO_FALL_IE = 8'h20;
localparam GPIO_FALL_IP = 8'h24;
localparam GPIO_HIGH_IE = 8'h28;
localparam GPIO_HIGH_IP = 8'h2C;
localparam GPIO_LOW_IE = 8'h30;
localparam GPIO_LOW_IP = 8'h34;
localparam GPIO_IOF_EN = 8'h38;
localparam GPIO_IOF_SEL = 8'h3C;
localparam GPIO_OUT_XOR = 8'h40;
2023-06-15 17:04:28 +00:00
logic [31:0] input0d, input1d, input2d, input3d;
logic [31:0] input_val, input_en, output_en, output_val;
logic [31:0] rise_ie, rise_ip, fall_ie, fall_ip, high_ie, high_ip, low_ie, low_ip;
logic [31:0] out_xor, iof_en, iof_sel, iof_out, gpio_out;
logic [7:0] entry;
logic [31:0] Din, Dout;
logic memwrite;
2022-06-08 01:31:34 +00:00
// APB I/O
2023-06-15 17:04:28 +00:00
assign entry = {PADDR[7:2],2'b00}; // 32-bit word-aligned accesses
2022-07-05 05:01:59 +00:00
assign memwrite = PWRITE & PENABLE & PSEL; // only write in access phase
2023-06-15 17:04:28 +00:00
assign PREADY = 1'b1; // GPIO never takes >1 cycle to respond
2022-06-08 01:31:34 +00:00
// account for subword read/write circuitry
// -- Note GPIO registers are 32 bits no matter what; access them with LW SW.
assign Din = PWDATA[31:0];
if (P.XLEN == 64) assign PRDATA = {Dout, Dout};
else assign PRDATA = Dout;
2022-06-08 01:31:34 +00:00
// register access
always_ff @(posedge PCLK, negedge PRESETn)
if (~PRESETn) begin // asynch reset
input_en <= '0;
output_en <= '0;
2022-06-08 01:31:34 +00:00
// *** synch reset not yet implemented [DH: can we delete this comment? Check if a sync reset is required]
output_val <= '0;
rise_ie <= '0;
rise_ip <= '0;
fall_ie <= '0;
fall_ip <= '0;
high_ie <= '0;
high_ip <= '0;
low_ie <= '0;
low_ip <= '0;
iof_en <= '0;
iof_sel <= '0;
out_xor <= '0;
2022-06-08 01:31:34 +00:00
end else begin // writes
// According to FE310 spec: Once the interrupt is pending, it will remain set until a 1 is written to the *_ip register at that bit.
/* verilator lint_off CASEINCOMPLETE */
if (memwrite)
case(entry)
GPIO_INPUT_EN: input_en <= Din;
GPIO_OUTPUT_EN: output_en <= Din;
GPIO_OUTPUT_VAL: output_val <= Din;
GPIO_RISE_IE: rise_ie <= Din;
GPIO_FALL_IE: fall_ie <= Din;
GPIO_HIGH_IE: high_ie <= Din;
GPIO_LOW_IE: low_ie <= Din;
GPIO_IOF_EN: iof_en <= Din;
GPIO_IOF_SEL: iof_sel <= Din;
GPIO_OUT_XOR: out_xor <= Din;
2022-06-08 01:31:34 +00:00
endcase
/* verilator lint_on CASEINCOMPLETE */
// interrupts can be cleared by writing corresponding bits to a register
if (memwrite & entry == GPIO_RISE_IP) rise_ip <= rise_ip & ~Din;
else rise_ip <= rise_ip | (input2d & ~input3d);
if (memwrite & (entry == GPIO_FALL_IP)) fall_ip <= fall_ip & ~Din;
else fall_ip <= fall_ip | (~input2d & input3d);
if (memwrite & (entry == GPIO_HIGH_IP)) high_ip <= high_ip & ~Din;
else high_ip <= high_ip | input3d;
if (memwrite & (entry == GPIO_LOW_IP)) low_ip <= low_ip & ~Din;
else low_ip <= low_ip | ~input3d;
2022-06-08 01:31:34 +00:00
case(entry) // flop to sample inputs
GPIO_INPUT_VAL: Dout <= input_val;
GPIO_INPUT_EN: Dout <= input_en;
GPIO_OUTPUT_EN: Dout <= output_en;
GPIO_OUTPUT_VAL: Dout <= output_val;
GPIO_RISE_IE: Dout <= rise_ie;
GPIO_RISE_IP: Dout <= rise_ip;
GPIO_FALL_IE: Dout <= fall_ie;
GPIO_FALL_IP: Dout <= fall_ip;
GPIO_HIGH_IE: Dout <= high_ie;
GPIO_HIGH_IP: Dout <= high_ip;
GPIO_LOW_IE: Dout <= low_ie;
GPIO_LOW_IP: Dout <= low_ip;
GPIO_IOF_EN: Dout <= iof_en;
GPIO_IOF_SEL: Dout <= iof_sel;
GPIO_OUT_XOR: Dout <= out_xor;
default: Dout <= '0;
2022-06-08 01:31:34 +00:00
endcase
end
// chip i/o
// connect OUT to IN for loopback testing
2023-05-26 21:24:12 +00:00
if (P.GPIO_LOOPBACK_TEST) assign input0d = ((output_en & GPIOOUT) | (~output_en & GPIOIN)) & input_en;
2023-06-15 17:04:28 +00:00
else assign input0d = GPIOIN & input_en;
2022-06-08 01:31:34 +00:00
// synchroninzer for inputs
flop #(32) sync1(PCLK,input0d,input1d);
flop #(32) sync2(PCLK,input1d,input2d);
flop #(32) sync3(PCLK,input2d,input3d);
assign input_val = input3d;
2023-06-15 17:04:28 +00:00
assign iof_out = iof_sel & iof1 | ~iof_sel & iof0; // per-bit mux between iof1 and iof0
assign gpio_out = iof_en & iof_out | ~iof_en & output_val; // per-bit mux between IOF and output_val
assign GPIOOUT = gpio_out ^ out_xor; // per-bit flip output polarity
assign GPIOEN = output_en;
2022-06-08 01:31:34 +00:00
2023-06-15 17:04:28 +00:00
assign GPIOIntr = |{(rise_ip & rise_ie),(fall_ip & fall_ie),(high_ip & high_ie),(low_ip & low_ie)};
2022-06-08 01:31:34 +00:00
endmodule