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
Kirill Smelkov
linux
Commits
42616be0
Commit
42616be0
authored
Apr 02, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] AGPGART capability handling cleanup
Clean up capability handling in AGPGart. This came forward from 2.4
parent
07c67e8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
105 deletions
+14
-105
drivers/char/agp/agpgart_be.c
drivers/char/agp/agpgart_be.c
+14
-105
No files found.
drivers/char/agp/agpgart_be.c
View file @
42616be0
...
@@ -397,7 +397,7 @@ int agp_unbind_memory(agp_memory * curr)
...
@@ -397,7 +397,7 @@ int agp_unbind_memory(agp_memory * curr)
static
void
agp_generic_agp_enable
(
u32
mode
)
static
void
agp_generic_agp_enable
(
u32
mode
)
{
{
struct
pci_dev
*
device
=
NULL
;
struct
pci_dev
*
device
=
NULL
;
u32
command
,
scratch
,
cap_id
;
u32
command
,
scratch
;
u8
cap_ptr
;
u8
cap_ptr
;
pci_read_config_dword
(
agp_bridge
.
dev
,
pci_read_config_dword
(
agp_bridge
.
dev
,
...
@@ -410,34 +410,8 @@ static void agp_generic_agp_enable(u32 mode)
...
@@ -410,34 +410,8 @@ static void agp_generic_agp_enable(u32 mode)
*/
*/
pci_for_each_dev
(
device
)
pci_for_each_dev
(
device
)
{
{
cap_ptr
=
pci_find_capability
(
device
,
PCI_CAP_ID_AGP
);
/*
* Enable AGP devices. Most will be VGA display but
* some may be coprocessors on non VGA devices too
*/
if
((((
device
->
class
>>
16
)
&
0xFF
)
!=
PCI_BASE_CLASS_DISPLAY
)
&&
(
device
->
class
!=
(
PCI_CLASS_PROCESSOR_CO
<<
8
)))
continue
;
pci_read_config_dword
(
device
,
0x04
,
&
scratch
);
if
(
!
(
scratch
&
0x00100000
))
continue
;
pci_read_config_byte
(
device
,
0x34
,
&
cap_ptr
);
if
(
cap_ptr
!=
0x00
)
{
do
{
pci_read_config_dword
(
device
,
cap_ptr
,
&
cap_id
);
if
((
cap_id
&
0xff
)
!=
0x02
)
cap_ptr
=
(
cap_id
>>
8
)
&
0xff
;
}
while
(((
cap_id
&
0xff
)
!=
0x02
)
&&
(
cap_ptr
!=
0x00
));
}
if
(
cap_ptr
!=
0x00
)
{
if
(
cap_ptr
!=
0x00
)
{
/*
/*
* Ok, here we have a AGP device. Disable impossible
* Ok, here we have a AGP device. Disable impossible
...
@@ -506,25 +480,8 @@ static void agp_generic_agp_enable(u32 mode)
...
@@ -506,25 +480,8 @@ static void agp_generic_agp_enable(u32 mode)
* command registers.
* command registers.
*/
*/
while
((
device
=
pci_find_class
(
PCI_CLASS_DISPLAY_VGA
<<
8
,
pci_for_each_dev
(
device
)
{
device
))
!=
NULL
)
{
cap_ptr
=
pci_find_capability
(
device
,
PCI_CAP_ID_AGP
);
pci_read_config_dword
(
device
,
0x04
,
&
scratch
);
if
(
!
(
scratch
&
0x00100000
))
continue
;
pci_read_config_byte
(
device
,
0x34
,
&
cap_ptr
);
if
(
cap_ptr
!=
0x00
)
{
do
{
pci_read_config_dword
(
device
,
cap_ptr
,
&
cap_id
);
if
((
cap_id
&
0xff
)
!=
0x02
)
cap_ptr
=
(
cap_id
>>
8
)
&
0xff
;
}
while
(((
cap_id
&
0xff
)
!=
0x02
)
&&
(
cap_ptr
!=
0x00
));
}
if
(
cap_ptr
!=
0x00
)
if
(
cap_ptr
!=
0x00
)
pci_write_config_dword
(
device
,
cap_ptr
+
8
,
command
);
pci_write_config_dword
(
device
,
cap_ptr
+
8
,
command
);
}
}
...
@@ -809,9 +766,9 @@ static unsigned long agp_generic_alloc_page(void)
...
@@ -809,9 +766,9 @@ static unsigned long agp_generic_alloc_page(void)
struct
page
*
page
;
struct
page
*
page
;
page
=
alloc_page
(
GFP_KERNEL
);
page
=
alloc_page
(
GFP_KERNEL
);
if
(
page
==
NULL
)
{
if
(
page
==
NULL
)
return
0
;
return
0
;
}
get_page
(
page
);
get_page
(
page
);
LockPage
(
page
);
LockPage
(
page
);
atomic_inc
(
&
agp_bridge
.
current_memory_agp
);
atomic_inc
(
&
agp_bridge
.
current_memory_agp
);
...
@@ -823,10 +780,9 @@ static void agp_generic_destroy_page(unsigned long addr)
...
@@ -823,10 +780,9 @@ static void agp_generic_destroy_page(unsigned long addr)
void
*
pt
=
(
void
*
)
addr
;
void
*
pt
=
(
void
*
)
addr
;
struct
page
*
page
;
struct
page
*
page
;
if
(
pt
==
NULL
)
{
if
(
pt
==
NULL
)
return
;
return
;
}
page
=
virt_to_page
(
pt
);
page
=
virt_to_page
(
pt
);
put_page
(
page
);
put_page
(
page
);
UnlockPage
(
page
);
UnlockPage
(
page
);
...
@@ -3318,24 +3274,8 @@ static void serverworks_agp_enable(u32 mode)
...
@@ -3318,24 +3274,8 @@ static void serverworks_agp_enable(u32 mode)
*/
*/
pci_for_each_dev
(
device
)
pci_for_each_dev
(
device
)
{
{
cap_ptr
=
pci_find_capability
(
device
,
PCI_CAP_ID_AGP
);
/*
* Enable AGP devices. Most will be VGA display but
* some may be coprocessors on non VGA devices too
*/
if
((((
device
->
class
>>
16
)
&
0xFF
)
!=
PCI_BASE_CLASS_DISPLAY
)
&&
(
device
->
class
!=
(
PCI_CLASS_PROCESSOR_CO
<<
8
)))
continue
;
pci_read_config_dword
(
device
,
0x04
,
&
scratch
);
if
(
!
(
scratch
&
0x00100000
))
continue
;
pci_read_config_byte
(
device
,
0x34
,
&
cap_ptr
);
if
(
cap_ptr
!=
0x00
)
{
if
(
cap_ptr
!=
0x00
)
{
do
{
do
{
pci_read_config_dword
(
device
,
pci_read_config_dword
(
device
,
...
@@ -3413,25 +3353,8 @@ static void serverworks_agp_enable(u32 mode)
...
@@ -3413,25 +3353,8 @@ static void serverworks_agp_enable(u32 mode)
* command registers.
* command registers.
*/
*/
while
((
device
=
pci_find_class
(
PCI_CLASS_DISPLAY_VGA
<<
8
,
pci_for_each_dev
(
device
)
{
device
))
!=
NULL
)
{
cap_ptr
=
pci_find_capability
(
device
,
PCI_CAP_ID_AGP
);
pci_read_config_dword
(
device
,
0x04
,
&
scratch
);
if
(
!
(
scratch
&
0x00100000
))
continue
;
pci_read_config_byte
(
device
,
0x34
,
&
cap_ptr
);
if
(
cap_ptr
!=
0x00
)
{
do
{
pci_read_config_dword
(
device
,
cap_ptr
,
&
cap_id
);
if
((
cap_id
&
0xff
)
!=
0x02
)
cap_ptr
=
(
cap_id
>>
8
)
&
0xff
;
}
while
(((
cap_id
&
0xff
)
!=
0x02
)
&&
(
cap_ptr
!=
0x00
));
}
if
(
cap_ptr
!=
0x00
)
if
(
cap_ptr
!=
0x00
)
pci_write_config_dword
(
device
,
cap_ptr
+
8
,
command
);
pci_write_config_dword
(
device
,
cap_ptr
+
8
,
command
);
}
}
...
@@ -3881,7 +3804,6 @@ static int __init agp_find_supported_device(void)
...
@@ -3881,7 +3804,6 @@ static int __init agp_find_supported_device(void)
{
{
struct
pci_dev
*
dev
=
NULL
;
struct
pci_dev
*
dev
=
NULL
;
u8
cap_ptr
=
0x00
;
u8
cap_ptr
=
0x00
;
u32
cap_id
,
scratch
;
if
((
dev
=
pci_find_class
(
PCI_CLASS_BRIDGE_HOST
<<
8
,
NULL
))
==
NULL
)
if
((
dev
=
pci_find_class
(
PCI_CLASS_BRIDGE_HOST
<<
8
,
NULL
))
==
NULL
)
return
-
ENODEV
;
return
-
ENODEV
;
...
@@ -4022,20 +3944,7 @@ static int __init agp_find_supported_device(void)
...
@@ -4022,20 +3944,7 @@ static int __init agp_find_supported_device(void)
#endif
/* CONFIG_AGP_SWORKS */
#endif
/* CONFIG_AGP_SWORKS */
/* find capndx */
/* find capndx */
pci_read_config_dword
(
dev
,
0x04
,
&
scratch
);
cap_ptr
=
pci_find_capability
(
dev
,
PCI_CAP_ID_AGP
);
if
(
!
(
scratch
&
0x00100000
))
return
-
ENODEV
;
pci_read_config_byte
(
dev
,
0x34
,
&
cap_ptr
);
if
(
cap_ptr
!=
0x00
)
{
do
{
pci_read_config_dword
(
dev
,
cap_ptr
,
&
cap_id
);
if
((
cap_id
&
0xff
)
!=
0x02
)
cap_ptr
=
(
cap_id
>>
8
)
&
0xff
;
}
while
(((
cap_id
&
0xff
)
!=
0x02
)
&&
(
cap_ptr
!=
0x00
));
}
if
(
cap_ptr
==
0x00
)
if
(
cap_ptr
==
0x00
)
return
-
ENODEV
;
return
-
ENODEV
;
agp_bridge
.
capndx
=
cap_ptr
;
agp_bridge
.
capndx
=
cap_ptr
;
...
...
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