Rebecca Schultz Zavin | 45fe7a4 | 2010-08-06 19:14:45 -0700 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | **************************************************************************** |
| 3 | *** |
| 4 | *** This header was automatically generated from a Linux kernel header |
| 5 | *** of the same name, to make information necessary for userspace to |
| 6 | *** call into the kernel available to libc. It contains only constants, |
| 7 | *** structures, and macros generated from the original header, and thus, |
| 8 | *** contains no copyrightable information. |
| 9 | *** |
| 10 | **************************************************************************** |
| 11 | ****************************************************************************/ |
| 12 | #ifndef _LINUX_TEGRAFB_H_ |
| 13 | #define _LINUX_TEGRAFB_H_ |
| 14 | |
| 15 | #include <linux/types.h> |
| 16 | #include <asm/ioctl.h> |
| 17 | |
| 18 | struct tegra_fb_flip_args { |
| 19 | __u32 buff_id; |
| 20 | __u32 pre_syncpt_id; |
| 21 | __u32 pre_syncpt_val; |
| 22 | __u32 post_syncpt_id; |
| 23 | __u32 post_syncpt_val; |
| 24 | }; |
| 25 | |
| 26 | #define FBIO_TEGRA_SET_NVMAP_FD _IOW('F', 0x40, __u32) |
| 27 | #define FBIO_TEGRA_FLIP _IOW('F', 0x41, struct tegra_fb_flip_args) |
| 28 | |
| 29 | #endif |
| 30 | |