-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
svd2ada raises "CONSTRAINT_ERROR" if derivedFrom
is used by tag "enumerationValues"
#98
Comments
Further info: First,
Eventually, I got stuck with this:
<field>
<name>WDT_STG0</name>
<bitOffset>29</bitOffset>
<bitWidth>2</bitWidth>
<enumeratedValues>
<name>WDT_STG0</name>
<usage>read-write</usage>
<enumeratedValue>
<name>Disable</name>
<description>Disabled</description>
<value>0</value>
</enumeratedValue>
<enumeratedValue>
<name>Interrupt</name>
<description>Trigger an interrupt</description>
<value>1</value>
</enumeratedValue>
<enumeratedValue>
<name>ResetCPU</name>
<description>Reset CPU core</description>
<value>2</value>
</enumeratedValue>
<enumeratedValue>
<name>ResetSystem</name>
<description>Reset System</description>
<value>3</value>
</enumeratedValue>
</enumeratedValues>
</field> And other enumerations need to reference it: <field>
<name>WDT_STG1</name>
<bitOffset>27</bitOffset>
<bitWidth>2</bitWidth>
<enumeratedValues derivedFrom="WDT_STG0" />
</field> |
I've taken a look at the implementation of 'svd2ada' and did some tests. It seems to me that the issue is caused by Enum : constant Descriptors.Enumerate.Enumerate_T :=
Descriptors.Enumerate.Read_Enumerate
(Child, Result.Enums, Result.Acc = Write_Only); Vector function Read_Field
(Elt : DOM.Core.Element;
Vec : Field_Vectors.Vector;
Default_Access : Access_Type;
Default_Read : Read_Action_Type)
return Field_T; I ran out of time to further analyze the issue but I'll come back to this as soon as I know more. I just wanted to quickly share my view on this before anyone spends effort on this.. |
derivedFrom
references tags defined after current tag and always if used for enumeration valuesderivedFrom
is used by tag "enumerationValues"
Just spend some more time on this but it's not possible to quickly fix this because it's necessary to search the list of enumeration values of all elements containing enums. As mentioned before, The solution would be similar to what was done for if Derived_From /= "" then
declare
Oth : constant Peripheral_Access :=
Periph_Db.Get_Peripheral (Derived_From);
begin
if Oth /= null then
-- for P of Vector loop
-- if Unbounded.To_String (P.Name) = Derived_From then
Result := Oth.all;
-- Deep copy of the registers list
Result.Content.Clear;
for Elt of Oth.Content loop
Result.Content.Append (Deep_Copy (Elt));
end loop;
-- Do not inherit interrupts
Result.Interrupts.Clear;
else
raise Constraint_Error with
"peripheral 'derivedFrom' is not known: " & Derived_From;
end if;
end;
end if; For this type a for Oth of Vector loop
if Unbounded.To_String (Oth.Name) = Derived_From then
-- Copy the derived from enumerate type into the new value
Result := Oth;
Found := True;
exit;
end if;
end loop;
if not Found then
raise Constraint_Error with
"enumerate 'derivedFrom' is not known: " & Derived_From;
end if; Since the loop shown above is still visible as commented code, I assume a similar problem has been found before. In any case, the "database" would only contain the elements already read? I don't know whether or not it's allowed to reference elements which are defined after the element which makes use of In the initial post, I've referenced an SVD file published by the Rust community, so it might be designed to better match their requirements, but the other files I've found for ESP32 make use of Community version: Official version: I understood from other posts that AdaCore's focus is not really Espressif, or other architectures besides of ARM in general, when it comes to the "community" releases, but I hope the description here helps to understand the issue. |
Not a fix exactly but I have found that you can add a matching <name> within two <enumeratedValues> in order to provide one generated enum type to two registers with the same values. |
I tried to generate code from this SVD:
https://raw.githubusercontent.com/esp-rs/esp32/master/svd/esp32.svd
svd2ada
also aborts if the tag which is referenced byderivedFrom
is not defied before the element which makes use ofderivedFrom
. It's not really nice to fix this manually but it works but I got stuck becausederivedFrom
is also used in an enumeration - although the field the tag references is located before.svd2ada
crashes:Besides of
-p
and-o
, I've not passed any further arguments tosvd2ada
.I'd really be happy if there was solution to fix or work-around this problem...
I've found issue #84 but it seems different to me ...
I'm using the current master of
svd2ada
for the test:The text was updated successfully, but these errors were encountered: