Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
36 lines
705 B
C
36 lines
705 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __MATROXFB_CRTC2_H__
|
|
#define __MATROXFB_CRTC2_H__
|
|
|
|
#include <linux/ioctl.h>
|
|
#include "matroxfb_base.h"
|
|
|
|
struct matroxfb_dh_fb_info {
|
|
struct fb_info fbcon;
|
|
int fbcon_registered;
|
|
int initialized;
|
|
|
|
struct matrox_fb_info* primary_dev;
|
|
|
|
struct {
|
|
unsigned long base; /* physical */
|
|
vaddr_t vbase; /* virtual */
|
|
unsigned int len;
|
|
unsigned int len_usable;
|
|
unsigned int len_maximum;
|
|
unsigned int offbase;
|
|
unsigned int borrowed;
|
|
} video;
|
|
struct {
|
|
unsigned long base;
|
|
vaddr_t vbase;
|
|
unsigned int len;
|
|
} mmio;
|
|
|
|
unsigned int interlaced:1;
|
|
|
|
u_int32_t cmap[16];
|
|
};
|
|
|
|
#endif /* __MATROXFB_CRTC2_H__ */
|