Merge of master.kernel.org:/home/rmk/linux-2.6-rmk.git
This commit is contained in:
@@ -18,48 +18,30 @@
|
|||||||
* Please select one of the following when turning on debugging.
|
* Please select one of the following when turning on debugging.
|
||||||
*/
|
*/
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
#if defined(CONFIG_DEBUG_DC21285_PORT)
|
|
||||||
.macro loadsp, rb
|
#include <asm/arch/debug-macro.S>
|
||||||
mov \rb, #0x42000000
|
|
||||||
.endm
|
#if defined(CONFIG_DEBUG_ICEDCC)
|
||||||
.macro writeb, rb
|
|
||||||
str \rb, [r3, #0x160]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_DEBUG_ICEDCC)
|
|
||||||
.macro loadsp, rb
|
.macro loadsp, rb
|
||||||
.endm
|
.endm
|
||||||
.macro writeb, rb
|
.macro writeb, ch, rb
|
||||||
mcr p14, 0, \rb, c0, c1, 0
|
mcr p14, 0, \ch, c0, c1, 0
|
||||||
.endm
|
.endm
|
||||||
#elif defined(CONFIG_FOOTBRIDGE)
|
#else
|
||||||
|
.macro writeb, ch, rb
|
||||||
|
senduart \ch, \rb
|
||||||
|
.endm
|
||||||
|
|
||||||
|
#if defined(CONFIG_FOOTBRIDGE) || \
|
||||||
|
defined(CONFIG_ARCH_RPC) || \
|
||||||
|
defined(CONFIG_ARCH_INTEGRATOR) || \
|
||||||
|
defined(CONFIG_ARCH_PXA) || \
|
||||||
|
defined(CONFIG_ARCH_IXP4XX) || \
|
||||||
|
defined(CONFIG_ARCH_IXP2000) || \
|
||||||
|
defined(CONFIG_ARCH_LH7A40X) || \
|
||||||
|
defined(CONFIG_ARCH_OMAP)
|
||||||
.macro loadsp, rb
|
.macro loadsp, rb
|
||||||
mov \rb, #0x7c000000
|
addruart \rb
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0x3f8]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_RPC)
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0x03000000
|
|
||||||
orr \rb, \rb, #0x00010000
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0x3f8 << 2]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_INTEGRATOR)
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0x16000000
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_PXA) /* Xscale-type */
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0x40000000
|
|
||||||
orr \rb, \rb, #0x00100000
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0]
|
|
||||||
.endm
|
.endm
|
||||||
#elif defined(CONFIG_ARCH_SA1100)
|
#elif defined(CONFIG_ARCH_SA1100)
|
||||||
.macro loadsp, rb
|
.macro loadsp, rb
|
||||||
@@ -70,64 +52,21 @@
|
|||||||
add \rb, \rb, #0x00010000 @ Ser1
|
add \rb, \rb, #0x00010000 @ Ser1
|
||||||
# endif
|
# endif
|
||||||
.endm
|
.endm
|
||||||
.macro writeb, rb
|
|
||||||
str \rb, [r3, #0x14] @ UTDR
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_IXP4XX)
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0xc8000000
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
str \rb, [r3, #0]
|
|
||||||
#elif defined(CONFIG_ARCH_IXP2000)
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0xc0000000
|
|
||||||
orr \rb, \rb, #0x00030000
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
str \rb, [r3, #0]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_LH7A40X)
|
|
||||||
.macro loadsp, rb
|
|
||||||
ldr \rb, =0x80000700 @ UART2 UARTBASE
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_OMAP)
|
|
||||||
.macro loadsp, rb
|
|
||||||
mov \rb, #0xff000000 @ physical base address
|
|
||||||
add \rb, \rb, #0x00fb0000
|
|
||||||
#if defined(CONFIG_OMAP_LL_DEBUG_UART2) || defined(CONFIG_OMAP_LL_DEBUG_UART3)
|
|
||||||
add \rb, \rb, #0x00000800
|
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_OMAP_LL_DEBUG_UART3
|
|
||||||
add \rb, \rb, #0x00009000
|
|
||||||
#endif
|
|
||||||
.endm
|
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_IOP331)
|
#elif defined(CONFIG_ARCH_IOP331)
|
||||||
.macro loadsp, rb
|
.macro loadsp, rb
|
||||||
mov \rb, #0xff000000
|
mov \rb, #0xff000000
|
||||||
orr \rb, \rb, #0x00ff0000
|
orr \rb, \rb, #0x00ff0000
|
||||||
orr \rb, \rb, #0x0000f700 @ location of the UART
|
orr \rb, \rb, #0x0000f700 @ location of the UART
|
||||||
.endm
|
.endm
|
||||||
.macro writeb, rb
|
|
||||||
str \rb, [r3, #0]
|
|
||||||
.endm
|
|
||||||
#elif defined(CONFIG_ARCH_S3C2410)
|
#elif defined(CONFIG_ARCH_S3C2410)
|
||||||
.macro loadsp, rb
|
.macro loadsp, rb
|
||||||
mov \rb, #0x50000000
|
mov \rb, #0x50000000
|
||||||
add \rb, \rb, #0x4000 * CONFIG_S3C2410_LOWLEVEL_UART_PORT
|
add \rb, \rb, #0x4000 * CONFIG_S3C2410_LOWLEVEL_UART_PORT
|
||||||
.endm
|
.endm
|
||||||
.macro writeb, rb
|
|
||||||
strb \rb, [r3, #0x20]
|
|
||||||
.endm
|
|
||||||
#else
|
#else
|
||||||
#error no serial architecture defined
|
#error no serial architecture defined
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
.macro kputc,val
|
.macro kputc,val
|
||||||
@@ -734,7 +673,7 @@ puts: loadsp r3
|
|||||||
1: ldrb r2, [r0], #1
|
1: ldrb r2, [r0], #1
|
||||||
teq r2, #0
|
teq r2, #0
|
||||||
moveq pc, lr
|
moveq pc, lr
|
||||||
2: writeb r2
|
2: writeb r2, r3
|
||||||
mov r1, #0x00020000
|
mov r1, #0x00020000
|
||||||
3: subs r1, r1, #1
|
3: subs r1, r1, #1
|
||||||
bne 3b
|
bne 3b
|
||||||
|
@@ -26,6 +26,7 @@
|
|||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <asm/arch/imxfb.h>
|
||||||
#include <asm/hardware.h>
|
#include <asm/hardware.h>
|
||||||
|
|
||||||
#include <asm/mach/map.h>
|
#include <asm/mach/map.h>
|
||||||
@@ -228,6 +229,14 @@ static struct platform_device imx_uart2_device = {
|
|||||||
.resource = imx_uart2_resources,
|
.resource = imx_uart2_resources,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct imxfb_mach_info imx_fb_info;
|
||||||
|
|
||||||
|
void __init set_imx_fb_info(struct imxfb_mach_info *hard_imx_fb_info)
|
||||||
|
{
|
||||||
|
memcpy(&imx_fb_info,hard_imx_fb_info,sizeof(struct imxfb_mach_info));
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(set_imx_fb_info);
|
||||||
|
|
||||||
static struct resource imxfb_resources[] = {
|
static struct resource imxfb_resources[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
.start = 0x00205000,
|
.start = 0x00205000,
|
||||||
@@ -241,9 +250,16 @@ static struct resource imxfb_resources[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static u64 fb_dma_mask = ~(u64)0;
|
||||||
|
|
||||||
static struct platform_device imxfb_device = {
|
static struct platform_device imxfb_device = {
|
||||||
.name = "imx-fb",
|
.name = "imx-fb",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &imx_fb_info,
|
||||||
|
.dma_mask = &fb_dma_mask,
|
||||||
|
.coherent_dma_mask = 0xffffffff,
|
||||||
|
},
|
||||||
.num_resources = ARRAY_SIZE(imxfb_resources),
|
.num_resources = ARRAY_SIZE(imxfb_resources),
|
||||||
.resource = imxfb_resources,
|
.resource = imxfb_resources,
|
||||||
};
|
};
|
||||||
|
@@ -216,7 +216,9 @@ integrator_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
|
|||||||
|
|
||||||
write_seqlock(&xtime_lock);
|
write_seqlock(&xtime_lock);
|
||||||
|
|
||||||
// ...clear the interrupt
|
/*
|
||||||
|
* clear the interrupt
|
||||||
|
*/
|
||||||
timer1->TimerClear = 1;
|
timer1->TimerClear = 1;
|
||||||
|
|
||||||
timer_tick(regs);
|
timer_tick(regs);
|
||||||
|
@@ -413,6 +413,7 @@ config CPU_BPREDICT_DISABLE
|
|||||||
config HAS_TLS_REG
|
config HAS_TLS_REG
|
||||||
bool
|
bool
|
||||||
depends on CPU_32v6 && !CPU_32v5 && !CPU_32v4 && !CPU_32v3
|
depends on CPU_32v6 && !CPU_32v5 && !CPU_32v4 && !CPU_32v3
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
This selects support for the CP15 thread register.
|
This selects support for the CP15 thread register.
|
||||||
It is defined to be available on ARMv6 or later. However
|
It is defined to be available on ARMv6 or later. However
|
||||||
|
@@ -90,6 +90,8 @@ struct cfb_info {
|
|||||||
*/
|
*/
|
||||||
u_char ramdac_ctrl;
|
u_char ramdac_ctrl;
|
||||||
u_char ramdac_powerdown;
|
u_char ramdac_powerdown;
|
||||||
|
|
||||||
|
u32 pseudo_palette[16];
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *default_font = "Acorn8x8";
|
static char *default_font = "Acorn8x8";
|
||||||
@@ -1223,9 +1225,7 @@ cyberpro_alloc_fb_info(unsigned int id, char *name)
|
|||||||
{
|
{
|
||||||
struct cfb_info *cfb;
|
struct cfb_info *cfb;
|
||||||
|
|
||||||
cfb = kmalloc(sizeof(struct cfb_info) +
|
cfb = kmalloc(sizeof(struct cfb_info), GFP_KERNEL);
|
||||||
sizeof(u32) * 16, GFP_KERNEL);
|
|
||||||
|
|
||||||
if (!cfb)
|
if (!cfb)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@@ -1281,7 +1281,7 @@ cyberpro_alloc_fb_info(unsigned int id, char *name)
|
|||||||
|
|
||||||
cfb->fb.fbops = &cyber2000fb_ops;
|
cfb->fb.fbops = &cyber2000fb_ops;
|
||||||
cfb->fb.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
|
cfb->fb.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
|
||||||
cfb->fb.pseudo_palette = (void *)(cfb + 1);
|
cfb->fb.pseudo_palette = cfb->pseudo_palette;
|
||||||
|
|
||||||
fb_alloc_cmap(&cfb->fb.cmap, NR_PALETTE, 0);
|
fb_alloc_cmap(&cfb->fb.cmap, NR_PALETTE, 0);
|
||||||
|
|
||||||
|
@@ -1,15 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* linux/include/asm-arm/arch-cl7500/vmalloc.h
|
* linux/include/asm-arm/arch-cl7500/vmalloc.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x1c000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x1c000000)
|
||||||
|
@@ -17,15 +17,4 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -7,15 +7,4 @@
|
|||||||
* it under the terms of the GNU General Public License version 2 as
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
* published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x1f000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x1f000000)
|
||||||
|
@@ -8,17 +8,6 @@
|
|||||||
|
|
||||||
#include <linux/config.h>
|
#include <linux/config.h>
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
|
|
||||||
#ifdef CONFIG_ARCH_FOOTBRIDGE
|
#ifdef CONFIG_ARCH_FOOTBRIDGE
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x30000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x30000000)
|
||||||
#else
|
#else
|
||||||
|
@@ -17,15 +17,4 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -5,17 +5,6 @@
|
|||||||
#ifndef __ARCH_ARM_VMALLOC_H
|
#ifndef __ARCH_ARM_VMALLOC_H
|
||||||
#define __ARCH_ARM_VMALLOC_H
|
#define __ARCH_ARM_VMALLOC_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -17,16 +17,4 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -17,15 +17,4 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -10,9 +10,6 @@
|
|||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
||||||
* area for the same reason. ;)
|
* area for the same reason. ;)
|
||||||
*/
|
*/
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
//#define VMALLOC_END (0xe8000000)
|
//#define VMALLOC_END (0xe8000000)
|
||||||
/* increase usable physical RAM to ~992M per RMK */
|
/* increase usable physical RAM to ~992M per RMK */
|
||||||
#define VMALLOC_END (0xfe000000)
|
#define VMALLOC_END (0xfe000000)
|
||||||
|
@@ -17,7 +17,4 @@
|
|||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
||||||
* area for the same reason. ;)
|
* area for the same reason. ;)
|
||||||
*/
|
*/
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END 0xfaffefff
|
#define VMALLOC_END 0xfaffefff
|
||||||
|
@@ -1,17 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* linux/include/asm-arm/arch-ixp4xx/vmalloc.h
|
* linux/include/asm-arm/arch-ixp4xx/vmalloc.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (0xFF000000)
|
#define VMALLOC_END (0xFF000000)
|
||||||
|
|
||||||
|
@@ -1,15 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* linux/include/asm-arm/arch-l7200/vmalloc.h
|
* linux/include/asm-arm/arch-l7200/vmalloc.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -7,15 +7,4 @@
|
|||||||
* version 2 as published by the Free Software Foundation.
|
* version 2 as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after
|
|
||||||
* the physical memory until the kernel virtual memory starts. That
|
|
||||||
* means that any out-of-bounds memory accesses will hopefully be
|
|
||||||
* caught. The vmalloc() routines leaves a hole of 4kB (one page)
|
|
||||||
* between each vmalloced area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (0xe8000000)
|
#define VMALLOC_END (0xe8000000)
|
||||||
|
@@ -17,17 +17,5 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
|
||||||
|
@@ -8,15 +8,4 @@
|
|||||||
* it under the terms of the GNU General Public License version 2 as
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
* published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (0xe8000000)
|
#define VMALLOC_END (0xe8000000)
|
||||||
|
@@ -7,15 +7,4 @@
|
|||||||
* it under the terms of the GNU General Public License version 2 as
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
* published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x1c000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x1c000000)
|
||||||
|
@@ -19,18 +19,6 @@
|
|||||||
#ifndef __ASM_ARCH_VMALLOC_H
|
#ifndef __ASM_ARCH_VMALLOC_H
|
||||||
#define __ASM_ARCH_VMALLOC_H
|
#define __ASM_ARCH_VMALLOC_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (0xE0000000)
|
#define VMALLOC_END (0xE0000000)
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_VMALLOC_H */
|
#endif /* __ASM_ARCH_VMALLOC_H */
|
||||||
|
@@ -1,15 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* linux/include/asm-arm/arch-sa1100/vmalloc.h
|
* linux/include/asm-arm/arch-sa1100/vmalloc.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (0xe8000000)
|
#define VMALLOC_END (0xe8000000)
|
||||||
|
@@ -1,15 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* linux/include/asm-arm/arch-rpc/vmalloc.h
|
* linux/include/asm-arm/arch-rpc/vmalloc.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
|
||||||
|
@@ -18,16 +18,4 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
|
||||||
* current 8MB value just means that there will be a 8MB "hole" after the
|
|
||||||
* physical memory until the kernel virtual memory starts. That means that
|
|
||||||
* any out-of-bounds memory accesses will hopefully be caught.
|
|
||||||
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
|
||||||
* area for the same reason. ;)
|
|
||||||
*/
|
|
||||||
#define VMALLOC_OFFSET (8*1024*1024)
|
|
||||||
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
|
||||||
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
|
|
||||||
#define VMALLOC_END (PAGE_OFFSET + 0x18000000)
|
#define VMALLOC_END (PAGE_OFFSET + 0x18000000)
|
||||||
|
@@ -16,6 +16,23 @@
|
|||||||
#include <asm/proc-fns.h>
|
#include <asm/proc-fns.h>
|
||||||
#include <asm/arch/vmalloc.h>
|
#include <asm/arch/vmalloc.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Just any arbitrary offset to the start of the vmalloc VM area: the
|
||||||
|
* current 8MB value just means that there will be a 8MB "hole" after the
|
||||||
|
* physical memory until the kernel virtual memory starts. That means that
|
||||||
|
* any out-of-bounds memory accesses will hopefully be caught.
|
||||||
|
* The vmalloc() routines leaves a hole of 4kB between each vmalloced
|
||||||
|
* area for the same reason. ;)
|
||||||
|
*
|
||||||
|
* Note that platforms may override VMALLOC_START, but they must provide
|
||||||
|
* VMALLOC_END. VMALLOC_END defines the (exclusive) limit of this space,
|
||||||
|
* which may not overlap IO space.
|
||||||
|
*/
|
||||||
|
#ifndef VMALLOC_START
|
||||||
|
#define VMALLOC_OFFSET (8*1024*1024)
|
||||||
|
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Hardware-wise, we have a two level page table structure, where the first
|
* Hardware-wise, we have a two level page table structure, where the first
|
||||||
* level has 4096 entries, and the second level has 256 entries. Each entry
|
* level has 4096 entries, and the second level has 256 entries. Each entry
|
||||||
|
Reference in New Issue
Block a user