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
46fe1abc
Commit
46fe1abc
authored
Nov 14, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i830 driver update to DRI CVS tree: use pci_alloc_consistent
instead of home-brew PCI allocations.
parent
abd654f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
26 deletions
+9
-26
drivers/char/drm/i830_dma.c
drivers/char/drm/i830_dma.c
+7
-26
drivers/char/drm/i830_drv.h
drivers/char/drm/i830_drv.h
+2
-0
No files found.
drivers/char/drm/i830_dma.c
View file @
46fe1abc
...
...
@@ -272,29 +272,6 @@ static int i830_dma_get_buffer(drm_device_t *dev, drm_i830_dma_t *d,
return
retcode
;
}
static
unsigned
long
i830_alloc_page
(
drm_device_t
*
dev
)
{
unsigned
long
address
;
address
=
__get_free_page
(
GFP_KERNEL
);
if
(
address
==
0UL
)
return
0
;
get_page
(
virt_to_page
(
address
));
LockPage
(
virt_to_page
(
address
));
return
address
;
}
static
void
i830_free_page
(
drm_device_t
*
dev
,
unsigned
long
page
)
{
if
(
page
)
{
struct
page
*
p
=
virt_to_page
(
page
);
put_page
(
p
);
UnlockPage
(
p
);
free_page
(
page
);
}
}
static
int
i830_dma_cleanup
(
drm_device_t
*
dev
)
{
drm_device_dma_t
*
dma
=
dev
->
dma
;
...
...
@@ -309,7 +286,9 @@ static int i830_dma_cleanup(drm_device_t *dev)
dev_priv
->
ring
.
Size
);
}
if
(
dev_priv
->
hw_status_page
!=
0UL
)
{
i830_free_page
(
dev
,
dev_priv
->
hw_status_page
);
pci_free_consistent
(
dev
->
pdev
,
PAGE_SIZE
,
(
void
*
)
dev_priv
->
hw_status_page
,
dev_priv
->
dma_status_page
);
/* Need to rewrite hardware status page */
I830_WRITE
(
0x02080
,
0x1ffff000
);
}
...
...
@@ -483,7 +462,9 @@ static int i830_dma_initialize(drm_device_t *dev,
dev_priv
->
depth_pitch
=
init
->
depth_pitch
;
/* Program Hardware Status Page */
dev_priv
->
hw_status_page
=
i830_alloc_page
(
dev
);
dev_priv
->
hw_status_page
=
(
unsigned
long
)
pci_alloc_consistent
(
dev
->
pdev
,
PAGE_SIZE
,
&
dev_priv
->
dma_status_page
);
if
(
dev_priv
->
hw_status_page
==
0UL
)
{
dev
->
dev_private
=
(
void
*
)
dev_priv
;
i830_dma_cleanup
(
dev
);
...
...
@@ -493,7 +474,7 @@ static int i830_dma_initialize(drm_device_t *dev,
memset
((
void
*
)
dev_priv
->
hw_status_page
,
0
,
PAGE_SIZE
);
DRM_DEBUG
(
"hw status page @ %lx
\n
"
,
dev_priv
->
hw_status_page
);
I830_WRITE
(
0x02080
,
virt_to_bus
((
void
*
)
dev_priv
->
hw_status_page
)
);
I830_WRITE
(
0x02080
,
dev_priv
->
dma_status_page
);
DRM_DEBUG
(
"Enabled hardware status page
\n
"
);
/* Now we need to init our freelist */
...
...
drivers/char/drm/i830_drv.h
View file @
46fe1abc
...
...
@@ -64,6 +64,8 @@ typedef struct drm_i830_private {
unsigned
long
hw_status_page
;
unsigned
long
counter
;
dma_addr_t
dma_status_page
;
drm_buf_t
*
mmap_buffer
;
u32
front_di1
,
back_di1
,
zi1
;
...
...
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