* [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2
@ 2012-10-23 13:53 Christian König
2012-10-23 14:02 ` Michel Dänzer
0 siblings, 1 reply; 5+ messages in thread
From: Christian König @ 2012-10-23 13:53 UTC (permalink / raw)
To: dri-devel
GART and VRAM size limits need to be a power of two.
Fix values greater than 1GB and simplify those checks a bit.
v2: also fix radeon_vram_limit usage, and simplify test even more.
Signed-off-by: Christian König <deathsimple@vodafone.de>
---
drivers/gpu/drm/radeon/radeon_device.c | 60 +++++++++++++-------------------
1 file changed, 24 insertions(+), 36 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c
index bd13ca0..01ac531 100644
--- a/drivers/gpu/drm/radeon/radeon_device.c
+++ b/drivers/gpu/drm/radeon/radeon_device.c
@@ -355,6 +355,8 @@ int radeon_wb_init(struct radeon_device *rdev)
*/
void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
{
+ uint64_t limit = (uint64_t)radeon_vram_limit << 20;
+
mc->vram_start = base;
if (mc->mc_vram_size > (0xFFFFFFFF - base + 1)) {
dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
@@ -368,8 +370,8 @@ void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64
mc->mc_vram_size = mc->aper_size;
}
mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
- if (radeon_vram_limit && radeon_vram_limit < mc->real_vram_size)
- mc->real_vram_size = radeon_vram_limit;
+ if (limit && limit < mc->real_vram_size)
+ mc->real_vram_size = limit;
dev_info(rdev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n",
mc->mc_vram_size >> 20, mc->vram_start,
mc->vram_end, mc->real_vram_size >> 20);
@@ -835,6 +837,19 @@ static unsigned int radeon_vga_set_decode(void *cookie, bool state)
}
/**
+ * radeon_check_pot_argument - check that argument is a power of two
+ *
+ * @arg: value to check
+ *
+ * Validates that a certain argument is a power of two (all asics).
+ * Returns true if argument is valid.
+ */
+static bool radeon_ckeck_pot_argument(int arg)
+{
+ return (arg & (arg - 1)) == 0;
+}
+
+/**
* radeon_check_arguments - validate module params
*
* @rdev: radeon_device pointer
@@ -845,52 +860,25 @@ static unsigned int radeon_vga_set_decode(void *cookie, bool state)
static void radeon_check_arguments(struct radeon_device *rdev)
{
/* vramlimit must be a power of two */
- switch (radeon_vram_limit) {
- case 0:
- case 4:
- case 8:
- case 16:
- case 32:
- case 64:
- case 128:
- case 256:
- case 512:
- case 1024:
- case 2048:
- case 4096:
- break;
- default:
+ if (!radeon_ckeck_pot_argument(radeon_vram_limit)) {
dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
radeon_vram_limit);
radeon_vram_limit = 0;
- break;
}
- radeon_vram_limit = radeon_vram_limit << 20;
+
/* gtt size must be power of two and greater or equal to 32M */
- switch (radeon_gart_size) {
- case 4:
- case 8:
- case 16:
+ if (radeon_gart_size < 32) {
dev_warn(rdev->dev, "gart size (%d) too small forcing to 512M\n",
radeon_gart_size);
radeon_gart_size = 512;
- break;
- case 32:
- case 64:
- case 128:
- case 256:
- case 512:
- case 1024:
- case 2048:
- case 4096:
- break;
- default:
+
+ } else if (!radeon_ckeck_pot_argument(radeon_gart_size)) {
dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
radeon_gart_size);
radeon_gart_size = 512;
- break;
}
- rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
+ rdev->mc.gtt_size = (uint64_t)radeon_gart_size << 20;
+
/* AGP mode can only be -1, 1, 2, 4, 8 */
switch (radeon_agpmode) {
case -1:
--
1.7.9.5
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2
2012-10-23 13:53 Christian König
@ 2012-10-23 14:02 ` Michel Dänzer
0 siblings, 0 replies; 5+ messages in thread
From: Michel Dänzer @ 2012-10-23 14:02 UTC (permalink / raw)
To: Christian König; +Cc: dri-devel
On Die, 2012-10-23 at 15:53 +0200, Christian König wrote:
> GART and VRAM size limits need to be a power of two.
> Fix values greater than 1GB and simplify those checks a bit.
>
> v2: also fix radeon_vram_limit usage, and simplify test even more.
>
> Signed-off-by: Christian König <deathsimple@vodafone.de>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
--
Earthling Michel Dänzer | http://www.amd.com
Libre software enthusiast | Debian, X and DRI developer
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2
@ 2012-10-23 16:45 Klaus Schnass
2012-10-24 15:31 ` Christian König
0 siblings, 1 reply; 5+ messages in thread
From: Klaus Schnass @ 2012-10-23 16:45 UTC (permalink / raw)
To: dri-devel
> /**
>+ * radeon_check_pot_argument - check that argument is a power of two
>+ *
>+ * @arg: value to check
>+ *
>+ * Validates that a certain argument is a power of two (all asics).
>+ * Returns true if argument is valid.
>+ */
>+static bool radeon_ckeck_pot_argument(int arg)
>+{
>+ return (arg & (arg - 1)) == 0;
>+}
comment says "check_pot_argument" but is called c_K_eck_pot_argument
>+
>+/**
> * radeon_check_arguments - validate module params
> *
> * @rdev: radeon_device pointer
>@@ -845,52 +860,25 @@ static unsigned int radeon_vga_set_decode(void *cookie,
bool state)
> static void radeon_check_arguments(struct radeon_device *rdev)
> {
> /* vramlimit must be a power of two */
>- switch (radeon_vram_limit) {
>- case 0:
>- case 4:
>- case 8:
>- case 16:
>- case 32:
>- case 64:
>- case 128:
>- case 256:
>- case 512:
>- case 1024:
>- case 2048:
>- case 4096:
>- break;
>- default:
>+ if (!radeon_ckeck_pot_argument(radeon_vram_limit)) {
check_pot_argument is also true for radeon_vram_limit = 1 and 2 which was
missing from the previous case statement, was that intentional?
Best regards,
Klaus
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2
2012-10-23 16:45 [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2 Klaus Schnass
@ 2012-10-24 15:31 ` Christian König
2012-10-24 15:38 ` Alex Deucher
0 siblings, 1 reply; 5+ messages in thread
From: Christian König @ 2012-10-24 15:31 UTC (permalink / raw)
To: Klaus Schnass; +Cc: dri-devel
On 23.10.2012 18:45, Klaus Schnass wrote:
>> /**
>> + * radeon_check_pot_argument - check that argument is a power of two
>> + *
>> + * @arg: value to check
>> + *
>> + * Validates that a certain argument is a power of two (all asics).
>> + * Returns true if argument is valid.
>> + */
>> +static bool radeon_ckeck_pot_argument(int arg)
>> +{
>> + return (arg & (arg - 1)) == 0;
>> +}
> comment says "check_pot_argument" but is called c_K_eck_pot_argument
Good catch, that's indeed a typo.
>
>> +
>> +/**
>> * radeon_check_arguments - validate module params
>> *
>> * @rdev: radeon_device pointer
>> @@ -845,52 +860,25 @@ static unsigned int radeon_vga_set_decode(void *cookie,
> bool state)
>> static void radeon_check_arguments(struct radeon_device *rdev)
>> {
>> /* vramlimit must be a power of two */
>> - switch (radeon_vram_limit) {
>> - case 0:
>> - case 4:
>> - case 8:
>> - case 16:
>> - case 32:
>> - case 64:
>> - case 128:
>> - case 256:
>> - case 512:
>> - case 1024:
>> - case 2048:
>> - case 4096:
>> - break;
>> - default:
>> + if (!radeon_ckeck_pot_argument(radeon_vram_limit)) {
> check_pot_argument is also true for radeon_vram_limit = 1 and 2 which was
> missing from the previous case statement, was that intentional?
Not really, but I don't see a reason why 1 and 2 MB limits shouldn't
work (if your resolution is low enough).
Christian.
>
> Best regards,
> Klaus
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2
2012-10-24 15:31 ` Christian König
@ 2012-10-24 15:38 ` Alex Deucher
0 siblings, 0 replies; 5+ messages in thread
From: Alex Deucher @ 2012-10-24 15:38 UTC (permalink / raw)
To: Christian König; +Cc: dri-devel, Klaus Schnass
On Wed, Oct 24, 2012 at 11:31 AM, Christian König
<deathsimple@vodafone.de> wrote:
> On 23.10.2012 18:45, Klaus Schnass wrote:
>>>
>>> /**
>>> + * radeon_check_pot_argument - check that argument is a power of two
>>> + *
>>> + * @arg: value to check
>>> + *
>>> + * Validates that a certain argument is a power of two (all asics).
>>> + * Returns true if argument is valid.
>>> + */
>>> +static bool radeon_ckeck_pot_argument(int arg)
>>> +{
>>> + return (arg & (arg - 1)) == 0;
>>> +}
>>
>> comment says "check_pot_argument" but is called c_K_eck_pot_argument
>
> Good catch, that's indeed a typo.
I've fixed that up locally in my tree.
Alex
>
>
>>
>>> +
>>> +/**
>>> * radeon_check_arguments - validate module params
>>> *
>>> * @rdev: radeon_device pointer
>>> @@ -845,52 +860,25 @@ static unsigned int radeon_vga_set_decode(void
>>> *cookie,
>>
>> bool state)
>>>
>>> static void radeon_check_arguments(struct radeon_device *rdev)
>>> {
>>> /* vramlimit must be a power of two */
>>> - switch (radeon_vram_limit) {
>>> - case 0:
>>> - case 4:
>>> - case 8:
>>> - case 16:
>>> - case 32:
>>> - case 64:
>>> - case 128:
>>> - case 256:
>>> - case 512:
>>> - case 1024:
>>> - case 2048:
>>> - case 4096:
>>> - break;
>>> - default:
>>> + if (!radeon_ckeck_pot_argument(radeon_vram_limit)) {
>>
>> check_pot_argument is also true for radeon_vram_limit = 1 and 2 which was
>> missing from the previous case statement, was that intentional?
>
> Not really, but I don't see a reason why 1 and 2 MB limits shouldn't work
> (if your resolution is low enough).
>
> Christian.
>
>
>>
>> Best regards,
>> Klaus
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-10-24 15:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 16:45 [PATCH 1/4] drm/radeon: fix and simplify pot argument checks v2 Klaus Schnass
2012-10-24 15:31 ` Christian König
2012-10-24 15:38 ` Alex Deucher
-- strict thread matches above, loose matches on Subject: below --
2012-10-23 13:53 Christian König
2012-10-23 14:02 ` 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.