public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 16/18] video: dcu: Add Sii9022A HDMI Transmitter support
Date: Thu, 14 Aug 2014 10:17:35 -0700	[thread overview]
Message-ID: <53ECEF2F.2060603@freescale.com> (raw)
In-Reply-To: <1407998707-9632-17-git-send-email-b18965@freescale.com>

On 08/13/2014 11:45 PM, Alison Wang wrote:
> On LS1021ATWR, Silicon's Sii9022A HDMI Transmitter
> is used. This patch adds the common setting for this
> chip.
> 
> Signed-off-by: Alison Wang <alison.wang@freescale.com>
> ---
> Change log:
>  v4: Add commit messages.
>  v3: New file.
> 
>  board/freescale/common/Makefile       |   2 +
>  board/freescale/common/dcu_sii9022a.c | 153 ++++++++++++++++++++++++++++++++++
>  board/freescale/common/dcu_sii9022a.h |  13 +++
>  3 files changed, 168 insertions(+)
>  create mode 100644 board/freescale/common/dcu_sii9022a.c
>  create mode 100644 board/freescale/common/dcu_sii9022a.h

Shouldn't this driver stay under driver/video? It is for the HDMI transmitter,
not Freescale board specific, is it?

> 
> diff --git a/board/freescale/common/Makefile b/board/freescale/common/Makefile
> index 22b57cc..808ddd0 100644
> --- a/board/freescale/common/Makefile
> +++ b/board/freescale/common/Makefile
> @@ -34,6 +34,8 @@ ifndef CONFIG_RAMBOOT_PBL
>  obj-$(CONFIG_FSL_FIXED_MMC_LOCATION)	+= sdhc_boot.o
>  endif
>  
> +obj-$(CONFIG_FSL_DCU_SII9022A)    += dcu_sii9022a.o
> +
>  obj-$(CONFIG_MPC8541CDS)	+= cds_pci_ft.o
>  obj-$(CONFIG_MPC8548CDS)	+= cds_pci_ft.o
>  obj-$(CONFIG_MPC8555CDS)	+= cds_pci_ft.o
> diff --git a/board/freescale/common/dcu_sii9022a.c b/board/freescale/common/dcu_sii9022a.c
> new file mode 100644
> index 0000000..2da627e
> --- /dev/null
> +++ b/board/freescale/common/dcu_sii9022a.c
> @@ -0,0 +1,153 @@
> +/*
> + * Copyright 2014 Freescale Semiconductor, Inc.
> + *
> + * SPDX-License-Identifier:	GPL-2.0+
> + */
> +
> +#include <asm/io.h>
> +#include <common.h>
> +#include <fsl_dcu_fb.h>
>
I think you put the patches in wrong order. DCU driver has not been added before
this patch.

York

  reply	other threads:[~2014-08-14 17:17 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-14  6:44 [U-Boot] [PATCH v4 0/18] arm: ls102xa: Add Freescale LS102xA SoC and LS1021AQDS/TWR board support Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 01/18] arm: ls102xa: Add Freescale LS102xA SoC support Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 02/18] ls102xa: i2c: Add i2c support for LS102xA Alison Wang
2014-08-14 17:04   ` York Sun
2014-08-15 14:33     ` AlisonWang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 03/18] net: Merge asm/fsl_enet.h into fsl_mdio.h Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 04/18] net: mdio: Add private MDIO read/write function Alison Wang
2014-08-14 16:57   ` York Sun
2014-08-15 14:29     ` AlisonWang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 05/18] net: mdio: Use mb() to be compatible for both ARM and PowerPC Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 06/18] ls102xa: etsec: Add etsec support for LS102xA Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 07/18] ls102xa: esdhc: Add esdhc " Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 08/18] driver/ddr/freescale: Add support of accumulate ECC Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 09/18] driver/ddr/freescale: Fix DDR3 driver for ARM Alison Wang
2014-08-14  6:44 ` [U-Boot] [PATCH v4 10/18] driver/ddr/fsl: Add support of overriding chip select write leveling Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 11/18] arm: ls102xa: Add basic support for LS1021AQDS board Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 12/18] arm: ls102xa: Add basic support for LS1021ATWR board Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 13/18] net: tsec: Remove tx snooping support from LS1 Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 14/18] serial: lpuart: add 32-bit registers lpuart support Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 15/18] arm: ls102xa: Add LETECH support for LS1021AQDS/TWR board Alison Wang
2014-08-14 17:19   ` York Sun
2014-08-15 14:44     ` AlisonWang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 16/18] video: dcu: Add Sii9022A HDMI Transmitter support Alison Wang
2014-08-14 17:17   ` York Sun [this message]
2014-08-15 14:42     ` AlisonWang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 17/18] video: dcu: Add DCU driver support Alison Wang
2014-08-14  6:45 ` [U-Boot] [PATCH v4 18/18] ls102xa: dcu: Add platform support for DCU on LS1021ATWR board Alison Wang

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=53ECEF2F.2060603@freescale.com \
    --to=yorksun@freescale.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