lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 18 Jun 2008 10:26:10 +0300
From:	Dmitri Vorobiev <dmitri.vorobiev@...ial.fi>
To:	zhenyu.z.wang@...el.com
CC:	Dave Airlie <airlied@...hat.com>,
	LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] [AGP] intel_agp: Add support for Intel 4 series chipsets

Zhenyu Wang wrote:
> Dave, here's the patch against current git master.
> 
> Thanks.
> 
> [AGP] intel_agp: Add support for Intel 4 series chipsets
> 
> Signed-off-by: Zhenyu Wang <zhenyu.z.wang@...el.com>
> ---
>  drivers/char/agp/intel-agp.c |   82 ++++++++++++++++++++++++++++++++++++-----
>  1 files changed, 72 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c
> index eeea50a..76731db 100644
> --- a/drivers/char/agp/intel-agp.c
> +++ b/drivers/char/agp/intel-agp.c
> @@ -34,6 +34,12 @@
>  #define PCI_DEVICE_ID_INTEL_Q33_IG          0x29D2
>  #define PCI_DEVICE_ID_INTEL_IGD_HB          0x2A40
>  #define PCI_DEVICE_ID_INTEL_IGD_IG          0x2A42
> +#define PCI_DEVICE_ID_INTEL_IGD_E_HB        0x2E00
> +#define PCI_DEVICE_ID_INTEL_IGD_E_IG        0x2E02
> +#define PCI_DEVICE_ID_INTEL_Q45_HB          0x2E10
> +#define PCI_DEVICE_ID_INTEL_Q45_IG          0x2E12
> +#define PCI_DEVICE_ID_INTEL_G45_HB          0x2E20
> +#define PCI_DEVICE_ID_INTEL_G45_IG          0x2E22
>  
>  /* cover 915 and 945 variants */
>  #define IS_I915 (agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_E7221_HB || \
> @@ -55,6 +61,10 @@
>  		agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_Q35_HB || \
>  		agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_Q33_HB)
>  
> +#define IS_G4X	(agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGD_E_HB || \
> +                 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_Q45_HB || \
> +                 agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_G45_HB)
> +
>  extern int agp_memory_reserved;
>  
>  
> @@ -80,8 +90,12 @@ extern int agp_memory_reserved;
>  #define I915_PTEADDR	0x1C
>  #define I915_GMCH_GMS_STOLEN_48M	(0x6 << 4)
>  #define I915_GMCH_GMS_STOLEN_64M	(0x7 << 4)
> -#define G33_GMCH_GMS_STOLEN_128M       (0x8 << 4)
> -#define G33_GMCH_GMS_STOLEN_256M       (0x9 << 4)
> +#define G33_GMCH_GMS_STOLEN_128M        (0x8 << 4)
> +#define G33_GMCH_GMS_STOLEN_256M        (0x9 << 4)
> +#define INTEL_GMCH_GMS_STOLEN_96M	(0xa << 4)
> +#define INTEL_GMCH_GMS_STOLEN_160M	(0xb << 4)
> +#define INTEL_GMCH_GMS_STOLEN_224M	(0xc << 4)
> +#define INTEL_GMCH_GMS_STOLEN_352M	(0xd << 4)
>  #define I915_IFPADDR    0x60
>  
>  /* Intel 965G registers */
> @@ -504,6 +518,10 @@ static void intel_i830_init_gtt_entries(void)
>  			size = 512;
>  		}
>  		size += 4;
> +	} else if (IS_G4X) {
> +		/* On 4 Series hardware, GTT stolen is seperate from graphics

You have a spelling error here. Should be "separate".

Thanks,
Dmitri
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ