Merge branch 'for-linus' of git://gitserver.sunplusct.com/linux-2.6-score
* 'for-linus' of git://gitserver.sunplusct.com/linux-2.6-score: score: update email address in MAINTAINERS. score: Cleanup linker script using new macros. score: Make THREAD_SIZE available to assembly files. score: Make PAGE_SIZE available to assembly.
This commit is contained in:
commit
a6e995ad74
4 changed files with 21 additions and 76 deletions
|
@ -4465,7 +4465,7 @@ SCORE ARCHITECTURE
|
||||||
P: Chen Liqin
|
P: Chen Liqin
|
||||||
M: liqin.chen@sunplusct.com
|
M: liqin.chen@sunplusct.com
|
||||||
P: Lennox Wu
|
P: Lennox Wu
|
||||||
M: lennox.wu@sunplusct.com
|
M: lennox.wu@gmail.com
|
||||||
W: http://www.sunplusct.com
|
W: http://www.sunplusct.com
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
|
|
|
@ -2,10 +2,11 @@
|
||||||
#define _ASM_SCORE_PAGE_H
|
#define _ASM_SCORE_PAGE_H
|
||||||
|
|
||||||
#include <linux/pfn.h>
|
#include <linux/pfn.h>
|
||||||
|
#include <linux/const.h>
|
||||||
|
|
||||||
/* PAGE_SHIFT determines the page size */
|
/* PAGE_SHIFT determines the page size */
|
||||||
#define PAGE_SHIFT (12)
|
#define PAGE_SHIFT (12)
|
||||||
#define PAGE_SIZE (1UL << PAGE_SHIFT)
|
#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
|
||||||
#define PAGE_MASK (~(PAGE_SIZE-1))
|
#define PAGE_MASK (~(PAGE_SIZE-1))
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
|
|
|
@ -7,6 +7,15 @@
|
||||||
#define KU_USER 0x08
|
#define KU_USER 0x08
|
||||||
#define KU_KERN 0x00
|
#define KU_KERN 0x00
|
||||||
|
|
||||||
|
#include <asm/page.h>
|
||||||
|
#include <linux/const.h>
|
||||||
|
|
||||||
|
/* thread information allocation */
|
||||||
|
#define THREAD_SIZE_ORDER (1)
|
||||||
|
#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
|
||||||
|
#define THREAD_MASK (THREAD_SIZE - _AC(1,UL))
|
||||||
|
#define __HAVE_ARCH_THREAD_INFO_ALLOCATOR
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
|
@ -62,12 +71,6 @@ struct thread_info {
|
||||||
register struct thread_info *__current_thread_info __asm__("r28");
|
register struct thread_info *__current_thread_info __asm__("r28");
|
||||||
#define current_thread_info() __current_thread_info
|
#define current_thread_info() __current_thread_info
|
||||||
|
|
||||||
/* thread information allocation */
|
|
||||||
#define THREAD_SIZE_ORDER (1)
|
|
||||||
#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
|
|
||||||
#define THREAD_MASK (THREAD_SIZE - 1UL)
|
|
||||||
#define __HAVE_ARCH_THREAD_INFO_ALLOCATOR
|
|
||||||
|
|
||||||
#define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL)
|
#define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL)
|
||||||
#define free_thread_info(info) kfree(info)
|
#define free_thread_info(info) kfree(info)
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <asm-generic/vmlinux.lds.h>
|
#include <asm-generic/vmlinux.lds.h>
|
||||||
|
#include <asm/thread_info.h>
|
||||||
|
#include <asm/page.h>
|
||||||
|
|
||||||
OUTPUT_ARCH(score)
|
OUTPUT_ARCH(score)
|
||||||
ENTRY(_stext)
|
ENTRY(_stext)
|
||||||
|
@ -49,21 +51,9 @@ SECTIONS
|
||||||
. = ALIGN(16);
|
. = ALIGN(16);
|
||||||
RODATA
|
RODATA
|
||||||
|
|
||||||
/* Exception table */
|
EXCEPTION_TABLE(16)
|
||||||
. = ALIGN(16);
|
|
||||||
__ex_table : {
|
|
||||||
__start___ex_table = .;
|
|
||||||
*(__ex_table)
|
|
||||||
__stop___ex_table = .;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* writeable */
|
RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE)
|
||||||
.data ALIGN (4096): {
|
|
||||||
*(.data.init_task)
|
|
||||||
|
|
||||||
DATA_DATA
|
|
||||||
CONSTRUCTORS
|
|
||||||
}
|
|
||||||
|
|
||||||
/* We want the small data sections together, so single-instruction offsets
|
/* We want the small data sections together, so single-instruction offsets
|
||||||
can access them all, and initialized data all before uninitialized, so
|
can access them all, and initialized data all before uninitialized, so
|
||||||
|
@ -72,45 +62,14 @@ SECTIONS
|
||||||
.sdata : {
|
.sdata : {
|
||||||
*(.sdata)
|
*(.sdata)
|
||||||
}
|
}
|
||||||
|
|
||||||
. = ALIGN(32);
|
|
||||||
.data.cacheline_aligned : {
|
|
||||||
*(.data.cacheline_aligned)
|
|
||||||
}
|
|
||||||
_edata = .; /* End of data section */
|
_edata = .; /* End of data section */
|
||||||
|
|
||||||
/* will be freed after init */
|
/* will be freed after init */
|
||||||
. = ALIGN(4096); /* Init code and data */
|
. = ALIGN(PAGE_SIZE); /* Init code and data */
|
||||||
__init_begin = .;
|
__init_begin = .;
|
||||||
|
|
||||||
. = ALIGN(4096);
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
||||||
.init.text : {
|
INIT_DATA_SECTION(16)
|
||||||
_sinittext = .;
|
|
||||||
INIT_TEXT
|
|
||||||
_einittext = .;
|
|
||||||
}
|
|
||||||
.init.data : {
|
|
||||||
INIT_DATA
|
|
||||||
}
|
|
||||||
. = ALIGN(16);
|
|
||||||
.init.setup : {
|
|
||||||
__setup_start = .;
|
|
||||||
*(.init.setup)
|
|
||||||
__setup_end = .;
|
|
||||||
}
|
|
||||||
|
|
||||||
.initcall.init : {
|
|
||||||
__initcall_start = .;
|
|
||||||
INITCALLS
|
|
||||||
__initcall_end = .;
|
|
||||||
}
|
|
||||||
|
|
||||||
.con_initcall.init : {
|
|
||||||
__con_initcall_start = .;
|
|
||||||
*(.con_initcall.init)
|
|
||||||
__con_initcall_end = .;
|
|
||||||
}
|
|
||||||
SECURITY_INIT
|
|
||||||
|
|
||||||
/* .exit.text is discarded at runtime, not link time, to deal with
|
/* .exit.text is discarded at runtime, not link time, to deal with
|
||||||
* references from .rodata
|
* references from .rodata
|
||||||
|
@ -121,28 +80,10 @@ SECTIONS
|
||||||
.exit.data : {
|
.exit.data : {
|
||||||
EXIT_DATA
|
EXIT_DATA
|
||||||
}
|
}
|
||||||
#if defined(CONFIG_BLK_DEV_INITRD)
|
. = ALIGN(PAGE_SIZE);
|
||||||
.init.ramfs ALIGN(4096): {
|
|
||||||
__initramfs_start = .;
|
|
||||||
*(.init.ramfs)
|
|
||||||
__initramfs_end = .;
|
|
||||||
. = ALIGN(4);
|
|
||||||
LONG(0);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
. = ALIGN(4096);
|
|
||||||
__init_end = .;
|
__init_end = .;
|
||||||
/* freed after init ends here */
|
/* freed after init ends here */
|
||||||
|
|
||||||
__bss_start = .; /* BSS */
|
BSS_SECTION(0, 0, 0)
|
||||||
.sbss : {
|
|
||||||
*(.sbss)
|
|
||||||
*(.scommon)
|
|
||||||
}
|
|
||||||
.bss : {
|
|
||||||
*(.bss)
|
|
||||||
*(COMMON)
|
|
||||||
}
|
|
||||||
__bss_stop = .;
|
|
||||||
_end = .;
|
_end = .;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue