Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1530369 > unrolled thread
| Started by | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| First post | 2016-11-25 16:50 +0100 |
| Last post | 2016-11-28 11:50 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc Bartosz Golaszewski <bgolaszewski@baylibre.com> - 2016-11-25 16:50 +0100
Re: [PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc Sekhar Nori <nsekhar@ti.com> - 2016-11-28 06:30 +0100
Re: [PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc Tomi Valkeinen <tomi.valkeinen@ti.com> - 2016-11-28 08:50 +0100
Re: [PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc Sekhar Nori <nsekhar@ti.com> - 2016-11-28 09:00 +0100
Re: [PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc Bartosz Golaszewski <bgolaszewski@baylibre.com> - 2016-11-28 11:50 +0100
| From | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| Date | 2016-11-25 16:50 +0100 |
| Subject | [PATCH] ARM: dts: da850: specify the maximum bandwidth for tilcdc |
| Message-ID | <sHqVc-2o9-37@gated-at.bofh.it> |
It has been determined that the maximum resolution supported correctly
by tilcdc rev1 on da850 SoCs is 800x600@60. Due to memory throughput
constraints we must filter out higher modes.
Specify the max-bandwidth property for the display node for
da850-based boards.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
arch/arm/boot/dts/da850.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
index 8e30d9b..9b7c444 100644
--- a/arch/arm/boot/dts/da850.dtsi
+++ b/arch/arm/boot/dts/da850.dtsi
@@ -452,6 +452,7 @@
compatible = "ti,da850-tilcdc";
reg = <0x213000 0x1000>;
interrupts = <52>;
+ max-bandwidth = <28800000>;
status = "disabled";
ports {
--
2.9.3
[toc] | [next] | [standalone]
| From | Sekhar Nori <nsekhar@ti.com> |
|---|---|
| Date | 2016-11-28 06:30 +0100 |
| Message-ID | <sImFP-6cg-5@gated-at.bofh.it> |
| In reply to | #1530369 |
On Friday 25 November 2016 09:07 PM, Bartosz Golaszewski wrote: > It has been determined that the maximum resolution supported correctly > by tilcdc rev1 on da850 SoCs is 800x600@60. Due to memory throughput > constraints we must filter out higher modes. > > Specify the max-bandwidth property for the display node for > da850-based boards. > > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> > --- > arch/arm/boot/dts/da850.dtsi | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi > index 8e30d9b..9b7c444 100644 > --- a/arch/arm/boot/dts/da850.dtsi > +++ b/arch/arm/boot/dts/da850.dtsi > @@ -452,6 +452,7 @@ > compatible = "ti,da850-tilcdc"; > reg = <0x213000 0x1000>; > interrupts = <52>; > + max-bandwidth = <28800000>; If this is effectively the max pixel clock that the device supports, then why not use the datasheet specified value of 37.5 MHz (Tc = 26.66 ns). Thanks, Sekhar
[toc] | [prev] | [next] | [standalone]
| From | Tomi Valkeinen <tomi.valkeinen@ti.com> |
|---|---|
| Date | 2016-11-28 08:50 +0100 |
| Message-ID | <sIoRj-7B7-1@gated-at.bofh.it> |
| In reply to | #1531041 |
[Multipart message — attachments visible in raw view] — view raw
On 28/11/16 07:24, Sekhar Nori wrote: > On Friday 25 November 2016 09:07 PM, Bartosz Golaszewski wrote: >> It has been determined that the maximum resolution supported correctly >> by tilcdc rev1 on da850 SoCs is 800x600@60. Due to memory throughput >> constraints we must filter out higher modes. >> >> Specify the max-bandwidth property for the display node for >> da850-based boards. >> >> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> >> --- >> arch/arm/boot/dts/da850.dtsi | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi >> index 8e30d9b..9b7c444 100644 >> --- a/arch/arm/boot/dts/da850.dtsi >> +++ b/arch/arm/boot/dts/da850.dtsi >> @@ -452,6 +452,7 @@ >> compatible = "ti,da850-tilcdc"; >> reg = <0x213000 0x1000>; >> interrupts = <52>; >> + max-bandwidth = <28800000>; > > If this is effectively the max pixel clock that the device supports, > then why not use the datasheet specified value of 37.5 MHz (Tc = 26.66 ns). There's a separate property for max-pixelclock. This one is maximum pixels per second (which does sound almost the same), but the doc says it's about the particular memory interface + LCDC combination. But this 'max-bandwidth' does sound quite odd, as the it really should be bytes, not pixels... Bad bindings again, which we just have to use. Tomi
[toc] | [prev] | [next] | [standalone]
| From | Sekhar Nori <nsekhar@ti.com> |
|---|---|
| Date | 2016-11-28 09:00 +0100 |
| Message-ID | <sIp0Z-7EQ-11@gated-at.bofh.it> |
| In reply to | #1531086 |
On Monday 28 November 2016 01:12 PM, Tomi Valkeinen wrote: > On 28/11/16 07:24, Sekhar Nori wrote: >> On Friday 25 November 2016 09:07 PM, Bartosz Golaszewski wrote: >>> It has been determined that the maximum resolution supported correctly >>> by tilcdc rev1 on da850 SoCs is 800x600@60. Due to memory throughput >>> constraints we must filter out higher modes. >>> >>> Specify the max-bandwidth property for the display node for >>> da850-based boards. >>> >>> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> >>> --- >>> arch/arm/boot/dts/da850.dtsi | 1 + >>> 1 file changed, 1 insertion(+) >>> >>> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi >>> index 8e30d9b..9b7c444 100644 >>> --- a/arch/arm/boot/dts/da850.dtsi >>> +++ b/arch/arm/boot/dts/da850.dtsi >>> @@ -452,6 +452,7 @@ >>> compatible = "ti,da850-tilcdc"; >>> reg = <0x213000 0x1000>; >>> interrupts = <52>; >>> + max-bandwidth = <28800000>; >> >> If this is effectively the max pixel clock that the device supports, >> then why not use the datasheet specified value of 37.5 MHz (Tc = 26.66 ns). > > There's a separate property for max-pixelclock. This one is maximum > pixels per second (which does sound almost the same), but the doc says > it's about the particular memory interface + LCDC combination. DA850 supports both mDDR and DDR2, at slightly different speeds. So memory bandwidth limitation is also board specific. This should probably move to board file. But I would like to know why using max-pixelclock is not good enough. Have experiments shown that LCDC on DA850 LCDK underflows even if pixel clock is below the datasheet recommendation? Thanks, Sekhar
[toc] | [prev] | [next] | [standalone]
| From | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| Date | 2016-11-28 11:50 +0100 |
| Message-ID | <sIrFv-YK-9@gated-at.bofh.it> |
| In reply to | #1531092 |
2016-11-28 8:58 GMT+01:00 Sekhar Nori <nsekhar@ti.com>: > On Monday 28 November 2016 01:12 PM, Tomi Valkeinen wrote: >> On 28/11/16 07:24, Sekhar Nori wrote: >>> On Friday 25 November 2016 09:07 PM, Bartosz Golaszewski wrote: >>>> It has been determined that the maximum resolution supported correctly >>>> by tilcdc rev1 on da850 SoCs is 800x600@60. Due to memory throughput >>>> constraints we must filter out higher modes. >>>> >>>> Specify the max-bandwidth property for the display node for >>>> da850-based boards. >>>> >>>> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> >>>> --- >>>> arch/arm/boot/dts/da850.dtsi | 1 + >>>> 1 file changed, 1 insertion(+) >>>> >>>> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi >>>> index 8e30d9b..9b7c444 100644 >>>> --- a/arch/arm/boot/dts/da850.dtsi >>>> +++ b/arch/arm/boot/dts/da850.dtsi >>>> @@ -452,6 +452,7 @@ >>>> compatible = "ti,da850-tilcdc"; >>>> reg = <0x213000 0x1000>; >>>> interrupts = <52>; >>>> + max-bandwidth = <28800000>; >>> >>> If this is effectively the max pixel clock that the device supports, >>> then why not use the datasheet specified value of 37.5 MHz (Tc = 26.66 ns). >> >> There's a separate property for max-pixelclock. This one is maximum >> pixels per second (which does sound almost the same), but the doc says >> it's about the particular memory interface + LCDC combination. > > DA850 supports both mDDR and DDR2, at slightly different speeds. So > memory bandwidth limitation is also board specific. This should probably > move to board file. > > But I would like to know why using max-pixelclock is not good enough. > Have experiments shown that LCDC on DA850 LCDK underflows even if pixel > clock is below the datasheet recommendation? > Hi Sekhar, I've just tested 1024x768 at 37000 KHz - indeed seems like the underflows are gone as soon as we go below 37500 KHz. I'll submit a new patch using the max-pixelclock property. Thanks, Bartosz Golaszewski
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web