2018-07-24 15:45:28 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Common code for Amlogic SimpleFB with pipeline.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2013-2014 Luc Verhaegen <libv@skynet.be>
|
|
|
|
* (C) Copyright 2014-2015 Hans de Goede <hdegoede@redhat.com>
|
|
|
|
* (C) Copyright 2017 Icenowy Zheng <icenowy@aosc.io>
|
|
|
|
*/
|
|
|
|
|
2022-01-20 00:04:42 +00:00
|
|
|
#include <fdt_support.h>
|
2018-07-24 15:45:28 +00:00
|
|
|
|
|
|
|
int meson_simplefb_fdt_match(void *blob, const char *pipeline)
|
|
|
|
{
|
|
|
|
int offset, ret;
|
|
|
|
|
|
|
|
/* Find a prefilled simpefb node, matching out pipeline config */
|
2022-01-20 00:04:42 +00:00
|
|
|
fdt_for_each_node_by_compatible(offset, blob, -1,
|
|
|
|
"amlogic,simple-framebuffer") {
|
2018-07-24 15:45:28 +00:00
|
|
|
ret = fdt_stringlist_search(blob, offset, "amlogic,pipeline",
|
|
|
|
pipeline);
|
|
|
|
if (ret == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|