From 292ae64c5ca88bead45f5e890401af70799898bc Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Fri, 27 Mar 2009 14:25:38 +0100 Subject: [PATCH] --- yaml --- r: 143041 b: refs/heads/master c: 9981cd94d526a300dbef58048b1d281386b7289c h: refs/heads/master i: 143039: 0c248f9f069f051bc3c32d021b4d96d88ed265ff v: v3 --- [refs] | 2 +- trunk/arch/microblaze/include/asm/clinkage.h | 1 + .../arch/microblaze/include/asm/kmap_types.h | 29 +++++++++++++++++++ trunk/arch/microblaze/include/asm/linkage.h | 15 ++++++++++ trunk/arch/microblaze/include/asm/sections.h | 25 ++++++++++++++++ 5 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 trunk/arch/microblaze/include/asm/clinkage.h create mode 100644 trunk/arch/microblaze/include/asm/kmap_types.h create mode 100644 trunk/arch/microblaze/include/asm/linkage.h create mode 100644 trunk/arch/microblaze/include/asm/sections.h diff --git a/[refs] b/[refs] index 2303f058bd52..d442b4d0a857 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4511ec153afd132da9f4308e7db394820eb52129 +refs/heads/master: 9981cd94d526a300dbef58048b1d281386b7289c diff --git a/trunk/arch/microblaze/include/asm/clinkage.h b/trunk/arch/microblaze/include/asm/clinkage.h new file mode 100644 index 000000000000..9e218435a55c --- /dev/null +++ b/trunk/arch/microblaze/include/asm/clinkage.h @@ -0,0 +1 @@ +#include diff --git a/trunk/arch/microblaze/include/asm/kmap_types.h b/trunk/arch/microblaze/include/asm/kmap_types.h new file mode 100644 index 000000000000..4d7e222f5dd7 --- /dev/null +++ b/trunk/arch/microblaze/include/asm/kmap_types.h @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2006 Atmark Techno, Inc. + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + */ + +#ifndef _ASM_MICROBLAZE_KMAP_TYPES_H +#define _ASM_MICROBLAZE_KMAP_TYPES_H + +enum km_type { + KM_BOUNCE_READ, + KM_SKB_SUNRPC_DATA, + KM_SKB_DATA_SOFTIRQ, + KM_USER0, + KM_USER1, + KM_BIO_SRC_IRQ, + KM_BIO_DST_IRQ, + KM_PTE0, + KM_PTE1, + KM_IRQ0, + KM_IRQ1, + KM_SOFTIRQ0, + KM_SOFTIRQ1, + KM_TYPE_NR, +}; + +#endif /* _ASM_MICROBLAZE_KMAP_TYPES_H */ diff --git a/trunk/arch/microblaze/include/asm/linkage.h b/trunk/arch/microblaze/include/asm/linkage.h new file mode 100644 index 000000000000..3a8e36d057eb --- /dev/null +++ b/trunk/arch/microblaze/include/asm/linkage.h @@ -0,0 +1,15 @@ +/* + * Copyright (C) 2006 Atmark Techno, Inc. + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + */ + +#ifndef _ASM_MICROBLAZE_LINKAGE_H +#define _ASM_MICROBLAZE_LINKAGE_H + +#define __ALIGN .align 4 +#define __ALIGN_STR ".align 4" + +#endif /* _ASM_MICROBLAZE_LINKAGE_H */ diff --git a/trunk/arch/microblaze/include/asm/sections.h b/trunk/arch/microblaze/include/asm/sections.h new file mode 100644 index 000000000000..8434a43e5421 --- /dev/null +++ b/trunk/arch/microblaze/include/asm/sections.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2006 Atmark Techno, Inc. + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + */ + +#ifndef _ASM_MICROBLAZE_SECTIONS_H +#define _ASM_MICROBLAZE_SECTIONS_H + +#include + +# ifndef __ASSEMBLY__ +extern char _ssbss[], _esbss[]; +extern unsigned long __ivt_start[], __ivt_end[]; + +# ifdef CONFIG_MTD_UCLINUX +extern char *_ebss; +# endif + +extern u32 _fdt_start[], _fdt_end[]; + +# endif /* !__ASSEMBLY__ */ +#endif /* _ASM_MICROBLAZE_SECTIONS_H */