Skip to content

Commit f91d0cf

Browse files
committed
ARM: dts: at91: sam9x60: fix the SOC detection
Defining the dbgu compatible strings in the UART submodule of the flexcomm 5 gives the below error log, AT91: Could not find matching SoC description This error arises due to defining the dbgu compatible strings to the flexcom usart which is not valid because there is only one debug unit in the sam9x60 SOC and it has the chipid register. The dbgu compatible strings are valid only for debug usart and not valid for flexcom usart. Thus removing the dbgu compatible strings in the UART submodule of the flexcom for the proper SOC detection. Fixes: c016ade (ARM: dts: at91: sam9x60: Move flx5 definitions in the SoC dtsi) Signed-off-by: Durai Manickam KR <durai.manickamkr@microchip.com>
1 parent 93d4f33 commit f91d0cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arm/boot/dts/sam9x60.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240
status = "disabled";
241241

242242
uart5: serial@200 {
243-
compatible = "microchip,sam9x60-dbgu", "microchip,sam9x60-usart", "atmel,at91sam9260-dbgu", "atmel,at91sam9260-usart";
243+
compatible = "microchip,sam9x60-usart", "atmel,at91sam9260-usart";
244244
reg = <0x200 0x200>;
245245
interrupts = <14 IRQ_TYPE_LEVEL_HIGH 7>;
246246
dmas = <&dma0

0 commit comments

Comments
 (0)