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
db980d26
Commit
db980d26
authored
Jan 18, 2004
by
Andrew Morton
Committed by
Linus Torvalds
Jan 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sn: pci dma cleanup
From: Pat Gefre <pfg@sgi.com> pci dma cleanup
parent
7e20b26d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
43 deletions
+32
-43
arch/ia64/sn/io/machvec/pci_dma.c
arch/ia64/sn/io/machvec/pci_dma.c
+32
-43
No files found.
arch/ia64/sn/io/machvec/pci_dma.c
View file @
db980d26
...
...
@@ -124,11 +124,6 @@ sn_pci_alloc_consistent(struct pci_dev *hwdev, size_t size, dma_addr_t *dma_hand
unsigned
long
phys_addr
;
pcibr_dmamap_t
dma_map
=
0
;
*
dma_handle
=
0
;
if
(
hwdev
->
dma_mask
<
0xffffffffUL
)
return
NULL
;
/*
* Get hwgraph vertex for the device
*/
...
...
@@ -136,51 +131,48 @@ sn_pci_alloc_consistent(struct pci_dev *hwdev, size_t size, dma_addr_t *dma_hand
vhdl
=
device_sysdata
->
vhdl
;
/*
* Allocate the memory. FIXME: if we're allocating for
* two devices on the same bus, we should at least try to
* allocate memory in the same 2 GB window to avoid using
* ATEs for the translation. See the comment above about the
* 32 bit requirement for this function.
* Allocate the memory.
* FIXME: We should be doing alloc_pages_node for the node closest
* to the PCI device.
*/
if
(
!
(
cpuaddr
=
(
void
*
)
__get_free_pages
(
GFP_ATOMIC
,
get_order
(
size
))))
if
(
!
(
cpuaddr
=
(
void
*
)
__get_free_pages
(
GFP_ATOMIC
,
get_order
(
size
))))
return
NULL
;
/* physical addr. of the memory we just got */
phys_addr
=
__pa
(
cpuaddr
);
/*
* This will try to use a Direct Map register to do the
* 32 bit DMA mapping, but it may not succeed if another
* device on the same bus is already mapped with different
* attributes or to a different memory region.
*/
*
dma_handle
=
pcibr_dmatrans_addr
(
vhdl
,
NULL
,
phys_addr
,
size
,
PCIIO_DMA_CMD
);
/*
* If this device is in PCI-X mode, the system would have
* automatically allocated a 64Bits DMA Address. Error out if the
* device cannot support DAC.
* 64 bit address translations should never fail.
* 32 bit translations can fail if there are insufficient mapping
* resources and the direct map is already wired to a different
* 2GB range.
* 32 bit translations can also return a > 32 bit address, because
* pcibr_dmatrans_addr ignores a missing PCIIO_DMA_A64 flag on
* PCI-X buses.
*/
if
(
*
dma_handle
>
hwdev
->
consistent_dma_mask
)
{
free_pages
((
unsigned
long
)
cpuaddr
,
get_order
(
size
));
return
NULL
;
if
(
hwdev
->
consistent_dma_mask
==
~
0UL
)
*
dma_handle
=
pcibr_dmatrans_addr
(
vhdl
,
NULL
,
phys_addr
,
size
,
PCIIO_DMA_CMD
|
PCIIO_DMA_A64
);
else
{
dma_map
=
pcibr_dmamap_alloc
(
vhdl
,
NULL
,
size
,
PCIIO_DMA_CMD
);
if
(
dma_map
)
{
*
dma_handle
=
(
dma_addr_t
)
pcibr_dmamap_addr
(
dma_map
,
phys_addr
,
size
);
dma_map
->
bd_dma_addr
=
*
dma_handle
;
}
else
{
*
dma_handle
=
pcibr_dmatrans_addr
(
vhdl
,
NULL
,
phys_addr
,
size
,
PCIIO_DMA_CMD
);
}
}
/*
* It is a 32 bit card and we cannot do direct mapping,
* so we try to use an ATE.
*/
if
(
!
(
*
dma_handle
))
{
dma_map
=
pcibr_dmamap_alloc
(
vhdl
,
NULL
,
size
,
PCIIO_DMA_CMD
);
if
(
!
dma_map
)
{
printk
(
KERN_ERR
"sn_pci_alloc_consistent: Unable to "
"allocate anymore 32 bit page map entries.
\n
"
);
return
0
;
if
(
!*
dma_handle
||
*
dma_handle
>
hwdev
->
consistent_dma_mask
)
{
if
(
dma_map
)
{
pcibr_dmamap_done
(
dma_map
);
pcibr_dmamap_free
(
dma_map
);
}
*
dma_handle
=
(
dma_addr_t
)
pcibr_dmamap_addr
(
dma_map
,
phys_addr
,
size
);
dma_map
->
bd_dma_addr
=
*
dma_handle
;
free_pages
((
unsigned
long
)
cpuaddr
,
get_order
(
size
));
return
NULL
;
}
return
cpuaddr
;
...
...
@@ -213,7 +205,6 @@ sn_pci_free_consistent(struct pci_dev *hwdev, size_t size, void *vaddr, dma_addr
if
(
dma_map
)
{
pcibr_dmamap_done
(
dma_map
);
pcibr_dmamap_free
(
dma_map
);
dma_map
->
bd_dma_addr
=
0
;
}
free_pages
((
unsigned
long
)
vaddr
,
get_order
(
size
));
}
...
...
@@ -338,7 +329,6 @@ sn_pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int di
if
(
dma_map
)
{
pcibr_dmamap_done
(
dma_map
);
pcibr_dmamap_free
(
dma_map
);
dma_map
->
bd_dma_addr
=
0
;
}
}
...
...
@@ -359,7 +349,7 @@ sn_pci_unmap_sg(struct pci_dev *hwdev, struct scatterlist *sg, int nents, int di
* the IA64 machvec code.
*
* We map this to the one step pcibr_dmamap_trans interface rather than
* the two step pci
io_dmamap_alloc/pciio
_dmamap_addr because we have
* the two step pci
br_dmamap_alloc/pcibr
_dmamap_addr because we have
* no way of saving the dmamap handle from the alloc to later free
* (which is pretty much unacceptable).
*
...
...
@@ -464,7 +454,6 @@ sn_pci_unmap_single(struct pci_dev *hwdev, dma_addr_t dma_addr, size_t size, int
if
(
dma_map
)
{
pcibr_dmamap_done
(
dma_map
);
pcibr_dmamap_free
(
dma_map
);
dma_map
->
bd_dma_addr
=
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