* R600 definition error for interrupt handler swap
@ 2012-02-01 9:33 Cédric Cano
2012-02-01 19:46 ` Alex Deucher
0 siblings, 1 reply; 4+ messages in thread
From: Cédric Cano @ 2012-02-01 9:33 UTC (permalink / raw)
To: dri-devel; +Cc: icthj
Hello,
We're trying to use R600 DRM driver with big endian architecture. We
find the following error in R600 definition of interrupt handler swap.
Perhaps there's the same error in the evergreen definitions header file.
Cedric
Signed-off-by: Cédric Cano <ccano@interfaceconcept.com>
Signed-off-by: Thomas Jourdan <tjourdan@interfaceconcept.com>
---
diff -Naur linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
--- linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-01-26
01:39:32.000000000 +0100
+++ linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-02-01
10:25:04.000000000 +0100
@@ -552,7 +552,7 @@
#define IH_RB_WPTR_ADDR_LO 0x3e14
#define IH_CNTL 0x3e18
# define ENABLE_INTR (1 << 0)
-# define IH_MC_SWAP(x) ((x) << 1)
+# define IH_MC_SWAP(x) ((x) << 2)
# define IH_MC_SWAP_NONE 0
# define IH_MC_SWAP_16BIT 1
# define IH_MC_SWAP_32BIT 2
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: R600 definition error for interrupt handler swap
2012-02-01 9:33 R600 definition error for interrupt handler swap Cédric Cano
@ 2012-02-01 19:46 ` Alex Deucher
2012-02-02 8:42 ` Cédric Cano
0 siblings, 1 reply; 4+ messages in thread
From: Alex Deucher @ 2012-02-01 19:46 UTC (permalink / raw)
To: Cédric Cano; +Cc: icthj, dri-devel
On Wed, Feb 1, 2012 at 4:33 AM, Cédric Cano <ccano@interfaceconcept.com> wrote:
> Hello,
>
> We're trying to use R600 DRM driver with big endian architecture. We find
> the following error in R600 definition of interrupt handler swap.
>
> Perhaps there's the same error in the evergreen definitions header file.
The definition in the register header is correct according to the
register spec. It's bits 2:1 on both r6xx and evergreen.
0 = no swap
1 = 16 bit swap (0xaabb becomes 0xbbaa)
2 = 32 bit swap (0xaabbccdd becomes 0xddccbbaa)
3 = 64 bit swap (0xaabbccddeeff0011 becomes 0x1100ffeeddccbbaa))
Alex
>
> Cedric
>
> Signed-off-by: Cédric Cano <ccano@interfaceconcept.com>
> Signed-off-by: Thomas Jourdan <tjourdan@interfaceconcept.com>
> ---
> diff -Naur linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
> linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
> --- linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-01-26
> 01:39:32.000000000 +0100
> +++ linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-02-01
> 10:25:04.000000000 +0100
> @@ -552,7 +552,7 @@
> #define IH_RB_WPTR_ADDR_LO 0x3e14
> #define IH_CNTL 0x3e18
> # define ENABLE_INTR (1 << 0)
> -# define IH_MC_SWAP(x) ((x) << 1)
> +# define IH_MC_SWAP(x) ((x) << 2)
> # define IH_MC_SWAP_NONE 0
> # define IH_MC_SWAP_16BIT 1
> # define IH_MC_SWAP_32BIT 2
> --
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: R600 definition error for interrupt handler swap
2012-02-01 19:46 ` Alex Deucher
@ 2012-02-02 8:42 ` Cédric Cano
2012-02-02 9:09 ` Michel Dänzer
0 siblings, 1 reply; 4+ messages in thread
From: Cédric Cano @ 2012-02-02 8:42 UTC (permalink / raw)
To: Alex Deucher; +Cc: icthj, dri-devel
Hi Alex,
We don't have the documentation that contains this register definition.
We try to use the Linux 3.0.0 on our PowerPC board and M96 GPU (RV730):
it doesn't work as is. We need to revert this definition like it was
before 2.6.39.4
(http://lists.freedesktop.org/archives/dri-devel/2011-July/012811.html).
Are you sure the documentation is correct?
Cedric
Le 01/02/2012 20:46, Alex Deucher a écrit :
> On Wed, Feb 1, 2012 at 4:33 AM, Cédric Cano<ccano@interfaceconcept.com> wrote:
>> Hello,
>>
>> We're trying to use R600 DRM driver with big endian architecture. We find
>> the following error in R600 definition of interrupt handler swap.
>>
>> Perhaps there's the same error in the evergreen definitions header file.
> The definition in the register header is correct according to the
> register spec. It's bits 2:1 on both r6xx and evergreen.
>
> 0 = no swap
> 1 = 16 bit swap (0xaabb becomes 0xbbaa)
> 2 = 32 bit swap (0xaabbccdd becomes 0xddccbbaa)
> 3 = 64 bit swap (0xaabbccddeeff0011 becomes 0x1100ffeeddccbbaa))
>
> Alex
>
>> Cedric
>>
>> Signed-off-by: Cédric Cano<ccano@interfaceconcept.com>
>> Signed-off-by: Thomas Jourdan<tjourdan@interfaceconcept.com>
>> ---
>> diff -Naur linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
>> linux-3.2.2/drivers/gpu/drm/radeon/r600d.h
>> --- linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-01-26
>> 01:39:32.000000000 +0100
>> +++ linux-3.2.2/drivers/gpu/drm/radeon/r600d.h 2012-02-01
>> 10:25:04.000000000 +0100
>> @@ -552,7 +552,7 @@
>> #define IH_RB_WPTR_ADDR_LO 0x3e14
>> #define IH_CNTL 0x3e18
>> # define ENABLE_INTR (1<< 0)
>> -# define IH_MC_SWAP(x) ((x)<< 1)
>> +# define IH_MC_SWAP(x) ((x)<< 2)
>> # define IH_MC_SWAP_NONE 0
>> # define IH_MC_SWAP_16BIT 1
>> # define IH_MC_SWAP_32BIT 2
>> --
>>
>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-02-02 9:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-01 9:33 R600 definition error for interrupt handler swap Cédric Cano
2012-02-01 19:46 ` Alex Deucher
2012-02-02 8:42 ` Cédric Cano
2012-02-02 9:09 ` Michel Dänzer
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.