vt_fb.h revision 257725
1256904Sray/*-
2256904Sray * Copyright (c) 2013 The FreeBSD Foundation
3256904Sray * All rights reserved.
4256904Sray *
5256904Sray * This software was developed by Aleksandr Rybalko under sponsorship from the
6256904Sray * FreeBSD Foundation.
7256904Sray *
8256904Sray * Redistribution and use in source and binary forms, with or without
9256904Sray * modification, are permitted provided that the following conditions
10256904Sray * are met:
11256904Sray * 1. Redistributions of source code must retain the above copyright
12256904Sray *    notice, this list of conditions and the following disclaimer.
13256904Sray * 2. Redistributions in binary form must reproduce the above copyright
14256904Sray *    notice, this list of conditions and the following disclaimer in the
15256904Sray *    documentation and/or other materials provided with the distribution.
16256904Sray *
17256904Sray * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18256904Sray * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19256904Sray * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20256904Sray * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21256904Sray * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22256904Sray * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23256904Sray * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24256904Sray * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25256904Sray * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26256904Sray * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27256904Sray * SUCH DAMAGE.
28256904Sray *
29256904Sray * $FreeBSD: user/ed/newcons/sys/dev/vt/hw/fb/vt_fb.h 257725 2013-11-05 23:01:57Z ray $
30256904Sray */
31256904Sray
32256904Sray#ifndef _DEV_VT_HW_FB_VT_FB_H_
33256904Sray#define	_DEV_VT_HW_FB_VT_FB_H_
34256904Sray/* Generic framebuffer interface call vt_fb_attach to init VT(9) */
35256904Srayint vt_fb_attach(struct fb_info *info);
36256904Sray
37257725Srayint fb_probe(struct fb_info *info);
38257725Sray
39257725Srayvd_init_t	vt_fb_init;
40257725Srayvd_blank_t	vt_fb_blank;
41257725Srayvd_bitbltchr_t	vt_fb_bitbltchr;
42257725Srayvd_postswitch_t	vt_fb_postswitch;
43257725Sray
44257725Sray
45256904Sray#endif /* _DEV_VT_HW_FB_VT_FB_H_ */
46