mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
da25b288ee
This commit introduces the Mesa3D lima driver for Mali 400 series GPUs. Issue #4559.
25 lines
557 B
C++
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_ */
|