genode/repos/libports/include/libdrm/ioctl_dispatch.h
Josef Söntgen da25b288ee libports: add mesa/lima driver
This commit introduces the Mesa3D lima driver for Mali 400 series
GPUs.

Issue #4559.
2022-08-10 13:33:01 +02:00

25 lines
557 B
C++

/*
* \brief Libdrm ioctl back end dispatcher
* \author Josef Soentgen
* \date 2022-07-15
*/
/*
* Copyright (C) 2022 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__LIBDRM__IOCTL_DISPATCH_H_
#define _INCLUDE__LIBDRM__IOCTL_DISPATCH_H_
namespace Libdrm {
enum Driver { INVALID, ETNAVIV, LIMA };
}; /* namespace Libdrm */
void drm_init(Libdrm::Driver);
#endif /* #ifndef _INCLUDE__LIBDRM__IOCTL_DISPATCH_H_ */