OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [LINUX_2_4_26_OR32/] [linux/] [linux-2.4/] [include/] [asm-m68k/] [virtconvert.h] - Diff between revs 1279 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1279 Rev 1765
#ifndef __VIRT_CONVERT__
#ifndef __VIRT_CONVERT__
#define __VIRT_CONVERT__
#define __VIRT_CONVERT__
 
 
/*
/*
 * Macros used for converting between virtual and physical mappings.
 * Macros used for converting between virtual and physical mappings.
 */
 */
 
 
#ifdef __KERNEL__
#ifdef __KERNEL__
 
 
#include <linux/config.h>
#include <linux/config.h>
#include <asm/setup.h>
#include <asm/setup.h>
#include <asm/page.h>
#include <asm/page.h>
 
 
#ifdef CONFIG_AMIGA
#ifdef CONFIG_AMIGA
#include <asm/amigahw.h>
#include <asm/amigahw.h>
#endif
#endif
 
 
/*
/*
 * Change virtual addresses to physical addresses and vv.
 * Change virtual addresses to physical addresses and vv.
 */
 */
#ifndef CONFIG_SUN3
#ifndef CONFIG_SUN3
extern unsigned long mm_vtop(unsigned long addr) __attribute__ ((const));
extern unsigned long mm_vtop(unsigned long addr) __attribute__ ((const));
extern unsigned long mm_ptov(unsigned long addr) __attribute__ ((const));
extern unsigned long mm_ptov(unsigned long addr) __attribute__ ((const));
#else
#else
static inline unsigned long mm_vtop(unsigned long vaddr)
static inline unsigned long mm_vtop(unsigned long vaddr)
{
{
        return __pa(vaddr);
        return __pa(vaddr);
}
}
 
 
static inline unsigned long mm_ptov(unsigned long paddr)
static inline unsigned long mm_ptov(unsigned long paddr)
{
{
        return (unsigned long)__va(paddr);
        return (unsigned long)__va(paddr);
}
}
#endif 
#endif 
 
 
#ifdef CONFIG_SINGLE_MEMORY_CHUNK
#ifdef CONFIG_SINGLE_MEMORY_CHUNK
static inline unsigned long virt_to_phys(void *vaddr)
static inline unsigned long virt_to_phys(void *vaddr)
{
{
        return (unsigned long)vaddr - PAGE_OFFSET + m68k_memory[0].addr;
        return (unsigned long)vaddr - PAGE_OFFSET + m68k_memory[0].addr;
}
}
 
 
static inline void * phys_to_virt(unsigned long paddr)
static inline void * phys_to_virt(unsigned long paddr)
{
{
        return (void *)(paddr - m68k_memory[0].addr + PAGE_OFFSET);
        return (void *)(paddr - m68k_memory[0].addr + PAGE_OFFSET);
}
}
#else
#else
static inline unsigned long virt_to_phys(void *address)
static inline unsigned long virt_to_phys(void *address)
{
{
        return mm_vtop((unsigned long)address);
        return mm_vtop((unsigned long)address);
}
}
 
 
static inline void *phys_to_virt(unsigned long address)
static inline void *phys_to_virt(unsigned long address)
{
{
        return (void *) mm_ptov(address);
        return (void *) mm_ptov(address);
}
}
#endif
#endif
 
 
/*
/*
 * IO bus memory addresses are 1:1 with the physical address,
 * IO bus memory addresses are 1:1 with the physical address,
 * except on the PCI bus of the Hades.
 * except on the PCI bus of the Hades.
 */
 */
#ifdef CONFIG_HADES
#ifdef CONFIG_HADES
#define virt_to_bus(a) (virt_to_phys(a) + (MACH_IS_HADES ? 0x80000000 : 0))
#define virt_to_bus(a) (virt_to_phys(a) + (MACH_IS_HADES ? 0x80000000 : 0))
#define bus_to_virt(a) (phys_to_virt((a) - (MACH_IS_HADES ? 0x80000000 : 0)))
#define bus_to_virt(a) (phys_to_virt((a) - (MACH_IS_HADES ? 0x80000000 : 0)))
#else
#else
#define virt_to_bus virt_to_phys
#define virt_to_bus virt_to_phys
#define bus_to_virt phys_to_virt
#define bus_to_virt phys_to_virt
#endif
#endif
 
 
/*
/*
 * Change "struct page" to physical address.
 * Change "struct page" to physical address.
 */
 */
 
 
#define __page_address(page)      (PAGE_OFFSET + (((page) - mem_map) << PAGE_SHIFT))
#define __page_address(page)      (PAGE_OFFSET + (((page) - mem_map) << PAGE_SHIFT))
#define page_to_phys(page)       virt_to_phys((void *)__page_address(page))
#define page_to_phys(page)       virt_to_phys((void *)__page_address(page))
 
 
#endif
#endif
#endif
#endif
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.