diff options
author | Timur Tabi <timur@freescale.com> | 2011-04-11 14:18:22 -0500 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2011-04-28 21:31:16 +0200 |
commit | ba8e76bd49a0575a2442025507882b499856af2b (patch) | |
tree | 47b31be667a80b5149065e8d7d1f2d9040a4c628 /arch/powerpc/cpu/mpc512x/diu.c | |
parent | a5dbdc81ea70daa04e49eb0004a0441131a029c6 (diff) | |
download | blackbird-obmc-uboot-ba8e76bd49a0575a2442025507882b499856af2b.tar.gz blackbird-obmc-uboot-ba8e76bd49a0575a2442025507882b499856af2b.zip |
powerpc: use 'video-mode' environment variable to configure DIU
Use the 'video-mode' environment variable (for Freescale chips that have a
DIU display controller) to designate the full video configuration. Previously,
the DIU driver used the 'monitor' variable, and it was used only to determine
the output video port.
The old definition of the "monitor" environment variable only determines
which video port to use for output. This variable was set to a number (0,
1, or sometimes 2) to specify a DVI, LVDS, or Dual-LVDS port. The
resolution was hard-coded into board-specific code. The Linux command-line
arguments needed to be hard-coded to the proper video definition string.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'arch/powerpc/cpu/mpc512x/diu.c')
-rw-r--r-- | arch/powerpc/cpu/mpc512x/diu.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/arch/powerpc/cpu/mpc512x/diu.c b/arch/powerpc/cpu/mpc512x/diu.c index c4108af336..9dc1e48256 100644 --- a/arch/powerpc/cpu/mpc512x/diu.c +++ b/arch/powerpc/cpu/mpc512x/diu.c @@ -51,20 +51,10 @@ void diu_set_pixel_clock(unsigned int pixclock) debug("DIU: Modified value of CLKDVDR = 0x%08x\n", in_be32(clkdvdr)); } -int platform_diu_init(unsigned int *xres, unsigned int *yres) +int platform_diu_init(unsigned int xres, unsigned int yres, const char *port) { - unsigned int pixel_format; - -#if defined(CONFIG_VIDEO_XRES) & defined(CONFIG_VIDEO_YRES) - *xres = CONFIG_VIDEO_XRES; - *yres = CONFIG_VIDEO_YRES; -#else - *xres = 1024; - *yres = 768; -#endif - pixel_format = 0x88883316; + unsigned int pixel_format = 0x88883316; debug("mpc5121_diu_init\n"); - - return fsl_diu_init(*xres, pixel_format, 0); + return fsl_diu_init(xres, pixel_format, 0); } |