mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-12-22 15:08:39 +00:00
Add hwset & hwclr properties
This commit is contained in:
parent
9385f59ac7
commit
c00550a166
@ -557,6 +557,30 @@ class Field(Component):
|
|||||||
else:
|
else:
|
||||||
self.access_rtl['hw_write'] = ([], False)
|
self.access_rtl['hw_write'] = ([], False)
|
||||||
|
|
||||||
|
# Check if the hwset or hwclr option is set
|
||||||
|
if self.obj.get_property('hwset'):
|
||||||
|
self.access_rtl['hw_setclr'] = ([
|
||||||
|
self.process_yaml(
|
||||||
|
Field.templ_dict['hw_access_hwset'],
|
||||||
|
{'path': self.path_underscored,
|
||||||
|
'genvars': self.genvars_str,
|
||||||
|
'width': self.obj.width}
|
||||||
|
)
|
||||||
|
],
|
||||||
|
False)
|
||||||
|
elif self.obj.get_property('hwclr'):
|
||||||
|
self.access_rtl['hw_setclr'] = ([
|
||||||
|
self.process_yaml(
|
||||||
|
Field.templ_dict['hw_access_hwclr'],
|
||||||
|
{'path': self.path_underscored,
|
||||||
|
'genvars': self.genvars_str,
|
||||||
|
'width': self.obj.width}
|
||||||
|
)
|
||||||
|
],
|
||||||
|
False)
|
||||||
|
else:
|
||||||
|
self.access_rtl['hw_setclr'] = ([], False)
|
||||||
|
|
||||||
# Hookup flop to output port in case register is readable by hardware
|
# Hookup flop to output port in case register is readable by hardware
|
||||||
if self.obj.get_property('hw') in (AccessType.rw, AccessType.r):
|
if self.obj.get_property('hw') in (AccessType.rw, AccessType.r):
|
||||||
# Connect flops to output port
|
# Connect flops to output port
|
||||||
@ -581,11 +605,13 @@ class Field(Component):
|
|||||||
'sw_write',
|
'sw_write',
|
||||||
'sw_read',
|
'sw_read',
|
||||||
'hw_write',
|
'hw_write',
|
||||||
|
'hw_setclr',
|
||||||
'singlepulse'
|
'singlepulse'
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
order_list = [
|
order_list = [
|
||||||
'hw_write',
|
'hw_write',
|
||||||
|
'hw_setclr',
|
||||||
'sw_write',
|
'sw_write',
|
||||||
'sw_read',
|
'sw_read',
|
||||||
'singlepulse'
|
'singlepulse'
|
||||||
|
@ -45,6 +45,24 @@ hw_access_we_wel:
|
|||||||
hw_access_no_we_wel:
|
hw_access_no_we_wel:
|
||||||
rtl: |-
|
rtl: |-
|
||||||
// we or wel property not set
|
// we or wel property not set
|
||||||
|
hw_access_hwset:
|
||||||
|
rtl: |-
|
||||||
|
if ({path}_hwset{genvars})
|
||||||
|
begin
|
||||||
|
{path}_q{genvars} <= {{{width}{{1'b1}}}};
|
||||||
|
end
|
||||||
|
input_ports:
|
||||||
|
- name: '{path}_hwset'
|
||||||
|
signal_type: 'logic'
|
||||||
|
hw_access_hwclr:
|
||||||
|
rtl: |-
|
||||||
|
if ({path}_hwclr{genvars})
|
||||||
|
begin
|
||||||
|
{path}_q{genvars} <= {{{width}{{1'b0}}}};
|
||||||
|
end
|
||||||
|
input_ports:
|
||||||
|
- name: '{path}_hwclr'
|
||||||
|
signal_type: 'logic'
|
||||||
hw_access_field:
|
hw_access_field:
|
||||||
rtl: |-
|
rtl: |-
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user