Skip to content

Commit

Permalink
Axis streaming fifos updated
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalahmed-RS committed Oct 6, 2023
1 parent 5dac157 commit 942f522
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def main():

#IP Details generation
details = { "IP details": {
'Name' : 'axis_async_fifo',
'Name' : 'AXIS Async FIFO',
'Version' : 'V1_0',
'Interface' : 'AXI',
'Description' : 'The AXI Streaming Async FIFO is a customize-able asynchronous FIFO. It can be used to store and retrieve ordered data at different clock domains, while using optimal resources.'}}
Expand Down
8 changes: 4 additions & 4 deletions rapidsilicon/ip/axis_fifo/v1_0/axis_fifo_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,16 @@ def main():

#IP Details generation
details = { "IP details": {
'Name' : 'AXI Streaming Async FIFO',
'Name' : 'AXI Streaming FIFO',
'Version' : 'V1_0',
'Interface' : 'AXI Stream',
'Description' : 'The AXIS Async FIFO is an AXI streaming compliant customize-able asynchronous FIFO. It can be used to store and retrieve ordered data at different clock domains, while using optimal resources.'}}
'Description' : 'The AXIS FIFO is an AXI streaming compliant customize-able FIFO. It can be used to store and retrieve ordered data at different clock domains, while using optimal resources.'}}


# Import JSON (Optional) -----------------------------------------------------------------------
if args.json:
args = rs_builder.import_args_from_json(parser=parser, json_filename=args.json)
rs_builder.import_ip_details_json(build_dir=args.build_dir ,details=details , build_name = args.build_name, version = "v1_0")

if (args.id_en == False):
dep_dict.update({
Expand All @@ -192,7 +193,6 @@ def main():
'user_width' : 'False',
})

rs_builder.import_ip_details_json(build_dir=args.build_dir ,details=details , build_name = args.build_name, version = "v1_0")

#IP Summary generation
summary = {
Expand All @@ -204,7 +204,7 @@ def main():

# Export JSON Template (Optional) --------------------------------------------------------------
if args.json_template:
rs_builder.export_json_template(parser=parser, dep_dict=dep_dict)
rs_builder.export_json_template(parser=parser, dep_dict=dep_dict, summary=summary)

# Create Wrapper -------------------------------------------------------------------------------
platform = OSFPGAPlatform(io=[], toolchain="raptor", device="gemini")
Expand Down

0 comments on commit 942f522

Please sign in to comment.