Skip to content

Commit 0f9dc23

Browse files
committed
dtb: Handle properties with both matrix and scalar types
In a few cases (really only 1 known), a property may be defined as a scalar and matrix. Check for this case and decide on the type based on the minimum dimensions for the matrix. Only handle cases with a single scalar and matrix type are handled. Signed-off-by: Rob Herring (Arm) <[email protected]>
1 parent 7b57675 commit 0f9dc23

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

dtschema/dtb.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ def prop_value(validator, nodename, p):
125125
if prop_types >= {'int8', 'uint8'}:
126126
prop_types -= {'uint8'}
127127

128+
dim = validator.property_get_type_dim(p.name)
129+
matrix_prop_types = { t for t in prop_types if 'matrix' in t }
130+
128131
if len(prop_types) > 1:
129132
if {'string', 'string-array'} & prop_types:
130133
str = bytes_to_string(data)
@@ -135,6 +138,13 @@ def prop_value(validator, nodename, p):
135138
fmt = prop_types.difference({'string', 'string-array'}).pop()
136139
except:
137140
return data
141+
elif matrix_prop_types:
142+
scalar_prop_types = prop_types - matrix_prop_types
143+
if len(scalar_prop_types) == 1:
144+
fmt = scalar_prop_types.pop()
145+
min_dim = dim[0][0] * dim[1][0]
146+
if len(p) / type_format[fmt].size >= min_dim:
147+
fmt = matrix_prop_types.pop()
138148
else:
139149
#print(p.name + ': multiple types found', file=sys.stderr)
140150
# HACK around a type collision. Since 4 bytes could be either type,
@@ -203,7 +213,6 @@ def prop_value(validator, nodename, p):
203213
val_int += [dtschema.sized_int(i[0], size=(type_struct.size * 8))]
204214

205215
if 'matrix' in fmt or fmt in {'phandle', 'phandle-array', 'address'}:
206-
dim = validator.property_get_type_dim(p.name)
207216
if dim:
208217
stride = get_stride(len(val_int), dim)
209218

0 commit comments

Comments
 (0)