linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support
@ 2012-12-19 12:33 Javier Martinez Canillas
  2012-12-19 12:33 ` [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator Javier Martinez Canillas
  2012-12-19 15:26 ` [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Tomi Valkeinen
  0 siblings, 2 replies; 6+ messages in thread
From: Javier Martinez Canillas @ 2012-12-19 12:33 UTC (permalink / raw)
  To: linux-arm-kernel

Many OMAP3 based boards such as Beagle, Overo and IGEP use
the TFP410 DPI-to-DVI chip. So, it's good to have it built
as a module by default on OMAP2+ config.

Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index a1dc5c0..da530a0 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -146,6 +146,7 @@ CONFIG_OMAP2_DSS_SDI=y
 CONFIG_OMAP2_DSS_DSI=y
 CONFIG_FB_OMAP2=m
 CONFIG_PANEL_GENERIC_DPI=m
+CONFIG_PANEL_TFP410=m
 CONFIG_PANEL_SHARP_LS037V7DW01=m
 CONFIG_PANEL_NEC_NL8048HL11_01B=m
 CONFIG_PANEL_TAAL=m
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator
  2012-12-19 12:33 [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Javier Martinez Canillas
@ 2012-12-19 12:33 ` Javier Martinez Canillas
  2013-01-21 22:27   ` Javier Martinez Canillas
  2012-12-19 15:26 ` [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Tomi Valkeinen
  1 sibling, 1 reply; 6+ messages in thread
From: Javier Martinez Canillas @ 2012-12-19 12:33 UTC (permalink / raw)
  To: linux-arm-kernel

The OMAP framebuffer driver now uses the standard dma allocator
instead of the (now removed) omap specific vram allocator.

Enable the Contiguous Memory Allocator by default to allow large
dma memory buffers allocation.

Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
 arch/arm/configs/omap2plus_defconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index da530a0..dc4789e 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -64,6 +64,7 @@ CONFIG_MAC80211=m
 CONFIG_MAC80211_RC_PID=y
 CONFIG_MAC80211_RC_DEFAULT_PID=y
 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+CONFIG_CMA=y
 CONFIG_CONNECTOR=y
 CONFIG_MTD=y
 CONFIG_MTD_CMDLINE_PARTS=y
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support
  2012-12-19 12:33 [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Javier Martinez Canillas
  2012-12-19 12:33 ` [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator Javier Martinez Canillas
@ 2012-12-19 15:26 ` Tomi Valkeinen
  2013-01-10  9:28   ` Javier Martinez Canillas
  1 sibling, 1 reply; 6+ messages in thread
From: Tomi Valkeinen @ 2012-12-19 15:26 UTC (permalink / raw)
  To: linux-arm-kernel

On 2012-12-19 14:33, Javier Martinez Canillas wrote:
> Many OMAP3 based boards such as Beagle, Overo and IGEP use
> the TFP410 DPI-to-DVI chip. So, it's good to have it built
> as a module by default on OMAP2+ config.

Also on OMAP4 boards, like Panda.

> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> ---
>  arch/arm/configs/omap2plus_defconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> index a1dc5c0..da530a0 100644
> --- a/arch/arm/configs/omap2plus_defconfig
> +++ b/arch/arm/configs/omap2plus_defconfig
> @@ -146,6 +146,7 @@ CONFIG_OMAP2_DSS_SDI=y
>  CONFIG_OMAP2_DSS_DSI=y
>  CONFIG_FB_OMAP2=m
>  CONFIG_PANEL_GENERIC_DPI=m
> +CONFIG_PANEL_TFP410=m
>  CONFIG_PANEL_SHARP_LS037V7DW01=m
>  CONFIG_PANEL_NEC_NL8048HL11_01B=m
>  CONFIG_PANEL_TAAL=m
> 

For both patches:

Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>

 Tomi


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 899 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20121219/50297177/attachment.sig>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support
  2012-12-19 15:26 ` [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Tomi Valkeinen
@ 2013-01-10  9:28   ` Javier Martinez Canillas
  2013-02-01 18:35     ` Tony Lindgren
  0 siblings, 1 reply; 6+ messages in thread
From: Javier Martinez Canillas @ 2013-01-10  9:28 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 19, 2012 at 4:26 PM, Tomi Valkeinen <tomi.valkeinen@ti.com> wrote:
> On 2012-12-19 14:33, Javier Martinez Canillas wrote:
>> Many OMAP3 based boards such as Beagle, Overo and IGEP use
>> the TFP410 DPI-to-DVI chip. So, it's good to have it built
>> as a module by default on OMAP2+ config.
>
> Also on OMAP4 boards, like Panda.
>
>> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>> ---
>>  arch/arm/configs/omap2plus_defconfig |    1 +
>>  1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
>> index a1dc5c0..da530a0 100644
>> --- a/arch/arm/configs/omap2plus_defconfig
>> +++ b/arch/arm/configs/omap2plus_defconfig
>> @@ -146,6 +146,7 @@ CONFIG_OMAP2_DSS_SDI=y
>>  CONFIG_OMAP2_DSS_DSI=y
>>  CONFIG_FB_OMAP2=m
>>  CONFIG_PANEL_GENERIC_DPI=m
>> +CONFIG_PANEL_TFP410=m
>>  CONFIG_PANEL_SHARP_LS037V7DW01=m
>>  CONFIG_PANEL_NEC_NL8048HL11_01B=m
>>  CONFIG_PANEL_TAAL=m
>>
>
> For both patches:
>
> Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
>
>  Tomi
>

Hello Tony,

Any comments on these?

Thanks a lot and best regards,
Javier

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator
  2012-12-19 12:33 ` [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator Javier Martinez Canillas
@ 2013-01-21 22:27   ` Javier Martinez Canillas
  0 siblings, 0 replies; 6+ messages in thread
From: Javier Martinez Canillas @ 2013-01-21 22:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 19, 2012 at 1:33 PM, Javier Martinez Canillas
<javier.martinez@collabora.co.uk> wrote:
> The OMAP framebuffer driver now uses the standard dma allocator
> instead of the (now removed) omap specific vram allocator.
>
> Enable the Contiguous Memory Allocator by default to allow large
> dma memory buffers allocation.
>
> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> ---
>  arch/arm/configs/omap2plus_defconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> index da530a0..dc4789e 100644
> --- a/arch/arm/configs/omap2plus_defconfig
> +++ b/arch/arm/configs/omap2plus_defconfig
> @@ -64,6 +64,7 @@ CONFIG_MAC80211=m
>  CONFIG_MAC80211_RC_PID=y
>  CONFIG_MAC80211_RC_DEFAULT_PID=y
>  CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
> +CONFIG_CMA=y
>  CONFIG_CONNECTOR=y
>  CONFIG_MTD=y
>  CONFIG_MTD_CMDLINE_PARTS=y
> --

Hi Tony,

Are you considering adding this patch and

ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support [1]

to the 3.8-rc series or 3.9?

These patches have been acked by Tomi and are necessary to have
framebuffer video working on many OMAP3 based boards.

Thanks a lot and best regards,
Javier

[1]: https://patchwork.kernel.org/patch/1895451/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support
  2013-01-10  9:28   ` Javier Martinez Canillas
@ 2013-02-01 18:35     ` Tony Lindgren
  0 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2013-02-01 18:35 UTC (permalink / raw)
  To: linux-arm-kernel

* Javier Martinez Canillas <javier@dowhile0.org> [130110 01:31]:
> On Wed, Dec 19, 2012 at 4:26 PM, Tomi Valkeinen <tomi.valkeinen@ti.com> wrote:
> > On 2012-12-19 14:33, Javier Martinez Canillas wrote:
> >> Many OMAP3 based boards such as Beagle, Overo and IGEP use
> >> the TFP410 DPI-to-DVI chip. So, it's good to have it built
> >> as a module by default on OMAP2+ config.
> >
> > Also on OMAP4 boards, like Panda.
> >
> >> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> >> ---
> >>  arch/arm/configs/omap2plus_defconfig |    1 +
> >>  1 files changed, 1 insertions(+), 0 deletions(-)
> >>
> >> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> >> index a1dc5c0..da530a0 100644
> >> --- a/arch/arm/configs/omap2plus_defconfig
> >> +++ b/arch/arm/configs/omap2plus_defconfig
> >> @@ -146,6 +146,7 @@ CONFIG_OMAP2_DSS_SDI=y
> >>  CONFIG_OMAP2_DSS_DSI=y
> >>  CONFIG_FB_OMAP2=m
> >>  CONFIG_PANEL_GENERIC_DPI=m
> >> +CONFIG_PANEL_TFP410=m
> >>  CONFIG_PANEL_SHARP_LS037V7DW01=m
> >>  CONFIG_PANEL_NEC_NL8048HL11_01B=m
> >>  CONFIG_PANEL_TAAL=m
> >>
> >
> > For both patches:
> >
> > Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> >
> >  Tomi
> >
> 
> Hello Tony,
> 
> Any comments on these?

No comments, applying into omap-for-v3.9/board thanks.

Tony

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-02-01 18:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-19 12:33 [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Javier Martinez Canillas
2012-12-19 12:33 ` [PATCH 2/2] ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator Javier Martinez Canillas
2013-01-21 22:27   ` Javier Martinez Canillas
2012-12-19 15:26 ` [PATCH 1/2] ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support Tomi Valkeinen
2013-01-10  9:28   ` Javier Martinez Canillas
2013-02-01 18:35     ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).