summaryrefslogtreecommitdiff
path: root/polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h
diff options
context:
space:
mode:
authorCyril Jourdan2012-09-18 14:23:29 +0200
committerCyril Jourdan2012-09-20 10:25:45 +0200
commit046bfd28ce3f2800797bc72e7289f073fdcf66c1 (patch)
tree6527a5809d6839eb1d80da7bb9dca7d065b7ebb0 /polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h
parente543dee8321a9cd09787bbc29f36ad21f7b8b650 (diff)
polux/linux: use every file in common/include/asm/arch, refs #3119
There are a few modifications to do to fit with the work done in the previous commits: irq_prio.h file creation, changes in defines and function names, definition of irqpriotable variable, etc.
Diffstat (limited to 'polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h')
-rw-r--r--polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h b/polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h
deleted file mode 100644
index 90f08e3135..0000000000
--- a/polux/linux-2.6.10/include/asm-arm/arch-mse500/memory.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * linux/include/asm-arm/arch-mse500/memory.h
- *
- * (C) Copyright 2012 SPiDCOM Technologies.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-#ifndef ASM_ARM_ARCH_MSE500_MEMORY_H
-#define ASM_ARM_ARCH_MSE500_MEMORY_H
-
-#include <asm/arch/hardware.h>
-
-#ifndef CONFIG_MMU
-/*
- * Task size: 32M+SDRAM_BASE
- */
-#define TASK_SIZE (SDRAM_BASE+0x02000000UL)
-#endif /* CONFIG_MMU */
-
-/*
- * Page offset: 3GB
- */
-#define PHYS_OFFSET (SDRAM_BASE)
-
-#ifndef CONFIG_MMU
-#define PAGE_OFFSET (PHYS_OFFSET)
-#define END_MEM (SDRAM_BASE + DFT_SDRAM_SIZE)
-
-#define __virt_to_phys__is_a_macro
-#define __phys_to_virt__is_a_macro
-#define __virt_to_phys(vpage) (vpage)
-#define __phys_to_virt(ppage) (ppage)
-#endif /* CONFIG_MMU */
-
-/*
- * Virtual view <-> DMA view memory address translations
- * virt_to_bus: Used to translate the virtual address to an
- * address suitable to be passed to set_dma_addr
- * bus_to_virt: Used to convert an address for DMA operations
- * to an address that the kernel can use.
- */
-#define __virt_to_bus__is_a_macro
-#define __virt_to_bus(x) __virt_to_phys(x)
-#define __bus_to_virt__is_a_macro
-#define __bus_to_virt(x) __phys_to_virt(x)
-
-#endif /* ASM_ARM_ARCH_MSE500_MEMORY_H */