Message ID | 20220826142806.3658434-2-conor.dooley@microchip.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | New PolarFire SoC devkit devicetrees & 22.09 reference design updates | expand |
On 26/08/2022 17:27, Conor Dooley wrote: > The icicle kit reference design's v2022.09 release,made some changes > to the memory map - including adding the ability to read the fabric > clock controllers via the system controller bus & making the PCI > controller work with upstream Linux. > > While the PCI was not working in the v2022.03 design, so nothing is > broken there in terms of backwards compatibility, the fabric clocks > used in the v2022.03 design were chosen by the individual run of the > synthesis tool. In the v2022.09 reference design, the clocks are fixed > to use the "north west" fabric Clock Conditioning Circuitry. > > Make use of a new compatible to denote that this is not backwards > compatible. > Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof
diff --git a/Documentation/devicetree/bindings/riscv/microchip.yaml b/Documentation/devicetree/bindings/riscv/microchip.yaml index 1aa7336a9672..7cfc96c21ab0 100644 --- a/Documentation/devicetree/bindings/riscv/microchip.yaml +++ b/Documentation/devicetree/bindings/riscv/microchip.yaml @@ -17,12 +17,17 @@ properties: $nodename: const: '/' compatible: - items: - - enum: - - microchip,mpfs-icicle-kit - - microchip,mpfs-icicle-reference-rtlv2203 - - sundance,polarberry - - const: microchip,mpfs + oneOf: + - items: + - enum: + - microchip,mpfs-icicle-reference-rtlv2203 + - microchip,mpfs-icicle-reference-rtlv2209 + - const: microchip,mpfs-icicle-kit + - const: microchip,mpfs + + - items: + - const: sundance,polarberry + - const: microchip,mpfs additionalProperties: true
The icicle kit reference design's v2022.09 release,made some changes to the memory map - including adding the ability to read the fabric clock controllers via the system controller bus & making the PCI controller work with upstream Linux. While the PCI was not working in the v2022.03 design, so nothing is broken there in terms of backwards compatibility, the fabric clocks used in the v2022.03 design were chosen by the individual run of the synthesis tool. In the v2022.09 reference design, the clocks are fixed to use the "north west" fabric Clock Conditioning Circuitry. Make use of a new compatible to denote that this is not backwards compatible. Signed-off-by: Conor Dooley <conor.dooley@microchip.com> --- Krzysztof: you acked this patch in another series, but I moved it here and reworked the patch contents to make the relationship between the compatibles clearer. Since it is basically a new patch just with the same intent, I dropped your ack. --- .../devicetree/bindings/riscv/microchip.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-)