From: Tom <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] TI:OMAP: [PATCH 6/7] Enable DSS driver for Beagle
Date: Sat, 23 Jan 2010 18:24:19 -0600 [thread overview]
Message-ID: <4B5B9333.7050505@windriver.com> (raw)
In-Reply-To: <a8ca84ad1001180559reaee6echb01f3ee62d57f9c1@mail.gmail.com>
Khasim Syed Mohammed wrote:
> From fe824eb530338182503dd75d466374ac2e96c063 Mon Sep 17 00:00:00 2001
> From: Syed Mohammed Khasim <khasim@ti.com>
> Date: Mon, 18 Jan 2010 18:35:40 +0530
> Subject: [PATCH] Enable DSS driver for Beagle
>
> Configures DSS to display color bar on Svideo
> Configures DSS to display background color on DVID
>
> Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
> ---
> board/ti/beagle/beagle.c | 12 ++++++
> board/ti/beagle/beagle.h | 75 ++++++++++++++++++++++++++++++++++++++++
> include/configs/omap3_beagle.h | 1 +
> 3 files changed, 88 insertions(+), 0 deletions(-)
>
> diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c
> index 23985ea..2bf0430 100644
> --- a/board/ti/beagle/beagle.c
> +++ b/board/ti/beagle/beagle.c
> @@ -114,6 +114,16 @@ void beagle_identify(void)
> }
>
> /*
> + * Configure DSS to display background color on DVID
> + * Configure VENC to display color bar on S-Video
> + */
> +void display_init(void)
This should be static
> +{
> + omap3_dss_venc_config(&venc_config_std_tv, VENC_HEIGHT, VENC_WIDTH);
> + omap3_dss_panel_config(&dvid_cfg);
> +}
> +
> +/*
> * Routine: misc_init_r
> * Description: Configure board specific parts
> */
> @@ -124,6 +134,7 @@ int misc_init_r(void)
>
> twl4030_power_init();
> twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
> + display_init();
Should be if-defed to CONFIG_VIDEO_OMAP3
>
> /* Configure GPIOs to output */
> writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe);
> @@ -139,6 +150,7 @@ int misc_init_r(void)
> beagle_identify();
>
> dieid_num_r();
> + omap3_dss_enable();
Should be if-defed to CONFIG_VIDEO_OMAP3
>
> return 0;
> }
> diff --git a/board/ti/beagle/beagle.h b/board/ti/beagle/beagle.h
> index d1d5d27..3605427 100644
> --- a/board/ti/beagle/beagle.h
> +++ b/board/ti/beagle/beagle.h
> @@ -23,6 +23,8 @@
> #ifndef _BEAGLE_H_
> #define _BEAGLE_H_
>
> +#include <asm/arch/dss.h>
> +
> const omap3_sysinfo sysinfo = {
> DDR_STACKED,
> "OMAP3 Beagle board",
> @@ -385,4 +387,77 @@ const omap3_sysinfo sysinfo = {
> MUX_VAL(CP(UART2_RTS), (IDIS | PTD | DIS | M0)) /*UART2_RTS*/\
> MUX_VAL(CP(UART2_TX), (IDIS | PTD | DIS | M0)) /*UART2_TX*/
>
This section is dss.
This should move to dss.c or dss.h
> +/*
> + * Display Configuration
> + */
> +
> +#define DVI_BEAGLE_ORANGE_COL 0x00FF8000
> +#define VENC_HEIGHT 0x00ef
> +#define VENC_WIDTH 0x027f
> +
> +/*
> + * Configure VENC in DSS for Beagle to generate Color Bar
> + *
> + * Kindly refer to OMAP TRM for definition of these values.
> + */
No good enough.
If you are going to refer people to TRM.
Give them some idea how to find the data.
The name of TRM, the section and maybe quote to help them find
the location..
15.5.8.4 Video Encoder Register Settings
For video encoder programming, see Table 15-67.
This table lists the register values to use in standard
applications. These values are validated programming values only
for the TV display support (NTSC 601 and PAL 601 standards).
Table 15-67. Video Encoder Register Programming Values
Register Name NTSC 601 PAL 601
VENC_F_CONTROL 0x00000000 0x00000000
VENC_VIDOUT_CTRL 0x00000001 0x00000001
VENC_SYNC_CTRL 0x00008040 0x00000040
VENC_LLEN 0x00000359 0x0000035F
VENC_FLENS
You need to qualify std_tv as either ntsc or pal.
Include both setting.
If it is impossible to test PAL, make a note with a big warning
> +static const struct venc_regs venc_config_std_tv = {
> + .status = 0x0000001B,
> + .f_control = 0x00000040,
> + .vidout_ctrl = 0x00000000,
?? not 1
> + .sync_ctrl = 0x00008000,
?? not 8040 or 40
> + .llen = 0x00008359,
?? not 359 or 35F
Likely you are using a different TRM than I am.
Please check if there isn't some dependency on dss silicon
revision.
Tom
next prev parent reply other threads:[~2010-01-24 0:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-18 13:59 [U-Boot] TI:OMAP: [PATCH 6/7] Enable DSS driver for Beagle Khasim Syed Mohammed
2010-01-24 0:24 ` Tom [this message]
[not found] ` <a8ca84ad1001250556s2b9ebf49ka7be90a6d49369ef@mail.gmail.com>
2010-01-25 14:05 ` [U-Boot] Fwd: " Khasim Syed Mohammed
2010-01-25 14:56 ` Tom
-- strict thread matches above, loose matches on Subject: below --
2010-01-12 19:06 [U-Boot] " Khasim Syed Mohammed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B5B9333.7050505@windriver.com \
--to=tom.rix@windriver.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox