Searched refs:screen_info (Results 1 - 25 of 50) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/dig/
H A Dsetup.c17 #include <linux/screen_info.h>
43 memset(&screen_info, 0, sizeof(screen_info));
62 screen_info.orig_x = orig_x;
63 screen_info.orig_y = orig_y;
64 screen_info.orig_video_cols = num_cols;
65 screen_info.orig_video_lines = num_rows;
66 screen_info.orig_video_points = font_height;
67 screen_info.orig_video_mode = 3;
68 screen_info
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Defifb.c14 #include <linux/screen_info.h>
169 if (screen_info.lfb_base == 0) {
174 screen_info.lfb_base = info->base;
191 if (screen_info.lfb_base >= start &&
192 screen_info.lfb_base < end) {
198 screen_info.lfb_base = 0;
201 if (screen_info.lfb_base) {
202 if (screen_info.lfb_linelength == 0)
203 screen_info.lfb_linelength = info->stride;
204 if (screen_info
[all...]
H A Dvesafb.c21 #include <linux/screen_info.h>
236 if (screen_info.orig_video_isVGA != VIDEO_TYPE_VLFB)
239 vga_compat = (screen_info.capabilities & 2) ? 0 : 1;
240 vesafb_fix.smem_start = screen_info.lfb_base;
241 vesafb_defined.bits_per_pixel = screen_info.lfb_depth;
244 vesafb_defined.xres = screen_info.lfb_width;
245 vesafb_defined.yres = screen_info.lfb_height;
246 vesafb_fix.line_length = screen_info.lfb_linelength;
258 size_total = screen_info.lfb_size * 65536;
278 screen_info
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/loongson/common/
H A Dsetup.c18 #include <linux/screen_info.h>
43 screen_info = (struct screen_info) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dscreen_info.h10 struct screen_info { struct
72 extern struct screen_info screen_info;
74 #define ORIG_X (screen_info.orig_x)
75 #define ORIG_Y (screen_info.orig_y)
76 #define ORIG_VIDEO_MODE (screen_info.orig_video_mode)
77 #define ORIG_VIDEO_COLS (screen_info.orig_video_cols)
78 #define ORIG_VIDEO_EGA_BX (screen_info.orig_video_ega_bx)
79 #define ORIG_VIDEO_LINES (screen_info.orig_video_lines)
80 #define ORIG_VIDEO_ISVGA (screen_info
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/boot/
H A Dvideo-vesa.c178 boot_params.screen_info.red_size = dac_size;
179 boot_params.screen_info.green_size = dac_size;
180 boot_params.screen_info.blue_size = dac_size;
181 boot_params.screen_info.rsvd_size = dac_size;
183 boot_params.screen_info.red_pos = 0;
184 boot_params.screen_info.green_pos = 0;
185 boot_params.screen_info.blue_pos = 0;
186 boot_params.screen_info.rsvd_pos = 0;
201 boot_params.screen_info.vesapm_seg = oreg.es;
202 boot_params.screen_info
[all...]
H A Dvideo.c28 boot_params.screen_info.orig_x = oreg.dl;
29 boot_params.screen_info.orig_y = oreg.dh;
32 boot_params.screen_info.flags |= VIDEO_FLAGS_NOCURSOR;
35 boot_params.screen_info.flags |= VIDEO_FLAGS_NOCURSOR;
49 boot_params.screen_info.orig_video_mode = oreg.al & 0x7f;
50 boot_params.screen_info.orig_video_page = oreg.bh;
72 if (boot_params.screen_info.orig_video_mode == 0x07) {
82 boot_params.screen_info.orig_video_points = font_size;
92 boot_params.screen_info.orig_video_cols = x;
93 boot_params.screen_info
[all...]
H A Dvideo-bios.c52 if (new_mode != boot_params.screen_info.orig_video_mode) {
56 ireg.ax = boot_params.screen_info.orig_video_mode;
69 u8 saved_mode = boot_params.screen_info.orig_video_mode;
H A Dmemory.c117 boot_params.screen_info.ext_mem_k = oreg.ax;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-footbridge/
H A Dcats-hw.c11 #include <linux/screen_info.h>
82 screen_info.orig_video_lines = 25;
83 screen_info.orig_video_points = 16;
84 screen_info.orig_y = 24;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/
H A Ddummycon.c12 #include <linux/screen_info.h>
21 #define DUMMY_COLUMNS screen_info.orig_video_cols
22 #define DUMMY_ROWS screen_info.orig_video_lines
H A Dvgacon.c49 #include <linux/screen_info.h>
379 if (screen_info.orig_video_isVGA == VIDEO_TYPE_VLFB) {
389 /* boot_params.screen_info initialized? */
390 if ((screen_info.orig_video_mode == 0) &&
391 (screen_info.orig_video_lines == 0) &&
392 (screen_info.orig_video_cols == 0))
396 if ((screen_info.orig_video_mode == 0x0D) || /* 320x200/4 */
397 (screen_info.orig_video_mode == 0x0E) || /* 640x200/4 */
398 (screen_info.orig_video_mode == 0x10) || /* 640x350/4 */
399 (screen_info
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-sead3/
H A Dsead3-setup.c25 #include <linux/screen_info.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/boot/compressed/
H A Dmisc.h15 #include <linux/screen_info.h>
H A Dmisc.c187 if (real_mode->screen_info.orig_video_mode == 0 &&
191 x = real_mode->screen_info.orig_x;
192 y = real_mode->screen_info.orig_y;
213 real_mode->screen_info.orig_x = x;
214 real_mode->screen_info.orig_y = y;
317 if (real_mode->screen_info.orig_video_mode == 7) {
325 lines = real_mode->screen_info.orig_video_lines;
326 cols = real_mode->screen_info.orig_video_cols;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/include/asm/
H A Dsetup.h27 #define SCREEN_INFO (*(struct screen_info *) (PARAM+0x200))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/jazz/
H A Dsetup.c16 #include <linux/screen_info.h>
78 screen_info = (struct screen_info) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sibyte/swarm/
H A Dsetup.c30 #include <linux/screen_info.h>
147 screen_info = (struct screen_info) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dbootparam.h5 #include <linux/screen_info.h>
94 struct screen_info screen_info; /* 0x000 */ member in struct:boot_params
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/score/kernel/
H A Dsetup.c31 #include <linux/screen_info.h>
36 struct screen_info screen_info; variable in typeref:struct:screen_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/kernel/
H A Dsetup.c18 #include <linux/screen_info.h>
27 struct screen_info screen_info; variable in typeref:struct:screen_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dearly_printk.c5 #include <linux/screen_info.h>
228 boot_params.screen_info.orig_video_isVGA == 1) {
229 max_xpos = boot_params.screen_info.orig_video_cols;
230 max_ypos = boot_params.screen_info.orig_video_lines;
231 current_ypos = boot_params.screen_info.orig_y;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/sni/
H A Dsetup.c15 #include <linux/screen_info.h>
40 struct screen_info *si = &screen_info;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/kernel/
H A Dsetup.c20 #include <linux/screen_info.h>
564 struct screen_info screen_info = { variable in typeref:struct:screen_info
575 screen_info.orig_x = tag->u.videotext.x;
576 screen_info.orig_y = tag->u.videotext.y;
577 screen_info.orig_video_page = tag->u.videotext.video_page;
578 screen_info.orig_video_mode = tag->u.videotext.video_mode;
579 screen_info.orig_video_cols = tag->u.videotext.video_cols;
580 screen_info.orig_video_ega_bx = tag->u.videotext.video_ega_bx;
581 screen_info
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Dsh_ksyms_64.c18 #include <linux/screen_info.h>

Completed in 337 milliseconds

12