2007-05-01 01:37:19 +07:00
|
|
|
/*
|
|
|
|
* DaVinci I/O mapping code
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2006 Texas Instruments
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2008-09-06 18:10:45 +07:00
|
|
|
#include <linux/io.h>
|
2007-05-01 01:37:19 +07:00
|
|
|
|
|
|
|
#include <asm/tlb.h>
|
2007-06-05 22:36:55 +07:00
|
|
|
|
2009-04-14 19:04:16 +07:00
|
|
|
#define BETWEEN(p, st, sz) ((p) >= (st) && (p) < ((st) + (sz)))
|
|
|
|
#define XLATE(p, pst, vst) ((void __iomem *)((p) - (pst) + (vst)))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Intercept ioremap() requests for addresses in our fixed mapping regions.
|
|
|
|
*/
|
|
|
|
void __iomem *davinci_ioremap(unsigned long p, size_t size, unsigned int type)
|
|
|
|
{
|
|
|
|
if (BETWEEN(p, IO_PHYS, IO_SIZE))
|
|
|
|
return XLATE(p, IO_PHYS, IO_VIRT);
|
|
|
|
|
|
|
|
return __arm_ioremap(p, size, type);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(davinci_ioremap);
|
|
|
|
|
|
|
|
void davinci_iounmap(volatile void __iomem *addr)
|
2007-06-05 22:36:55 +07:00
|
|
|
{
|
2009-04-14 19:04:16 +07:00
|
|
|
unsigned long virt = (unsigned long)addr;
|
|
|
|
|
|
|
|
if (virt >= VMALLOC_START && virt < VMALLOC_END)
|
|
|
|
__iounmap(addr);
|
2007-06-05 22:36:55 +07:00
|
|
|
}
|
2009-04-14 19:04:16 +07:00
|
|
|
EXPORT_SYMBOL(davinci_iounmap);
|