search for: dt_find_node_by_path

Displaying 3 results from an estimated 3 matches for "dt_find_node_by_path".

2013 Aug 29
2
Re: [PATCH V1 17/29] xen/arm: Mark each device used by Xen as disabled in DOM0 FDT
...ons = ""; > > - early_printk("Looking for UART console %s\n", devalias); > - dev = dt_find_node_by_alias(devalias); > + early_printk("Looking for UART console %s\n", devpath); > + if ( *devpath == ''/'' ) > + dev = dt_find_node_by_path(devpath); > + else > + dev = dt_find_node_by_alias(devpath); if ''/'' start an alias, it should be + if ( *devpath == ''/'' ) + dev = dt_find_node_by_alias(devpath); + else + dev = dt_find_node_by_path(devpath); bamvor > &...
2013 Sep 26
8
[PATCH v5 0/7] Dissociate logical and gic/hardware CPU ID
Hi, This is the fifth version of this patch series. With the Versatile Express TC2, it''s possible to boot only with A7 or A15. If the user choose to boot with only A7, the CPU ID will start at 0x100. As Xen relies on it to set the logical ID and the GIC, it won''t be possible to use Xen with this use case. This patch series is divided in 3 parts: - Patch 1: prepare Xen
2013 Sep 13
10
[PATCH RFC 0/8] xen/arm: initial cubieboard2 support.
See http://www.gossamer-threads.com/lists/xen/devel/297170 for some information on how to get this going. I''ve rebased and addressed the review comments. As before several of the patches are not to be applied because they can be done better using infrastructure from Julien''s "Allow Xen to boot with a raw Device Tree" patch. They are included for completeness. With