mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
b5867b1a7a
This patch adds a basic group of devicetrees, one for each cpu family, including actually just uart and dspi devices, since these are the drivers supporting devicetree (support added in this patch-set). Acked-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Angelo Dureghello <angelo@sysam.it> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
19 lines
334 B
Text
19 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";
|
|
};
|
|
};
|