Skip to content

Commit

Permalink
[AVR32] Define ioremap_nocache, ioport_map and ioport_unmap
Browse files Browse the repository at this point in the history
These are all defined in terms of ioremap/iounmap since port I/O
isn't really different from memory-mapped I/O on AVR32.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
  • Loading branch information
Haavard Skinnemoen committed Feb 16, 2007
1 parent b60f16e commit 2201ec2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions include/asm-avr32/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ extern void __iounmap(void __iomem *addr);
#define ioremap(offset, size) \
__ioremap((offset), (size), 0)

#define ioremap_nocache(offset, size) \
__ioremap((offset), (size), 0)

#define iounmap(addr) \
__iounmap(addr)

Expand All @@ -263,6 +266,14 @@ extern void __iounmap(void __iomem *addr);
#define page_to_bus page_to_phys
#define bus_to_page phys_to_page

/*
* Create a virtual mapping cookie for an IO port range. There exists
* no such thing as port-based I/O on AVR32, so a regular ioremap()
* should do what we need.
*/
#define ioport_map(port, nr) ioremap(port, nr)
#define ioport_unmap(port) iounmap(port)

#define dma_cache_wback_inv(_start, _size) \
flush_dcache_region(_start, _size)
#define dma_cache_inv(_start, _size) \
Expand Down

0 comments on commit 2201ec2

Please sign in to comment.