Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1e464de0
Commit
1e464de0
authored
Mar 26, 2003
by
Dave Jones
Committed by
Dave Jones
Mar 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AGPGART] Make i7x05 compilable again.
Noticed and partially fixed by Stefan Neuwirth <neuwirth@belwue.de>
parent
640987e4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
10 deletions
+21
-10
drivers/char/agp/Kconfig
drivers/char/agp/Kconfig
+1
-1
drivers/char/agp/i7x05-agp.c
drivers/char/agp/i7x05-agp.c
+20
-9
No files found.
drivers/char/agp/Kconfig
View file @
1e464de0
...
@@ -141,7 +141,7 @@ config AGP_ALPHA_CORE
...
@@ -141,7 +141,7 @@ config AGP_ALPHA_CORE
# Put AGP 3.0 entries below here.
# Put AGP 3.0 entries below here.
config AGP_I7
5
05
config AGP_I7
x
05
tristate "Intel 7205/7505 support (AGP 3.0)"
tristate "Intel 7205/7505 support (AGP 3.0)"
depends on AGP3
depends on AGP3
help
help
...
...
drivers/char/agp/i7x05-agp.c
View file @
1e464de0
...
@@ -8,7 +8,7 @@ static int intel_7505_fetch_size(void)
...
@@ -8,7 +8,7 @@ static int intel_7505_fetch_size(void)
{
{
int
i
;
int
i
;
u16
tmp
;
u16
tmp
;
aper_size_info_16
*
values
;
struct
aper_size_info_16
*
values
;
/*
/*
* For AGP 3.0 APSIZE is now 16 bits
* For AGP 3.0 APSIZE is now 16 bits
...
@@ -41,7 +41,7 @@ static void intel_7505_tlbflush(agp_memory *mem)
...
@@ -41,7 +41,7 @@ static void intel_7505_tlbflush(agp_memory *mem)
static
void
intel_7505_cleanup
(
void
)
static
void
intel_7505_cleanup
(
void
)
{
{
aper_size_info_16
*
previous_size
;
struct
aper_size_info_16
*
previous_size
;
previous_size
=
A_SIZE_16
(
agp_bridge
->
previous_size
);
previous_size
=
A_SIZE_16
(
agp_bridge
->
previous_size
);
pci_write_config_byte
(
agp_bridge
->
dev
,
INTEL_I7505_APSIZE
,
pci_write_config_byte
(
agp_bridge
->
dev
,
INTEL_I7505_APSIZE
,
...
@@ -52,7 +52,7 @@ static void intel_7505_cleanup(void)
...
@@ -52,7 +52,7 @@ static void intel_7505_cleanup(void)
static
int
intel_7505_configure
(
void
)
static
int
intel_7505_configure
(
void
)
{
{
u32
temp
;
u32
temp
;
aper_size_info_16
*
current_size
;
struct
aper_size_info_16
*
current_size
;
current_size
=
A_SIZE_16
(
agp_bridge
->
current_size
);
current_size
=
A_SIZE_16
(
agp_bridge
->
current_size
);
...
@@ -76,7 +76,7 @@ static int intel_7505_configure(void)
...
@@ -76,7 +76,7 @@ static int intel_7505_configure(void)
return
0
;
return
0
;
}
}
static
aper_size_info_16
intel_7505_sizes
[
7
]
=
static
struct
aper_size_info_16
intel_7505_sizes
[
7
]
=
{
{
{
256
,
65536
,
6
,
0xf00
},
{
256
,
65536
,
6
,
0xf00
},
{
128
,
32768
,
5
,
0xf20
},
{
128
,
32768
,
5
,
0xf20
},
...
@@ -87,10 +87,21 @@ static aper_size_info_16 intel_7505_sizes[7] =
...
@@ -87,10 +87,21 @@ static aper_size_info_16 intel_7505_sizes[7] =
{
4
,
1024
,
0
,
0xf3f
}
{
4
,
1024
,
0
,
0xf3f
}
};
};
static
unsigned
long
i7x05_mask_memory
(
unsigned
long
addr
,
int
type
)
{
/* Memory type is ignored */
return
addr
|
agp_bridge
->
masks
[
0
].
mask
;
}
static
struct
gatt_mask
i7x05_generic_masks
[]
=
{
{.
mask
=
0x00000017
,
.
type
=
0
}
};
static
int
__init
intel_7505_setup
(
struct
pci_dev
*
pdev
)
static
int
__init
intel_7505_setup
(
struct
pci_dev
*
pdev
)
{
{
agp_bridge
->
masks
=
i
ntel
_generic_masks
;
agp_bridge
->
masks
=
i
7x05
_generic_masks
;
agp_bridge
->
aperture_sizes
=
(
void
*
)
intel_7505_sizes
;
agp_bridge
->
aperture_sizes
=
(
void
*
)
intel_7505_sizes
;
agp_bridge
->
size_type
=
U16_APER_SIZE
;
agp_bridge
->
size_type
=
U16_APER_SIZE
;
agp_bridge
->
num_aperture_sizes
=
7
;
agp_bridge
->
num_aperture_sizes
=
7
;
...
@@ -100,8 +111,8 @@ static int __init intel_7505_setup (struct pci_dev *pdev)
...
@@ -100,8 +111,8 @@ static int __init intel_7505_setup (struct pci_dev *pdev)
agp_bridge
->
fetch_size
=
intel_7505_fetch_size
;
agp_bridge
->
fetch_size
=
intel_7505_fetch_size
;
agp_bridge
->
cleanup
=
intel_7505_cleanup
;
agp_bridge
->
cleanup
=
intel_7505_cleanup
;
agp_bridge
->
tlb_flush
=
intel_7505_tlbflush
;
agp_bridge
->
tlb_flush
=
intel_7505_tlbflush
;
agp_bridge
->
mask_memory
=
i
ntel
_mask_memory
;
agp_bridge
->
mask_memory
=
i
7x05
_mask_memory
;
agp_bridge
->
agp_enable
=
agp_generic_
agp_
enable
;
agp_bridge
->
agp_enable
=
agp_generic_enable
;
agp_bridge
->
cache_flush
=
global_cache_flush
;
agp_bridge
->
cache_flush
=
global_cache_flush
;
agp_bridge
->
create_gatt_table
=
agp_generic_create_gatt_table
;
agp_bridge
->
create_gatt_table
=
agp_generic_create_gatt_table
;
agp_bridge
->
free_gatt_table
=
agp_generic_free_gatt_table
;
agp_bridge
->
free_gatt_table
=
agp_generic_free_gatt_table
;
...
@@ -160,7 +171,7 @@ static int __init agp_lookup_host_bridge (struct pci_dev *pdev)
...
@@ -160,7 +171,7 @@ static int __init agp_lookup_host_bridge (struct pci_dev *pdev)
}
}
static
struct
agp_driver
i7x05_agp_driver
=
{
static
struct
agp_driver
i7x05_agp_driver
=
{
.
owner
=
THIS_MODULE
;
.
owner
=
THIS_MODULE
,
};
};
static
int
__init
agp_i7x05_probe
(
struct
pci_dev
*
dev
,
const
struct
pci_device_id
*
ent
)
static
int
__init
agp_i7x05_probe
(
struct
pci_dev
*
dev
,
const
struct
pci_device_id
*
ent
)
...
@@ -175,7 +186,7 @@ static int __init agp_i7x05_probe (struct pci_dev *dev, const struct pci_device_
...
@@ -175,7 +186,7 @@ static int __init agp_i7x05_probe (struct pci_dev *dev, const struct pci_device_
agp_bridge
->
dev
=
dev
;
agp_bridge
->
dev
=
dev
;
agp_bridge
->
capndx
=
cap_ptr
;
agp_bridge
->
capndx
=
cap_ptr
;
/* Fill in the mode register */
/* Fill in the mode register */
pci_read_config_dword
(
agp_bridge
->
dev
,
agp_bridge
->
capndx
+
PCI_AGP_STATUS
,
&
agp_bridge
->
mode
)
pci_read_config_dword
(
agp_bridge
->
dev
,
agp_bridge
->
capndx
+
PCI_AGP_STATUS
,
&
agp_bridge
->
mode
)
;
i7x05_agp_driver
.
dev
=
dev
;
i7x05_agp_driver
.
dev
=
dev
;
agp_register_driver
(
&
i7x05_agp_driver
);
agp_register_driver
(
&
i7x05_agp_driver
);
return
0
;
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment