mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
20 lines
334 B
Text
20 lines
334 B
Text
|
Freescale ColdFire UART
|
||
|
|
||
|
Required properties:
|
||
|
- compatible : should be "fsl,mcf-uart"
|
||
|
- reg: start address and size of the registers
|
||
|
|
||
|
Example:
|
||
|
|
||
|
soc {
|
||
|
compatible = "simple-bus";
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>;
|
||
|
|
||
|
uart0: uart@fc060000 {
|
||
|
compatible = "fsl,mcf-uart";
|
||
|
reg = <0xfc060000 0x40>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
};
|