Skip to content

Commit

Permalink
[SPARC]: Add of_io{remap,unmap}().
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
davem330 authored and David S. Miller committed Jun 29, 2006
1 parent 95714e1 commit 3ca9fab
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions arch/sparc/kernel/ioport.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
*/

#include <linux/config.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/errno.h>
Expand All @@ -40,6 +41,7 @@
#include <asm/vaddrs.h>
#include <asm/oplib.h>
#include <asm/prom.h>
#include <asm/of_device.h>
#include <asm/sbus.h>
#include <asm/page.h>
#include <asm/pgalloc.h>
Expand Down Expand Up @@ -143,6 +145,21 @@ void __iomem *sbus_ioremap(struct resource *phyres, unsigned long offset,
phyres->start + offset, size, name);
}

void __iomem *of_ioremap(struct resource *res, unsigned long offset,
unsigned long size, char *name)
{
return _sparc_alloc_io(res->flags & 0xF,
res->start + offset,
size, name);
}
EXPORT_SYMBOL(of_ioremap);

void of_iounmap(void __iomem *base, unsigned long size)
{
iounmap(base);
}
EXPORT_SYMBOL(of_iounmap);

/*
*/
void sbus_iounmap(volatile void __iomem *addr, unsigned long size)
Expand Down
17 changes: 17 additions & 0 deletions arch/sparc64/kernel/of_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,23 @@ static int of_device_resume(struct device * dev)
return error;
}

void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name)
{
unsigned long ret = res->start + offset;

if (!request_region(ret, size, name))
ret = 0;

return (void __iomem *) ret;
}
EXPORT_SYMBOL(of_ioremap);

void of_iounmap(void __iomem *base, unsigned long size)
{
release_region((unsigned long) base, size);
}
EXPORT_SYMBOL(of_iounmap);

#ifdef CONFIG_PCI
struct bus_type isa_bus_type = {
.name = "isa",
Expand Down
3 changes: 3 additions & 0 deletions include/asm-sparc/of_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ struct of_device
};
#define to_of_device(d) container_of(d, struct of_device, dev)

extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
extern void of_iounmap(void __iomem *base, unsigned long size);

extern const struct of_device_id *of_match_device(
const struct of_device_id *matches, const struct of_device *dev);

Expand Down
3 changes: 3 additions & 0 deletions include/asm-sparc64/of_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ struct of_device
};
#define to_of_device(d) container_of(d, struct of_device, dev)

extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
extern void of_iounmap(void __iomem *base, unsigned long size);

extern const struct of_device_id *of_match_device(
const struct of_device_id *matches, const struct of_device *dev);

Expand Down

0 comments on commit 3ca9fab

Please sign in to comment.