2018-11-08 13:31:28 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2017, 2018 MINRES Technologies GmbH
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*******************************************************************************/
|
2017-09-21 13:13:01 +02:00
|
|
|
|
|
|
|
#ifndef _GPIO_REGS_H_
|
|
|
|
#define _GPIO_REGS_H_
|
|
|
|
|
2017-11-10 22:40:24 +01:00
|
|
|
#include <scc/register.h>
|
|
|
|
#include <scc/tlm_target.h>
|
2018-11-08 13:31:28 +01:00
|
|
|
#include <scc/utilities.h>
|
|
|
|
#include <util/bit_field.h>
|
2017-09-21 13:13:01 +02:00
|
|
|
|
|
|
|
namespace sysc {
|
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
class gpio_regs : public sc_core::sc_module, public scc::resetable {
|
2017-10-04 10:31:11 +02:00
|
|
|
public:
|
2017-09-21 13:13:01 +02:00
|
|
|
// storage declarations
|
|
|
|
uint32_t r_value;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_input_en;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_output_en;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_port;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_pue;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_ds;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_rise_ie;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_rise_ip;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_fall_ie;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_fall_ip;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_high_ie;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_high_ip;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_low_ie;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_low_ip;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_iof_en;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_iof_sel;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
uint32_t r_out_xor;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
// register declarations
|
2017-10-04 14:30:25 +02:00
|
|
|
scc::sc_register<uint32_t> value;
|
|
|
|
scc::sc_register<uint32_t> input_en;
|
|
|
|
scc::sc_register<uint32_t> output_en;
|
|
|
|
scc::sc_register<uint32_t> port;
|
|
|
|
scc::sc_register<uint32_t> pue;
|
|
|
|
scc::sc_register<uint32_t> ds;
|
|
|
|
scc::sc_register<uint32_t> rise_ie;
|
|
|
|
scc::sc_register<uint32_t> rise_ip;
|
|
|
|
scc::sc_register<uint32_t> fall_ie;
|
|
|
|
scc::sc_register<uint32_t> fall_ip;
|
|
|
|
scc::sc_register<uint32_t> high_ie;
|
|
|
|
scc::sc_register<uint32_t> high_ip;
|
|
|
|
scc::sc_register<uint32_t> low_ie;
|
|
|
|
scc::sc_register<uint32_t> low_ip;
|
|
|
|
scc::sc_register<uint32_t> iof_en;
|
|
|
|
scc::sc_register<uint32_t> iof_sel;
|
|
|
|
scc::sc_register<uint32_t> out_xor;
|
2018-11-08 13:31:28 +01:00
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
gpio_regs(sc_core::sc_module_name nm);
|
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
template <unsigned BUSWIDTH = 32> void registerResources(scc::tlm_target<BUSWIDTH> &target);
|
|
|
|
void trace(sc_core::sc_trace_file *tf) const override;
|
2017-09-21 13:13:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// member functions
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
inline sysc::gpio_regs::gpio_regs(sc_core::sc_module_name nm)
|
2017-09-26 17:10:10 +02:00
|
|
|
: sc_core::sc_module(nm)
|
|
|
|
, NAMED(value, r_value, 0, *this)
|
|
|
|
, NAMED(input_en, r_input_en, 0, *this)
|
|
|
|
, NAMED(output_en, r_output_en, 0, *this)
|
|
|
|
, NAMED(port, r_port, 0, *this)
|
|
|
|
, NAMED(pue, r_pue, 0, *this)
|
|
|
|
, NAMED(ds, r_ds, 0, *this)
|
|
|
|
, NAMED(rise_ie, r_rise_ie, 0, *this)
|
|
|
|
, NAMED(rise_ip, r_rise_ip, 0, *this)
|
|
|
|
, NAMED(fall_ie, r_fall_ie, 0, *this)
|
|
|
|
, NAMED(fall_ip, r_fall_ip, 0, *this)
|
|
|
|
, NAMED(high_ie, r_high_ie, 0, *this)
|
|
|
|
, NAMED(high_ip, r_high_ip, 0, *this)
|
|
|
|
, NAMED(low_ie, r_low_ie, 0, *this)
|
|
|
|
, NAMED(low_ip, r_low_ip, 0, *this)
|
|
|
|
, NAMED(iof_en, r_iof_en, 0, *this)
|
|
|
|
, NAMED(iof_sel, r_iof_sel, 0, *this)
|
2018-11-08 13:31:28 +01:00
|
|
|
, NAMED(out_xor, r_out_xor, 0, *this) {}
|
2017-09-21 13:13:01 +02:00
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
template <unsigned BUSWIDTH> inline void sysc::gpio_regs::registerResources(scc::tlm_target<BUSWIDTH> &target) {
|
2017-09-21 13:13:01 +02:00
|
|
|
target.addResource(value, 0x0UL);
|
|
|
|
target.addResource(input_en, 0x4UL);
|
|
|
|
target.addResource(output_en, 0x8UL);
|
|
|
|
target.addResource(port, 0xcUL);
|
|
|
|
target.addResource(pue, 0x10UL);
|
|
|
|
target.addResource(ds, 0x14UL);
|
|
|
|
target.addResource(rise_ie, 0x18UL);
|
|
|
|
target.addResource(rise_ip, 0x1cUL);
|
|
|
|
target.addResource(fall_ie, 0x20UL);
|
|
|
|
target.addResource(fall_ip, 0x24UL);
|
|
|
|
target.addResource(high_ie, 0x28UL);
|
|
|
|
target.addResource(high_ip, 0x2cUL);
|
|
|
|
target.addResource(low_ie, 0x30UL);
|
|
|
|
target.addResource(low_ip, 0x34UL);
|
|
|
|
target.addResource(iof_en, 0x38UL);
|
|
|
|
target.addResource(iof_sel, 0x3cUL);
|
|
|
|
target.addResource(out_xor, 0x40UL);
|
|
|
|
}
|
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
inline void sysc::gpio_regs::trace(sc_core::sc_trace_file *tf) const {
|
|
|
|
value.trace(tf);
|
|
|
|
input_en.trace(tf);
|
|
|
|
output_en.trace(tf);
|
|
|
|
port.trace(tf);
|
|
|
|
pue.trace(tf);
|
|
|
|
ds.trace(tf);
|
|
|
|
rise_ie.trace(tf);
|
|
|
|
rise_ip.trace(tf);
|
|
|
|
fall_ie.trace(tf);
|
|
|
|
fall_ip.trace(tf);
|
|
|
|
high_ie.trace(tf);
|
|
|
|
high_ip.trace(tf);
|
|
|
|
low_ie.trace(tf);
|
|
|
|
low_ip.trace(tf);
|
|
|
|
iof_en.trace(tf);
|
|
|
|
iof_sel.trace(tf);
|
|
|
|
out_xor.trace(tf);
|
|
|
|
}
|
|
|
|
|
2017-09-21 13:13:01 +02:00
|
|
|
#endif // _GPIO_REGS_H_
|