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
63098c73
Commit
63098c73
authored
May 21, 2003
by
Dave Jones
Committed by
Dave Jones
May 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AGPGART] Make alpha AGP work again.
From Jeff Wiedemeier and Richard Henderson
parent
459bf5a9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
15 deletions
+11
-15
arch/alpha/kernel/core_marvel.c
arch/alpha/kernel/core_marvel.c
+0
-1
arch/alpha/kernel/core_titan.c
arch/alpha/kernel/core_titan.c
+0
-1
drivers/char/agp/alpha-agp.c
drivers/char/agp/alpha-agp.c
+11
-12
include/asm-alpha/agp_backend.h
include/asm-alpha/agp_backend.h
+0
-1
No files found.
arch/alpha/kernel/core_marvel.c
View file @
63098c73
...
...
@@ -1075,7 +1075,6 @@ marvel_agp_info(void)
/*
* Fill it in.
*/
agp
->
type
=
ALPHA_CORE_AGP
;
agp
->
hose
=
hose
;
agp
->
private
=
NULL
;
agp
->
ops
=
&
marvel_agp_ops
;
...
...
arch/alpha/kernel/core_titan.c
View file @
63098c73
...
...
@@ -763,7 +763,6 @@ titan_agp_info(void)
/*
* Fill it in.
*/
agp
->
type
=
ALPHA_CORE_AGP
;
agp
->
hose
=
hose
;
agp
->
private
=
port
;
agp
->
ops
=
&
titan_agp_ops
;
...
...
drivers/char/agp/alpha-agp.c
View file @
63098c73
...
...
@@ -117,17 +117,18 @@ static int alpha_core_agp_remove_memory(struct agp_memory *mem, off_t pg_start,
struct
agp_bridge_driver
alpha_core_agp_driver
=
{
.
owner
=
THIS_MODULE
,
.
aperture_sizes
=
aper_size
,
.
current_size
=
aper_size
,
/* only one entry */
.
size_type
=
FIXED_APER_SIZE
,
.
aperture_sizes
=
alpha_core_agp_sizes
,
.
num_aperture_sizes
=
1
,
.
configure
=
alpha_core_agp_configure
,
.
size_type
=
FIXED_APER_SIZE
,
.
cant_use_aperture
=
1
,
.
masks
=
NULL
,
.
fetch_size
=
alpha_core_agp_fetch_size
,
.
configure
=
alpha_core_agp_configure
,
.
agp_enable
=
alpha_core_agp_enable
,
.
cleanup
=
alpha_core_agp_cleanup
,
.
tlb_flush
=
alpha_core_agp_tlbflush
,
.
mask_memory
=
agp_generic_mask_memory
,
.
masks
=
NULL
,
.
agp_enable
=
alpha_core_agp_enable
,
.
cache_flush
=
global_cache_flush
,
.
create_gatt_table
=
alpha_core_agp_nop
,
.
free_gatt_table
=
alpha_core_agp_nop
,
...
...
@@ -137,9 +138,6 @@ struct agp_bridge_driver alpha_core_agp_driver = {
.
free_by_type
=
agp_generic_free_by_type
,
.
agp_alloc_page
=
agp_generic_alloc_page
,
.
agp_destroy_page
=
agp_generic_destroy_page
,
.
mode
=
agp
->
capability
.
lw
,
.
cant_use_aperture
=
1
,
.
vm_ops
=
&
alpha_core_agp_vm_ops
,
};
struct
agp_bridge_data
*
alpha_bridge
;
...
...
@@ -160,11 +158,9 @@ alpha_core_agp_setup(void)
* Build the aperture size descriptor
*/
aper_size
=
alpha_core_agp_sizes
;
if
(
!
aper_size
)
return
-
ENOMEM
;
aper_size
->
size
=
agp
->
aperture
.
size
/
(
1024
*
1024
);
aper_size
->
num_entries
=
agp
->
aperture
.
size
/
PAGE_SIZE
;
aper_size
->
page_order
=
ffs
(
aper_size
->
num_entries
/
1024
)
-
1
;
aper_size
->
page_order
=
__ffs
(
aper_size
->
num_entries
/
1024
)
;
/*
* Build a fake pci_dev struct
...
...
@@ -181,8 +177,11 @@ alpha_core_agp_setup(void)
goto
fail
;
alpha_bridge
->
driver
=
&
alpha_core_agp_driver
;
alpha_bridge
->
vm_ops
=
&
alpha_core_agp_vm_ops
;
alpha_bridge
->
current_size
=
aper_size
;
/* only 1 size */
alpha_bridge
->
dev_private_data
=
agp
;
alpha_bridge
->
dev
=
pdev
;
alpha_bridge
->
mode
=
agp
->
capability
.
lw
;
printk
(
KERN_INFO
"Detected AGP on hose %d
\n
"
,
agp
->
hose
->
index
);
return
agp_add_bridge
(
alpha_bridge
);
...
...
include/asm-alpha/agp_backend.h
View file @
63098c73
...
...
@@ -17,7 +17,6 @@ typedef union _alpha_agp_mode {
}
alpha_agp_mode
;
typedef
struct
_alpha_agp_info
{
enum
chipset_type
type
;
struct
pci_controller
*
hose
;
struct
{
dma_addr_t
bus_base
;
...
...
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