mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-07-20 15:44:47 +00:00
This is i.MX BSP 5.0.0 release ported to 2.6.31 Signed-off-by: Rob Herring <r.herring@freescale.com> Signed-off-by: Alan Tull <r80115@freescale.com> Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com>
70 lines
1.6 KiB
C
70 lines
1.6 KiB
C
/*
|
|
* Copyright 2007-2009 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
*/
|
|
|
|
/*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/mxcfb.h>
|
|
|
|
struct fb_videomode mxcfb_modedb[] = {
|
|
{
|
|
/* 240x320 @ 60 Hz */
|
|
"Sharp-QVGA", 60, 240, 320, 185925, 9, 16, 7, 9, 1, 1,
|
|
FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE |
|
|
FB_SYNC_DATA_INVERT | FB_SYNC_CLK_IDLE_EN,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* 240x33 @ 60 Hz */
|
|
"Sharp-CLI", 60, 240, 33, 185925, 9, 16, 7, 9 + 287, 1, 1,
|
|
FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE |
|
|
FB_SYNC_DATA_INVERT | FB_SYNC_CLK_IDLE_EN,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* 640x480 @ 60 Hz */
|
|
"NEC-VGA", 60, 640, 480, 38255, 144, 0, 34, 40, 1, 1,
|
|
FB_SYNC_VERT_HIGH_ACT,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* 640x480 @ 60 Hz */
|
|
"CPT-VGA", 60, 640, 480, 39683, 45, 114, 33, 11, 1, 1,
|
|
FB_SYNC_CLK_LAT_FALL,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* NTSC TV output */
|
|
"TV-NTSC", 60, 640, 480, 37538,
|
|
38, 858 - 640 - 38 - 3,
|
|
36, 518 - 480 - 36 - 1,
|
|
3, 1,
|
|
0,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* PAL TV output */
|
|
"TV-PAL", 50, 640, 480, 37538,
|
|
38, 960 - 640 - 38 - 32,
|
|
32, 555 - 480 - 32 - 3,
|
|
32, 3,
|
|
0,
|
|
FB_VMODE_NONINTERLACED,
|
|
0,},
|
|
{
|
|
/* TV output VGA mode, 640x480 @ 65 Hz */
|
|
"TV-VGA", 60, 640, 480, 40574, 35, 45, 9, 1, 46, 5,
|
|
0, FB_VMODE_NONINTERLACED, 0,
|
|
},
|
|
};
|
|
|
|
int mxcfb_modedb_sz = ARRAY_SIZE(mxcfb_modedb);
|