From: Ville Syrj?l?
Support for real RGB332 is a rarity, most hardware only really support
C8. So use C8 instead of RGB332 when determining the format based on
depth/bpp.
This fixes 8bpp fbcon on i915, since i915 will only accept C8 and not
RGB332.
Bugzilla: https://bugs.freedesktop.org/show_bu
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/0afc57e7/attachment-0001.html>
scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/de958a40/attachment.html>
On Thu, Jan 31, 2013 at 7:04 AM, Sean Paul wrote:
> On Wed, Jan 30, 2013 at 10:03 PM, Stephen Warren
> wrote:
>> On 01/30/2013 06:16 PM, Inki Dae wrote:
>>> 2013/1/30 Sylwester Nawrocki :
Hi,
On 01/08/2013 11:56 PM, Stephen Warren wrote:
>
> On 01/08/2013 01:16 PM, Se
-
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/883ba820/attachment.html>
the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/69120845/attachment.html>
e bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/f4587f0d/attachment.html>
:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/c7b190c4/attachment.html>
Hi
2013/1/30 Rodrigo Vivi :
> While old platforms had 3 transcoders and 3 pipes (1:1), HSW has 4
> transcoders and 3 pipes. To avoid future mistakes transcoders must be used
> here instead of pipes even though it is working right now by coincidence.
Not by coincidence: these regs are currently
ment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/97046fe5/attachment.html>
VM page table updates since the DMA ring is smaller than the CP
ring.
--
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/2013013
xt part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/1c50c979/attachment.html>
Hi
2013/1/31 Jani Nikula :
> On Wed, 30 Jan 2013, Rodrigo Vivi wrote:
>> While old platforms had 3 transcoders and 3 pipes (1:1), HSW has 4
>> transcoders and 3 pipes. To avoid future mistakes transcoders must be used
>> here instead of pipes even though it is working right now by coincidence.
needed then this is a lot
smaller.
--
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/7f7494a8/attachment-0001.html>
this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/8e56d3a7/attachment.html>
From: Alex Deucher
If the requested number of DWs on the ring is larger than
the size of the ring itself, return an error.
In testing with large VM updates, we've seen crashes when we
try and allocate more space on the ring than the total size
of the ring without checking.
This prevents the cra
From: Alex Deucher
For large VM page table updates, we can sometimes generate
more packets than there is space on the ring. This happens
more readily with the DMA ring since it is 64K (vs 1M for the
CP). For now, switch back to the CP. For the next kernel,
I have a patch to utilize IBs for VM
e the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/6faa780d/attachment.html>
Hi
In addition to Jani's comments:
2013/1/30 Rodrigo Vivi :
> From: Shobhit Kumar
>
> Signed-off-by: Shobhit Kumar
>
> v2: Created aux_clock_divider function to avoid duplicated code.
> Unfortunatelly dp_aux_ch and psr_aux_ch aren't so similar to reuse full
> code.
>
DDI A AUX channel tra
From: Alex Deucher
For very large page table updates, we can exceed the
size of the ring. To avoid this, use an IB to perform
the page table update.
Signed-off-by: Alex Deucher
---
We may want to do something similar for the BO move code as we
could potentially run out of ring space on a smal
On Thu, Jan 31, 2013 at 2:14 PM, Sebastian Hesselbarth
wrote:
> On 01/31/2013 03:23 PM, Rob Clark wrote:
>>
>> On Wed, Jan 30, 2013 at 8:23 PM, Sebastian Hesselbarth
>> wrote:
>>>
>>> On 01/29/2013 06:23 PM, Rob Clark wrote:
>
> [...]
+
+/* The TDA9988 series of devices use a page
0x1080 with the Denon-AVAMP
off ... but i had no luck
--
You are receiving this mail because:
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130131/70bd3abc/attachment.html>
Hi
2013/1/30 Rodrigo Vivi :
> From: Shobhit Kumar
>
> Added eDP PSR enable functionality. This includes setting the PSR
> configuration over AUX, sending SDP VSC DIP over the eDP PIPE config,
> enabling PSR in the sink via DPCD register and finally enabling PSR on
> the host. PSR works only in LP
I've put up a WIP 3.9 branch for those that want to start testing it:
http://cgit.freedesktop.org/~agd5f/linux/log/?h=drm-next-3.9-wip
Main changes so far:
- GPU reset rework
- CS ioctl refactoring
- switch to using IBs for VM PT updates
- Deprecate UMS
We have a few other internal projects we'd l
From: Alex Deucher
Hi Dave,
A few more radeon fixes for 3.8. Mostly small stuff. The big
change is disabling the use of the DMA ring for VM PT updates. This
reverts back to the 3.7 behavior. Problem is we can get huge PT
updates in certain cases that are too big for the DMA ring. I've
got p
On 01/31/2013 06:27 PM, Inki Dae wrote:
> Hi Kukjin,
>
>> -Original Message-
>> From: linux-media-owner at vger.kernel.org [mailto:linux-media-
>> owner at vger.kernel.org] On Behalf Of Kukjin Kim
>> Sent: Friday, February 01, 2013 9:15 AM
>> To: 'Sylwester Nawrocki'; 'Inki Dae'
>> Cc: 'Sa
On 01/31/2013 10:36 AM, Stephen Warren wrote:
> On 01/31/2013 08:04 AM, Sean Paul wrote:
> ...
>> I think if we take a step back, we're really not discussing HDMI
>> version 1.3 vs. 1.4, we're really talking about the HDMI IP block
>> version.
>
> Absolutely.
>
>> The blocks just happen to implem
On Thu, Jan 31, 2013 at 08:23:53AM -0600, Rob Clark wrote:
> On Wed, Jan 30, 2013 at 8:23 PM, Sebastian Hesselbarth
> wrote:
> > On 01/29/2013 06:23 PM, Rob Clark wrote:
> >>
> >> Driver for the NXP TDA998X i2c hdmi encoder slave.
> >
> >
> > Rob,
> >
> > good to see a driver for TDA998x comming!
On 01/31/2013 03:23 PM, Rob Clark wrote:
> On Wed, Jan 30, 2013 at 8:23 PM, Sebastian Hesselbarth
> wrote:
>> On 01/29/2013 06:23 PM, Rob Clark wrote:
[...]
>>> +
>>> +/* The TDA9988 series of devices use a paged register scheme.. to
>>> simplify
>>> + * things we encode the page # in upper bits
Sylwester Nawrocki wrote:
>
> Hi Inki,
>
Hi Sylwester and Inki,
> On 01/31/2013 02:30 AM, Inki Dae wrote:
> >> -Original Message-
> >> From: Sylwester Nawrocki [mailto:sylvester.nawrocki at gmail.com]
> >> Sent: Thursday, January 31, 2013 5:51 AM
> >> To: Inki Dae
> >> Cc: Sachin Kamat;
201 - 230 of 230 matches
Mail list logo