blob: ce0dc8f171bec85ff5050a4911d692e3b2dbe088 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Icenowy Zhenge5f92462017-10-26 11:14:45 +08002/*
3 * Common code for Allwinner SimpleFB with pipeline.
4 *
5 * (C) Copyright 2013-2014 Luc Verhaegen <libv@skynet.be>
6 * (C) Copyright 2014-2015 Hans de Goede <hdegoede@redhat.com>
7 * (C) Copyright 2017 Icenowy Zheng <icenowy@aosc.io>
Icenowy Zhenge5f92462017-10-26 11:14:45 +08008 */
9
Marek BehĂșn3058e282022-01-20 01:04:42 +010010#include <fdt_support.h>
Icenowy Zhenge5f92462017-10-26 11:14:45 +080011
12int sunxi_simplefb_fdt_match(void *blob, const char *pipeline)
13{
14 int offset, ret;
15
16 /* Find a prefilled simpefb node, matching out pipeline config */
17 offset = fdt_node_offset_by_compatible(blob, -1,
18 "allwinner,simple-framebuffer");
Marek BehĂșn3058e282022-01-20 01:04:42 +010019 fdt_for_each_node_by_compatible(offset, blob, -1,
20 "allwinner,simple-framebuffer") {
Icenowy Zhenge5f92462017-10-26 11:14:45 +080021 ret = fdt_stringlist_search(blob, offset, "allwinner,pipeline",
22 pipeline);
23 if (ret == 0)
24 break;
Icenowy Zhenge5f92462017-10-26 11:14:45 +080025 }
26
27 return offset;
28}