Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*	$NetBSD: sunxi_dep.c,v 1.7 2021/01/27 03:10:20 thorpej Exp $	*/

/*-
 * Copyright (c) 2018 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Manuel Bouyer.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */


#include <sys/cdefs.h>

__KERNEL_RCSID(1, "$NetBSD: sunxi_dep.c,v 1.7 2021/01/27 03:10:20 thorpej Exp $");

#include <sys/param.h>
#include <sys/bus.h>
#include <sys/device.h>
#include <sys/systm.h>

#include <libfdt.h>

#include <dev/fdt/fdtvar.h>
#include <arm/sunxi/sunxi_display.h>

#include "sunxi_debe.h"

struct sunxi_dep_softc {
	device_t sc_dev;
	int	sc_phandle;
};

static const struct device_compatible_entry compat_data[] = {
	{ .compat = "allwinner,sun4i-a10-display-engine" },
	{ .compat = "allwinner,sun7i-a20-display-engine" },
	DEVICE_COMPAT_EOL
};

static const char *fb_compat[] = {
	"allwinner,simple-framebuffer",
	NULL
};

static int sunxi_dep_match(device_t, cfdata_t, void *);
static void sunxi_dep_attach(device_t, device_t, void *);

CFATTACH_DECL_NEW(sunxi_dep, sizeof(struct sunxi_dep_softc),
	sunxi_dep_match, sunxi_dep_attach, NULL, NULL);

static int
sunxi_dep_match(device_t parent, cfdata_t cf, void *aux)
{
#if NSUNXI_DEBE > 0
	struct fdt_attach_args * const faa = aux;

	return  of_compatible_match(faa->faa_phandle, compat_data);
#else
	return 0;
#endif
}

static void
sunxi_dep_attach(device_t parent, device_t self, void *aux)
{
	struct sunxi_dep_softc * const sc = device_private(self);
	struct fdt_attach_args * const faa = aux;
	const int phandle = faa->faa_phandle;
	int sunxi_dep_npipelines = 0;
	int len;
	const u_int *buf;
	u_int ref;
	int error;

	sc->sc_dev = self;

	buf = fdt_getprop(fdtbus_get_data(),
	    fdtbus_phandle2offset(phandle), "allwinner,pipelines", &len);
	if (buf == NULL || len < sizeof(ref) || (len % sizeof(ref)) != 0) {
		aprint_error("bad/missing allwinner,pipelines property\n");
		return;
	}
	aprint_normal(": ");
#if NSUNXI_DEBE > 0
	for (int i = 0; i < (len / sizeof(ref)); i++) {
		if (i > 0)
			aprint_normal_dev(self, "");
		ref = be32dec(&buf[i]);
		error = sunxi_debe_pipeline(
		    fdtbus_get_phandle_from_native(ref), true);
		if (error)
			aprint_error("can't activate pipeline %d\n", i);
		else
			sunxi_dep_npipelines++;
	}
	aprint_naive("\n");
	if (sunxi_dep_npipelines > 0)
		fdt_remove_bycompat(fb_compat);
#else
	aprint_error("debe not configured\n");
	return;
#endif
}