* [PATCH,BACKPORT] AGPGART support for Intel 7205/7505 chipsets
@ 2003-08-26 12:26 Marcelo E. Magallon
2003-08-27 9:10 ` Marcelo E. Magallon
0 siblings, 1 reply; 3+ messages in thread
From: Marcelo E. Magallon @ 2003-08-26 12:26 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1632 bytes --]
Hi Marcelo,
On Mon, Aug 04, 2003 at 02:39:55PM -0300, Marcelo Tosatti wrote:
> I prefer this getting applied at 2.4.23-pre.
Ok, here's the patch again against what's current in the BK tree. I
just checked that it still applies and works with 2.4.22.
> > The only hardware I have access to is from NVIDIA, which means I
> > haven't been able to test this with a non-tainted kernel, but I
> > don't expect this to be a problem.
In the meanwhile I have verified that Radeon 9[578]00 cards also work.
(ATI's drivers).
Question for the list: the machines where I'm testing this have 4GB of
RAM. The MTRRs look like this after starting the X server:
reg00: base=0x00000000 ( 0MB), size=2048MB: write-back, count=1
reg01: base=0x80000000 (2048MB), size=1024MB: write-back, count=1
reg02: base=0xc0000000 (3072MB), size= 512MB: write-back, count=1
reg03: base=0xd8000000 (3456MB), size= 128MB: uncachable, count=1
reg04: base=0x100000000 (4096MB), size=4096MB: write-back, count=1
reg05: base=0x200000000 (8192MB), size=8192MB: write-back, count=1
reg06: base=0xe0000000 (3584MB), size= 128MB: write-combining, count=1
reg07: base=0xf0000000 (3840MB), size= 64MB: write-combining, count=1
6 and 7 are set up by the X server. Originally 6 and 7 were two big
(16 GB and 32 GB) areas (at 0x400000000 and 0x80000000). After
removing those by hand and starting the X server AGP works (in case of
the ATI drivers, the X server won't even come up if AGP can't be
enabled).
The question is what are those areas for? (I mean 4 and 5 and the
original 6 and 7) There's no physical memory there...
TIA,
Marcelo
[-- Attachment #2: agpgart-i7505.diff --]
[-- Type: text/plain, Size: 3739 bytes --]
Index: drivers/char/agp/agpgart_be.c
===================================================================
--- drivers/char/agp/agpgart_be.c (revision 3835)
+++ drivers/char/agp/agpgart_be.c (working copy)
@@ -1817,6 +1817,37 @@
}
+static int intel_7505_configure(void)
+{
+ u32 temp;
+ u16 temp2;
+ aper_size_info_8 *current_size;
+
+ current_size = A_SIZE_8(agp_bridge.current_size);
+
+ /* aperture size */
+ pci_write_config_byte(agp_bridge.dev, INTEL_APSIZE,
+ current_size->size_value);
+
+ /* address to map to */
+ pci_read_config_dword(agp_bridge.dev, INTEL_APBASE, &temp);
+ agp_bridge.gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
+
+ /* attbase - aperture base */
+ pci_write_config_dword(agp_bridge.dev, INTEL_ATTBASE,
+ agp_bridge.gatt_bus_addr);
+
+ /* agpctrl */
+ pci_write_config_dword(agp_bridge.dev, INTEL_AGPCTRL, 0x0000);
+
+ /* mcgcfg */
+ pci_read_config_word(agp_bridge.dev, INTEL_I7505_MCHCFG, &temp2);
+ pci_write_config_word(agp_bridge.dev, INTEL_I7505_MCHCFG,
+ temp2 | (1 << 9));
+ return 0;
+}
+
+
static unsigned long intel_mask_memory(unsigned long addr, int type)
{
/* Memory type is ignored */
@@ -2126,6 +2157,38 @@
(void) pdev; /* unused */
}
+static int __init intel_7505_setup (struct pci_dev *pdev)
+{
+ agp_bridge.masks = intel_generic_masks;
+ agp_bridge.aperture_sizes = (void *) intel_8xx_sizes;
+ agp_bridge.size_type = U8_APER_SIZE;
+ agp_bridge.num_aperture_sizes = 7;
+ agp_bridge.dev_private_data = NULL;
+ agp_bridge.needs_scratch_page = FALSE;
+ agp_bridge.configure = intel_7505_configure;
+ agp_bridge.fetch_size = intel_8xx_fetch_size;
+ agp_bridge.cleanup = intel_8xx_cleanup;
+ agp_bridge.tlb_flush = intel_8xx_tlbflush;
+ agp_bridge.mask_memory = intel_mask_memory;
+ agp_bridge.agp_enable = agp_generic_agp_enable;
+ agp_bridge.cache_flush = global_cache_flush;
+ agp_bridge.create_gatt_table = agp_generic_create_gatt_table;
+ agp_bridge.free_gatt_table = agp_generic_free_gatt_table;
+ agp_bridge.insert_memory = agp_generic_insert_memory;
+ agp_bridge.remove_memory = agp_generic_remove_memory;
+ agp_bridge.alloc_by_type = agp_generic_alloc_by_type;
+ agp_bridge.free_by_type = agp_generic_free_by_type;
+ agp_bridge.agp_alloc_page = agp_generic_alloc_page;
+ agp_bridge.agp_destroy_page = agp_generic_destroy_page;
+ agp_bridge.suspend = agp_generic_suspend;
+ agp_bridge.resume = agp_generic_resume;
+ agp_bridge.cant_use_aperture = 0;
+
+ return 0;
+
+ (void) pdev; /* unused */
+}
+
#endif /* CONFIG_AGP_INTEL */
#ifdef CONFIG_AGP_VIA
@@ -4942,6 +5005,18 @@
"Intel",
"i860",
intel_860_setup },
+ { PCI_DEVICE_ID_INTEL_7205_0,
+ PCI_VENDOR_ID_INTEL,
+ INTEL_I7205,
+ "Intel",
+ "i7205",
+ intel_7505_setup },
+ { PCI_DEVICE_ID_INTEL_7505_0,
+ PCI_VENDOR_ID_INTEL,
+ INTEL_I7505,
+ "Intel",
+ "i7505",
+ intel_7505_setup },
{ 0,
PCI_VENDOR_ID_INTEL,
INTEL_GENERIC,
Index: drivers/char/agp/agp.h
===================================================================
--- drivers/char/agp/agp.h (revision 3835)
+++ drivers/char/agp/agp.h (working copy)
@@ -223,6 +223,12 @@
#ifndef PCI_DEVICE_ID_INTEL_860_0
#define PCI_DEVICE_ID_INTEL_860_0 0x2531
#endif
+#ifndef PCI_DEVICE_ID_INTEL_7205_0
+#define PCI_DEVICE_ID_INTEL_7205_0 0x255d
+#endif
+#ifndef PCI_DEVICE_ID_INTEL_7505_0
+#define PCI_DEVICE_ID_INTEL_7505_0 0x2550
+#endif
#ifndef PCI_DEVICE_ID_INTEL_810_DC100_0
#define PCI_DEVICE_ID_INTEL_810_DC100_0 0x7122
#endif
@@ -366,6 +372,10 @@
#define INTEL_I860_MCHCFG 0x50
#define INTEL_I860_ERRSTS 0xc8
+/* intel i7505 registers */
+#define INTEL_I7505_MCHCFG 0x50
+#define INTEL_I7505_ERRSTS 0x42
+
/* intel i810 registers */
#define I810_GMADDR 0x10
#define I810_MMADDR 0x14
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH,BACKPORT] AGPGART support for Intel 7205/7505 chipsets
2003-08-26 12:26 [PATCH,BACKPORT] AGPGART support for Intel 7205/7505 chipsets Marcelo E. Magallon
@ 2003-08-27 9:10 ` Marcelo E. Magallon
2003-08-27 9:18 ` Marc-Christian Petersen
0 siblings, 1 reply; 3+ messages in thread
From: Marcelo E. Magallon @ 2003-08-27 9:10 UTC (permalink / raw)
To: Marcelo Tosatti, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 437 bytes --]
On Tue, Aug 26, 2003 at 02:26:12PM +0200, Marcelo E. Magallon wrote:
> Ok, here's the patch again against what's current in the BK tree. I
> just checked that it still applies and works with 2.4.22.
I am sorry, I just noticed I omitted the diff of the include/linux
directory. The missing bits are attached. The whole patch is
available from:
http://people.debian.org/~mmagallo/agp-i7x05.diff
Cheers,
Marcelo
[-- Attachment #2: agp-i7x05-defines.diff --]
[-- Type: text/plain, Size: 331 bytes --]
Index: include/linux/agp_backend.h
===================================================================
--- include/linux/agp_backend.h (revision 3835)
+++ include/linux/agp_backend.h (working copy)
@@ -55,6 +55,8 @@
INTEL_I855_PM,
INTEL_I860,
INTEL_I865_G,
+ INTEL_I7205,
+ INTEL_I7505,
VIA_GENERIC,
VIA_VP3,
VIA_MVP3,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH,BACKPORT] AGPGART support for Intel 7205/7505 chipsets
2003-08-27 9:10 ` Marcelo E. Magallon
@ 2003-08-27 9:18 ` Marc-Christian Petersen
0 siblings, 0 replies; 3+ messages in thread
From: Marc-Christian Petersen @ 2003-08-27 9:18 UTC (permalink / raw)
To: Marcelo E. Magallon, Marcelo Tosatti, linux-kernel
On Wednesday 27 August 2003 11:10, Marcelo E. Magallon wrote:
Hi Marcelo,
> > Ok, here's the patch again against what's current in the BK tree. I
> > just checked that it still applies and works with 2.4.22.
> I am sorry, I just noticed I omitted the diff of the include/linux
> directory. The missing bits are attached. The whole patch is
> available from:
> http://people.debian.org/~mmagallo/agp-i7x05.diff
you know that your patch is already in? ;-)
http://linux.bkbits.net:8080/linux-2.4/cset@1.1065.1.37?nav=index.html|ChangeSet@-2d
ciao, Marc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-08-27 9:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-26 12:26 [PATCH,BACKPORT] AGPGART support for Intel 7205/7505 chipsets Marcelo E. Magallon
2003-08-27 9:10 ` Marcelo E. Magallon
2003-08-27 9:18 ` Marc-Christian Petersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®