rggen-systemrdl 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2688c26e49be1e67f4901940a3872d9113ae6e6c33fc2920152a7907058e689d
4
+ data.tar.gz: eff39992ccaa258d5ca4ec00896c986e003ca9478d563aaf4a1f496586f77dad
5
+ SHA512:
6
+ metadata.gz: 502271d1de11850f8355a59a023307531ccb52ef8f0ccf2be917f544fddb865e870929aaebcba2b21b88ad5c3313b2ee5abbb5dbf0cf3b31ed0199d3c5f10110
7
+ data.tar.gz: ba07135e0c0473ec599241d9e1b663bab94850e8c2dab22c9fec3a81c13e5eb9c99caec2e756321d294b3fb47b4386a736a2bdadbf0ba0acca6dea750e33e0c0
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Taichi Ishitani
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,66 @@
1
+ [![Gem Version](https://badge.fury.io/rb/rggen-systemrdl.svg)](https://badge.fury.io/rb/rggen-systemrdl)
2
+ [![CI](https://github.com/rggen/rggen-systemrdl/actions/workflows/ci.yml/badge.svg)](https://github.com/rggen/rggen-systemrdl/actions/workflows/ci.yml)
3
+ [![Discord](https://img.shields.io/discord/1406572699467124806?style=flat&logo=discord)](https://discord.com/invite/KWya83ZZxr)
4
+
5
+ # RgGen::SystemRDL
6
+
7
+ RgGen::SystemRDL is a RgGen plugin to load register map descriptions written in [SystemRDL 2.0](https://www.accellera.org/images/downloads/standards/systemrdl/SystemRDL_2.0_Jan2018.pdf).
8
+
9
+ ## Installation
10
+
11
+ To install RgGen::SystemRDL, use the following command:
12
+
13
+ ```
14
+ $ gem install rggen-systemrdl
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ You need to tell RgGen to load the RgGen::SystemRDL plugin. There are two ways.
20
+
21
+ ### Using the `--plugin` runtime option
22
+
23
+ ```
24
+ $ rggen --plugin rggen-systemrdl your_register_map.rdl
25
+ ```
26
+
27
+ ### Using the `RGGEN_PLUGINS` environment variable
28
+
29
+ ```
30
+ $ export RGGEN_PLUGINS=${RGGEN_PLUGINS}:rggen-systemrdl
31
+ $ rggen your_register_map.rdl
32
+ ```
33
+
34
+ ## Supported features and limitations
35
+
36
+ The plugin converts SystemRDL `addrmap`, `regfile`, `reg`, `field`, and `mem` components into the corresponding RgGen register map layers, including a wide range of `field` access types.
37
+ Some SystemRDL constructs have no corresponding concept in RgGen. These are not supported and cause an error.
38
+
39
+ For the detailed component-to-layer correspondence, the full SystemRDL-property to RgGen-type mapping, and the complete list of unsupported constructs with the reasons behind each decision, see the design notes:
40
+
41
+ * [SystemRDL to RgGen mapping](notes/systemrdl_to_rggen_mapping.md)
42
+ * [Bit field type matrix](notes/bit_field_type_matrix.md)
43
+
44
+ ### Precedence handling
45
+
46
+ RgGen fixes precedence to hardware, whereas SystemRDL's precedence is variable and defaults to software.
47
+ A field is therefore rejected unless its precedence is explicitly set to `hw`.
48
+
49
+ To accept a SystemRDL description without changing it, set the `ignore_precedence` configuration option (default `false`) to `true`.
50
+ Then the `precedence` property in the SystemRDL description is ignored and every field is treated as hardware precedence.
51
+
52
+ ## Contact
53
+
54
+ Feedbacks, bug reports, questions and etc. are welcome! You can post them by using the following
55
+ ways:
56
+
57
+ * [GitHub Issue Tracker](https://github.com/rggen/rggen/issues)
58
+ * [GitHub Discussions](https://github.com/rggen/rggen/discussions)
59
+ * [Discord](https://discord.com/invite/KWya83ZZxr)
60
+ * [Mailing List](https://groups.google.com/d/forum/rggen)
61
+ * [Mail](mailto:rggen@googlegroups.com)
62
+
63
+ ## Copyright & License
64
+
65
+ Copyright © 2026 Taichi Ishitani.
66
+ RgGen::SystemRDL is licensed under the [MIT License](https://opensource.org/licenses/MIT), see [LICENSE](LICENSE) for further details.
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RgGen
4
+ module SystemRDL
5
+ module Converter
6
+ class AddrMap < Base
7
+ private
8
+
9
+ def support_external?
10
+ true
11
+ end
12
+
13
+ def external?(rdl_model)
14
+ !rdl_model.parent.nil?
15
+ end
16
+
17
+ def insert_to_root?
18
+ true
19
+ end
20
+
21
+ def layer_name
22
+ :register_block
23
+ end
24
+
25
+ def unsupported_properties
26
+ [:sharedextbus, :bigendian, :littleendian, :rsvdset, :rsvdsetX, :msb0]
27
+ end
28
+
29
+ def convert_rdl_model(rdl_model, _root_data, input_data)
30
+ convert_addrmap_name(rdl_model, input_data)
31
+ convert_comment(rdl_model, input_data)
32
+ convert_byte_size(rdl_model, input_data)
33
+ end
34
+
35
+ def convert_addrmap_name(rdl_model, input_data)
36
+ check_name(rdl_model)
37
+
38
+ name = rdl_model.full_name
39
+ escaped_name = escape_name(name.gsub('.', '__'))
40
+ input_data[:name] = to_input_value(escaped_name, rdl_model.token_range)
41
+ end
42
+
43
+ def convert_byte_size(rdl_model, input_data)
44
+ input_data[:byte_size] = from_property(rdl_model, :size)
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,165 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RgGen
4
+ module SystemRDL
5
+ module Converter
6
+ class Base
7
+ def self.convert(rdl_model, root_data, input_data)
8
+ (@converter ||= new).convert(rdl_model, root_data, input_data)
9
+ end
10
+
11
+ def convert(rdl_model, root_data, input_data)
12
+ check_external(rdl_model)
13
+ check_unsupported_properties(rdl_model)
14
+ check_property_reference(rdl_model)
15
+
16
+ insert_external(rdl_model, input_data) if external?(rdl_model)
17
+ return if region_only?
18
+
19
+ input_data = insert_design_boundary(rdl_model, root_data) if design_boundary_required?(rdl_model)
20
+ input_data = (insert_to_root? && root_data || input_data).child(layer_name)
21
+
22
+ convert_rdl_model(rdl_model, root_data, input_data)
23
+
24
+ rdl_model.instances.each do |sub_model|
25
+ converter = select_converter(sub_model)
26
+ converter.convert(sub_model, root_data, input_data)
27
+ end
28
+ end
29
+
30
+ private
31
+
32
+ def check_external(rdl_model)
33
+ return unless !support_external? && external?(rdl_model)
34
+
35
+ error "external #{rdl_model.layer} is not supported", rdl_model.token_range
36
+ end
37
+
38
+ def support_external?
39
+ false
40
+ end
41
+
42
+ def external?(_rdl_model)
43
+ false
44
+ end
45
+
46
+ def insert_external(rdl_model, input_data)
47
+ input_data = input_data.child(:register)
48
+ convert_name(rdl_model, input_data)
49
+ convert_comment(rdl_model, input_data)
50
+ convert_offset_address(rdl_model, input_data)
51
+ convert_external_type(rdl_model, input_data)
52
+ end
53
+
54
+ def convert_external_type(rdl_model, input_data)
55
+ size = rdl_model.size
56
+ bus_width = input_data.configuration.bus_width
57
+
58
+ if (size % (bus_width / 8)) != 0
59
+ message =
60
+ "#{rdl_model.layer} size is not a multiple of the bus width: " \
61
+ "size #{size} bus width #{bus_width}"
62
+ error message, rdl_model.token_range
63
+ end
64
+
65
+ input_data[:type] = to_input_value(:external, nil)
66
+ input_data[:size] = to_input_value(size / (bus_width / 8), nil)
67
+ end
68
+
69
+ def check_unsupported_properties(rdl_model)
70
+ unsupported_properties&.each do |property|
71
+ prop = rdl_model.property(property)
72
+ next unless prop.value
73
+
74
+ error "#{property} is not supported", prop.token_range
75
+ end
76
+ end
77
+
78
+ def unsupported_properties
79
+ end
80
+
81
+ def check_property_reference(rdl_model)
82
+ rdl_model.properties.each_value do |prop|
83
+ next unless prop.property_ref?
84
+
85
+ error 'property reference is not supported', prop.token_range
86
+ end
87
+ end
88
+
89
+ def region_only?
90
+ false
91
+ end
92
+
93
+ def design_boundary_required?(_rdl_model)
94
+ false
95
+ end
96
+
97
+ def insert_to_root?
98
+ false
99
+ end
100
+
101
+ def select_converter(rdl_model)
102
+ {
103
+ addrmap: AddrMap,
104
+ regfile: RegFile,
105
+ reg: Reg,
106
+ field: Field,
107
+ mem: Mem
108
+ }[rdl_model.layer]
109
+ end
110
+
111
+ def error(message, token_range)
112
+ pos = token_range&.head&.position
113
+ raise Core::SourceError.new(message, pos)
114
+ end
115
+
116
+ def convert_name(rdl_model, input_data)
117
+ check_name(rdl_model)
118
+ input_data[:name] = to_input_value(escape_name(rdl_model.name), rdl_model.token_range)
119
+ end
120
+
121
+ def check_name(rdl_model)
122
+ return unless rdl_model.name.include?('__')
123
+
124
+ error "identifier including __ is not allowed: #{rdl_model.name}", rdl_model.token_range
125
+ end
126
+
127
+ def escape_name(name)
128
+ name.gsub('[', '__').gsub(']', '')
129
+ end
130
+
131
+ def convert_comment(rdl_model, input_data)
132
+ input_data[:comment] = from_property(rdl_model, :desc)
133
+ end
134
+
135
+ def convert_offset_address(rdl_model, input_data)
136
+ input_data[:offset_address] = from_property(rdl_model, :address)
137
+ end
138
+
139
+ def set_true?(rdl_model, property_name)
140
+ rdl_model.property(property_name).value == true
141
+ end
142
+
143
+ def from_property(rdl_model, property_name)
144
+ property = rdl_model.property(property_name)
145
+ return if property.value.nil?
146
+
147
+ from_property_value(property)
148
+ end
149
+
150
+ def from_property_value(property)
151
+ if property.value?
152
+ to_input_value(property.value, property.token_range)
153
+ else
154
+ to_input_value(property.value.full_name(exclude_addrmap: true), property.token_range)
155
+ end
156
+ end
157
+
158
+ def to_input_value(value, token_range)
159
+ position = token_range&.head&.position
160
+ Core::InputBase::InputValue.new(value, position)
161
+ end
162
+ end
163
+ end
164
+ end
165
+ end