[U-Boot-Users] use of aliases in device trees

Segher Boessenkool segher at kernel.crashing.org
Sun Nov 4 10:24:37 CET 2007


> In some discussion on the u-boot dev list it became clear that having
> aliases in the device tree might be useful as a common way to deal
> with finding specific nodes that need fixing up by the firmware.

> One common solution would be having a top level aliases like the pmac
> tree's have:
>
> aliases {
> 	enet0 = "...";
> 	enet1 = "...";
> 	pci0 = "...";
> 	pci1 = "...";
> };

It's not just Apple that uses this; this is standard OF stuff.

> I wanted to see what people think of this idea and about trying to
> use common names for the aliases?

I'm obviously all for it, having suggested it myself a few times.

For common names, I think a good starting point would be to use
the generic names (as defined in the "generic names" recommended
practice; this should be the name of the nodes pointed to as well),
followed by a number; and/or a generic name without any suffix,
which points to the "main" device of that type.

This is a lot like your example, except that "enet" isn't a generic
name (that would be "network" I believe).  It is perfectly fine to
have to or more aliases pointing to the same node though.

This won't solve all identification problems of course, it only gives
an ordering per class of devices, but in most cases this will be enough,
esp. when platform code uses this.  We'll likely need a few extra names
for special cases, but let's use some restraint there, and esp. not
define something as a generic solution when it isn't.


Segher





More information about the U-Boot mailing list