-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David S. Miller
committed
Jun 26, 2006
1 parent
49bdd09
commit 90cd243
Showing
4 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8e48aec714f1faf581949f23ae0e3d6e2317433b | ||
refs/heads/master: 749805dc10e955b0170573061f9522a6a21cbae0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Implement the sparc iomap interfaces | ||
*/ | ||
#include <linux/pci.h> | ||
#include <linux/module.h> | ||
#include <asm/io.h> | ||
|
||
/* Create a virtual mapping cookie for an IO port range */ | ||
void __iomem *ioport_map(unsigned long port, unsigned int nr) | ||
{ | ||
return (void __iomem *) (unsigned long) port; | ||
} | ||
|
||
void ioport_unmap(void __iomem *addr) | ||
{ | ||
/* Nothing to do */ | ||
} | ||
EXPORT_SYMBOL(ioport_map); | ||
EXPORT_SYMBOL(ioport_unmap); | ||
|
||
/* Create a virtual mapping cookie for a PCI BAR (memory or IO) */ | ||
void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) | ||
{ | ||
unsigned long start = pci_resource_start(dev, bar); | ||
unsigned long len = pci_resource_len(dev, bar); | ||
unsigned long flags = pci_resource_flags(dev, bar); | ||
|
||
if (!len || !start) | ||
return NULL; | ||
if (maxlen && len > maxlen) | ||
len = maxlen; | ||
if (flags & IORESOURCE_IO) | ||
return ioport_map(start, len); | ||
if (flags & IORESOURCE_MEM) { | ||
if (flags & IORESOURCE_CACHEABLE) | ||
return ioremap(start, len); | ||
return ioremap_nocache(start, len); | ||
} | ||
/* What? */ | ||
return NULL; | ||
} | ||
|
||
void pci_iounmap(struct pci_dev *dev, void __iomem * addr) | ||
{ | ||
/* nothing to do */ | ||
} | ||
EXPORT_SYMBOL(pci_iomap); | ||
EXPORT_SYMBOL(pci_iounmap); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters