aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/base.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/of/base.c')
-rw-r--r--drivers/of/base.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 865d3f66c86b..b2cee3db5ceb 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -1884,3 +1884,34 @@ int of_device_is_stdout_path(struct device_node *dn)
1884 return of_stdout == dn; 1884 return of_stdout == dn;
1885} 1885}
1886EXPORT_SYMBOL_GPL(of_device_is_stdout_path); 1886EXPORT_SYMBOL_GPL(of_device_is_stdout_path);
1887
1888/**
1889 * of_find_next_cache_node - Find a node's subsidiary cache
1890 * @np: node of type "cpu" or "cache"
1891 *
1892 * Returns a node pointer with refcount incremented, use
1893 * of_node_put() on it when done. Caller should hold a reference
1894 * to np.
1895 */
1896struct device_node *of_find_next_cache_node(const struct device_node *np)
1897{
1898 struct device_node *child;
1899 const phandle *handle;
1900
1901 handle = of_get_property(np, "l2-cache", NULL);
1902 if (!handle)
1903 handle = of_get_property(np, "next-level-cache", NULL);
1904
1905 if (handle)
1906 return of_find_node_by_phandle(be32_to_cpup(handle));
1907
1908 /* OF on pmac has nodes instead of properties named "l2-cache"
1909 * beneath CPU nodes.
1910 */
1911 if (!strcmp(np->type, "cpu"))
1912 for_each_child_of_node(np, child)
1913 if (!strcmp(child->type, "cache"))
1914 return child;
1915
1916 return NULL;
1917}