Home
last modified time | relevance | path

Searched +full:480 +full:m (Results 1 – 25 of 99) sorted by relevance

1234

/linux/drivers/ata/
H A Dlibata-pata-timings.c35 { XFER_SW_DMA_0, 120, 0, 0, 0, 480, 480, 50, 960, 0 },
36 { XFER_SW_DMA_1, 90, 0, 0, 0, 240, 240, 30, 480, 0 },
39 { XFER_MW_DMA_0, 60, 0, 0, 0, 215, 215, 20, 480, 0 },
75 struct ata_timing *m, unsigned int what) in ata_timing_merge() argument
78 m->setup = max(a->setup, b->setup); in ata_timing_merge()
80 m->act8b = max(a->act8b, b->act8b); in ata_timing_merge()
82 m->rec8b = max(a->rec8b, b->rec8b); in ata_timing_merge()
84 m->cyc8b = max(a->cyc8b, b->cyc8b); in ata_timing_merge()
86 m->active = max(a->active, b->active); in ata_timing_merge()
88 m->recover = max(a->recover, b->recover); in ata_timing_merge()
[all …]
/linux/Documentation/fb/
H A Dmodedb.rst23 <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m][eDd]
31 - NSTC: 480i output, with the CCIR System-M TV mode and NTSC color encoding
32 - NTSC-J: 480i output, with the CCIR System-M TV mode, the NTSC color
35 - PAL-M: 480i output, with the CCIR System-M TV mode and PAL color encoding
37 If 'M' is specified in the mode_option argument (after <yres> and before
41 If 'i' is specified, calculate for an interlaced mode. And if 'm' is
45 Sample usage: 1024x768M@60m - CVT timing with margins
77 "PAL-M", "PAL-N", or "SECAM".
125 <pix>M<a>[-R]
128 M = always present
H A Dintel810.rst78 (default = 480)
85 (default = 480)
158 m. "sync"
/linux/drivers/gpu/drm/tests/
H A Ddrm_cmdline_parser_test.c122 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res()
144 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_vesa()
166 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_vesa_rblank()
188 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_rblank()
210 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_bpp()
233 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_refresh()
256 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_bpp_refresh()
280 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_bpp_refresh_interlaced()
298 const char *cmdline = "720x480-24@60m"; in drm_test_cmdline_res_bpp_refresh_margins()
304 KUNIT_EXPECT_EQ(test, mode.yres, 480); in drm_test_cmdline_res_bpp_refresh_margins()
[all …]
/linux/drivers/gpu/drm/panel/
H A Dpanel-raspberrypi-touchscreen.c207 .vdisplay = 480,
208 .vsync_start = 480 + 7,
209 .vsync_end = 480 + 7 + 2,
210 .vtotal = 480 + 7 + 2 + 21,
324 const struct drm_display_mode *m = &rpi_touchscreen_modes[i]; in rpi_touchscreen_get_modes() local
327 mode = drm_mode_duplicate(connector->dev, m); in rpi_touchscreen_get_modes()
330 m->hdisplay, m->vdisplay, in rpi_touchscreen_get_modes()
331 drm_mode_vrefresh(m)); in rpi_touchscreen_get_modes()
/linux/drivers/media/usb/gspca/gl860/
H A Dgl860.c224 { 640, 480, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
226 .sizeimage = 640 * 480,
251 { 640, 480, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
253 .sizeimage = 640 * 480,
278 { 640, 480, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
280 .sizeimage = 640 * 480,
299 { 640, 480, V4L2_PIX_FMT_SGBRG8, V4L2_FIELD_NONE,
301 .sizeimage = 640 * 480,
717 gspca_dbg(gspca_dev, D_PROBE, "05e3:f191 sensor MI1320 (1.3M)\n"); in gl860_guess_sensor()
719 gspca_dbg(gspca_dev, D_PROBE, "05e3:0503 sensor MI2020 (2.0M)\n"); in gl860_guess_sensor()
[all …]
/linux/drivers/phy/hisilicon/
H A DKconfig14 To compile this driver as a module, choose M here.
24 To compile this driver as a module, choose M here.
34 To compile this driver as a module, choose M here.
44 To compile this driver as a module, choose M here.
62 USB 1.5Mb/s, USB 12Mb/s, USB 480Mb/s speeds. It supports one
/linux/drivers/video/fbdev/
H A Dvalkyriefb.h91 /* I'm not sure which mode this is (16 or 17), so I'm defining it as 17,
96 * I was going to use 12, 31, 3, which I found by myself, but instead I'm
165 640, 480
173 640, 480
H A Dasiliantfb.c137 unsigned m = n * ratio + (n * remainder) / Fref; in asiliant_calc_dclk2() local
139 /* 3 <= m <= 257 */ in asiliant_calc_dclk2()
140 if (m >= 3 && m <= 257) { in asiliant_calc_dclk2()
141 unsigned new_error = Ftarget * n >= Fref * m ? in asiliant_calc_dclk2()
142 ((Ftarget * n) - (Fref * m)) : ((Fref * m) - (Ftarget * n)); in asiliant_calc_dclk2()
145 best_m = m; in asiliant_calc_dclk2()
149 /* But if VLD = 4, then 4m <= 1028 */ in asiliant_calc_dclk2()
150 else if (m <= 1028) { in asiliant_calc_dclk2()
151 /* remember there are still only 8-bits of precision in m, so in asiliant_calc_dclk2()
153 unsigned new_error = Ftarget * n >= Fref * (m & ~3) ? in asiliant_calc_dclk2()
[all …]
/linux/drivers/staging/fbtft/
H A Dfb_ra8875.c24 struct spi_message m; in write_spi() local
35 spi_message_init(&m); in write_spi()
36 spi_message_add_tail(&t, &m); in write_spi()
37 return spi_sync(par->spi, &m); in write_spi()
70 } else if ((par->info->var.xres == 480) && in init_display()
96 (par->info->var.yres == 480)) { in init_display()
121 (par->info->var.yres == 480)) { in init_display()
/linux/include/media/i2c/
H A Dtvp514x.h13 * Karicheri Muralidharan <m-karicheri2@ti.com>
28 #define NTSC_NUM_ACTIVE_LINES (480)
/linux/Documentation/userspace-api/media/v4l/
H A Dv4l2grab.c.rst79 fmt.fmt.pix.height = 480;
87 if ((fmt.fmt.pix.width != 640) || (fmt.fmt.pix.height != 480))
110 fd, buf.m.offset);
H A Dmt2110t.svg16 <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
17 …<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-28…
18 …<glyph unicode="x" horiz-adv-x="1006" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510…
19 …lyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 …
20 …<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371…
21 …<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L …
22 …<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 3…
23 …<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C …
24M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L …
25M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,36…
[all …]
/linux/drivers/gpu/drm/
H A Ddrm_edid.c180 EDID_QUIRK('M', 'A', 'X', 1516, BIT(EDID_QUIRK_PREFER_LARGE_60)),
181 EDID_QUIRK('M', 'A', 'X', 0x77e, BIT(EDID_QUIRK_PREFER_LARGE_60)),
189 EDID_QUIRK('F', 'C', 'M', 13600, BIT(EDID_QUIRK_PREFER_LARGE_75) |
193 EDID_QUIRK('G', 'S', 'M', 0x5bbf, BIT(EDID_QUIRK_CAP_DSC_15BPP)),
196 EDID_QUIRK('G', 'S', 'M', 0x5b9a, BIT(EDID_QUIRK_CAP_DSC_15BPP)),
206 EDID_QUIRK('S', 'A', 'M', 541, BIT(EDID_QUIRK_DETAILED_SYNC_PP)),
208 EDID_QUIRK('S', 'A', 'M', 596, BIT(EDID_QUIRK_PREFER_LARGE_60)),
209 EDID_QUIRK('S', 'A', 'M', 638, BIT(EDID_QUIRK_PREFER_LARGE_60)),
218 EDID_QUIRK('M', 'E', 'D', 0x7b8, BIT(EDID_QUIRK_PREFER_LARGE_75)),
307 752, 800, 0, 480, 490, 492, 525, 0,
[all …]
/linux/drivers/gpu/drm/nouveau/dispnv04/
H A Dtvmodesnv17.c35 [TV_NORM_PAL_M] = "PAL-M",
38 [TV_NORM_NTSC_M] = "NTSC-M",
64 .tv_enc_mode = { 720, 480, 59940, {
100 .tv_enc_mode = { 720, 480, 59940, {
112 .tv_enc_mode = { 720, 480, 59940, {
124 .tv_enc_mode = { 720, 480, 59940, {
151 720, 735, 743, 858, 0, 480, 490, 494, 525, 0,
453 640, 672, 768, 880, 0, 480, 480, 492, 525, 0,
456 720, 752, 872, 960, 0, 480, 480, 493, 525, 0,
H A Dtvnv17.c39 "\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,\n"
244 { 640, 480 }, in nv17_tv_get_hd_modes()
245 { 720, 480 }, in nv17_tv_get_hd_modes()
497 } else if (tv_norm->tv_enc_mode.vdisplay == 480) { in nv17_tv_mode_set()
514 } else if (tv_norm->tv_enc_mode.vdisplay == 480) { in nv17_tv_mode_set()
/linux/Documentation/admin-guide/
H A Dsvga.rst138 0x0f05 VGA 80x30 (480 scans, 16-point font)
139 0x0f06 VGA 80x34 (480 scans, 14-point font)
140 0x0f07 VGA 80x60 (480 scans, 8-point font)
184 If you start Linux from M$-DOS, you might also use some DOS tools for
232 - Added 480-scanline modes (especially useful for notebooks,
/linux/arch/mips/dec/prom/
H A Dmemory.c5 * Copyright (C) 1998 Harald Koerfgen, Frieder Streffer and Paul M. Antoine
42 * Assume less than 480MB of RAM, as this is max for 5000/2xx in pmax_setup_memory_region()
/linux/drivers/gpu/drm/tiny/
H A Darcpgu.c76 #define YRES_DEF 480
158 struct drm_display_mode *m = &arcpgu->pipe.crtc.state->adjusted_mode; in arc_pgu_mode_set() local
162 ENCODE_PGU_XY(m->crtc_htotal, m->crtc_vtotal)); in arc_pgu_mode_set()
165 ENCODE_PGU_XY(m->crtc_hsync_start - m->crtc_hdisplay, in arc_pgu_mode_set()
166 m->crtc_hsync_end - m->crtc_hdisplay)); in arc_pgu_mode_set()
169 ENCODE_PGU_XY(m->crtc_vsync_start - m->crtc_vdisplay, in arc_pgu_mode_set()
170 m->crtc_vsync_end - m->crtc_vdisplay)); in arc_pgu_mode_set()
173 ENCODE_PGU_XY(m->crtc_hblank_end - m->crtc_hblank_start, in arc_pgu_mode_set()
174 m->crtc_vblank_end - m->crtc_vblank_start)); in arc_pgu_mode_set()
178 if (m->flags & DRM_MODE_FLAG_PVSYNC) in arc_pgu_mode_set()
[all …]
/linux/Documentation/hwmon/
H A Dsmsc47b397.rst20 - Mark M. Hoffman <mhoffman@lightlink.com>
28 by Mark M. Hoffman <mhoffman@lightlink.com>.
58 MOV DX,480H
/linux/arch/arm/boot/dts/samsung/
H A Ds5pv210-goni.dts7 * Mateusz Krawczuk <m.krawczuk@partner.samsung.com>
427 /* 480x800@55Hz */
429 hactive = <480>;
H A Ds5pv210-smdkv210.dts7 * Mateusz Krawczuk <m.krawczuk@partner.samsung.com>
219 vactive = <480>;
/linux/drivers/video/fbdev/sis/
H A Dinit.c6 * SiS 315/550/[M]650/651/[M]661[FGM]X/[M]74x[GX]/330/[M]76x[GX],
368 if(VDisplay == 480) ModeIndex = ModeIndex_640x480[Depth]; in SiS_GetModeID()
372 if(VDisplay == 480) ModeIndex = ModeIndex_720x480[Depth]; in SiS_GetModeID()
380 else if(VDisplay == 480) ModeIndex = ModeIndex_800x480[Depth]; in SiS_GetModeID()
383 if(VDisplay == 480) ModeIndex = ModeIndex_848x480[Depth]; in SiS_GetModeID()
386 if(VDisplay == 480) ModeIndex = ModeIndex_856x480[Depth]; in SiS_GetModeID()
520 if(VDisplay == 480) ModeIndex = ModeIndex_640x480[Depth]; in SiS_GetModeID_LCD()
531 if(VDisplay == 480) ModeIndex = ModeIndex_848x480[Depth]; in SiS_GetModeID_LCD()
536 if(VDisplay == 480) ModeIndex = ModeIndex_856x480[Depth]; in SiS_GetModeID_LCD()
603 if(VDisplay == 480) ModeIndex = ModeIndex_640x480[Depth]; in SiS_GetModeID_LCD()
[all …]
/linux/drivers/gpu/drm/meson/
H A Dmeson_viu.c82 int *m, bool csc_on) in meson_viu_set_g12a_osd1_matrix() argument
85 writel(((m[0] & 0xfff) << 16) | (m[1] & 0xfff), in meson_viu_set_g12a_osd1_matrix()
87 writel(m[2] & 0xfff, in meson_viu_set_g12a_osd1_matrix()
89 writel(((m[3] & 0x1fff) << 16) | (m[4] & 0x1fff), in meson_viu_set_g12a_osd1_matrix()
91 writel(((m[5] & 0x1fff) << 16) | (m[6] & 0x1fff), in meson_viu_set_g12a_osd1_matrix()
93 writel(((m[7] & 0x1fff) << 16) | (m[8] & 0x1fff), in meson_viu_set_g12a_osd1_matrix()
95 writel(((m[9] & 0x1fff) << 16) | (m[10] & 0x1fff), in meson_viu_set_g12a_osd1_matrix()
97 writel((m[11] & 0x1fff), in meson_viu_set_g12a_osd1_matrix()
100 writel(((m[18] & 0xfff) << 16) | (m[19] & 0xfff), in meson_viu_set_g12a_osd1_matrix()
102 writel(m[20] & 0xfff, in meson_viu_set_g12a_osd1_matrix()
[all …]
/linux/drivers/media/usb/stk1160/
H A Dstk1160-v4l.c8 * Based on Easycap driver by R.M. Thomas
9 * Copyright (C) 2010 R.M. Thomas
378 base_height = (dev->norm & V4L2_STD_525_60) ? 480 : 576; in stk1160_try_fmt()
532 dev->height = (norm & V4L2_STD_525_60) ? 480 : 576; in vidioc_s_std()
821 dev->height = 480; in stk1160_video_register()

1234