Skip to content

Commit

Permalink
yet another stable kernel release : 3.14.30
Browse files Browse the repository at this point in the history
  • Loading branch information
V3n3RiX committed Jan 27, 2015
1 parent db92227 commit fab00d0
Show file tree
Hide file tree
Showing 102 changed files with 1,041 additions and 677 deletions.
1 change: 1 addition & 0 deletions Documentation/kernel-parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1172,6 +1172,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
i8042.notimeout [HW] Ignore timeout condition signalled by controller
i8042.reset [HW] Reset the controller during init and cleanup
i8042.unlock [HW] Unlock (ignore) the keylock
i8042.kbdreset [HW] Reset device connected to KBD port

i810= [HW,DRM]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION = 3
PATCHLEVEL = 14
SUBLEVEL = 29
SUBLEVEL = 30
EXTRAVERSION =
NAME = Remembering Coco

Expand Down
18 changes: 9 additions & 9 deletions arch/arc/boot/dts/nsimosci.dts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/* this is for console on PGU */
/* bootargs = "console=tty0 consoleblank=0"; */
/* this is for console on serial */
bootargs = "earlycon=uart8250,mmio32,0xc0000000,115200n8 console=tty0 console=ttyS0,115200n8 consoleblank=0 debug";
bootargs = "earlycon=uart8250,mmio32,0xf0000000,115200n8 console=tty0 console=ttyS0,115200n8 consoleblank=0 debug";
};

aliases {
Expand All @@ -46,9 +46,9 @@
#interrupt-cells = <1>;
};

uart0: serial@c0000000 {
uart0: serial@f0000000 {
compatible = "ns8250";
reg = <0xc0000000 0x2000>;
reg = <0xf0000000 0x2000>;
interrupts = <11>;
clock-frequency = <3686400>;
baud = <115200>;
Expand All @@ -57,21 +57,21 @@
no-loopback-test = <1>;
};

pgu0: pgu@c9000000 {
pgu0: pgu@f9000000 {
compatible = "snps,arcpgufb";
reg = <0xc9000000 0x400>;
reg = <0xf9000000 0x400>;
};

ps2: ps2@c9001000 {
ps2: ps2@f9001000 {
compatible = "snps,arc_ps2";
reg = <0xc9000400 0x14>;
reg = <0xf9000400 0x14>;
interrupts = <13>;
interrupt-names = "arc_ps2_irq";
};

eth0: ethernet@c0003000 {
eth0: ethernet@f0003000 {
compatible = "snps,oscilan";
reg = <0xc0003000 0x44>;
reg = <0xf0003000 0x44>;
interrupts = <7>, <8>;
interrupt-names = "rx", "tx";
};
Expand Down
14 changes: 0 additions & 14 deletions arch/arc/include/asm/linkage.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,6 @@

#define ASM_NL ` /* use '`' to mark new line in macro */

/* Can't use the ENTRY macro in linux/linkage.h
* gas considers ';' as comment vs. newline
*/
.macro ARC_ENTRY name
.global \name
.align 4
\name:
.endm

.macro ARC_EXIT name
#define ASM_PREV_SYM_ADDR(name) .-##name
.size \ name, ASM_PREV_SYM_ADDR(\name)
.endm

/* annotation for data we want in DCCM - if enabled in .config */
.macro ARCFP_DATA nm
#ifdef CONFIG_ARC_HAS_DCCM
Expand Down
2 changes: 1 addition & 1 deletion arch/arc/kernel/ctx_sw_asm.S
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ __switch_to:
ld.ab blink, [sp, 4]
j [blink]

ARC_EXIT __switch_to
END(__switch_to)
52 changes: 26 additions & 26 deletions arch/arc/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ VECTOR EV_Extension ; 0x130, Extn Intruction Excp (0x26)
VECTOR reserved ; Reserved Exceptions
.endr

#include <linux/linkage.h> /* ARC_{EXTRY,EXIT} */
#include <linux/linkage.h> /* {EXTRY,EXIT} */
#include <asm/entry.h> /* SAVE_ALL_{INT1,INT2,SYS...} */
#include <asm/errno.h>
#include <asm/arcregs.h>
Expand Down Expand Up @@ -184,7 +184,7 @@ reserved: ; processor restart
; ---------------------------------------------
; Level 2 ISR: Can interrupt a Level 1 ISR
; ---------------------------------------------
ARC_ENTRY handle_interrupt_level2
ENTRY(handle_interrupt_level2)

; TODO-vineetg for SMP this wont work
; free up r9 as scratchpad
Expand Down Expand Up @@ -225,14 +225,14 @@ ARC_ENTRY handle_interrupt_level2

b ret_from_exception

ARC_EXIT handle_interrupt_level2
END(handle_interrupt_level2)

#endif

; ---------------------------------------------
; Level 1 ISR
; ---------------------------------------------
ARC_ENTRY handle_interrupt_level1
ENTRY(handle_interrupt_level1)

/* free up r9 as scratchpad */
#ifdef CONFIG_SMP
Expand Down Expand Up @@ -265,15 +265,15 @@ ARC_ENTRY handle_interrupt_level1
sr r8, [AUX_IRQ_LV12] ; clear bit in Sticky Status Reg

b ret_from_exception
ARC_EXIT handle_interrupt_level1
END(handle_interrupt_level1)

;################### Non TLB Exception Handling #############################

; ---------------------------------------------
; Instruction Error Exception Handler
; ---------------------------------------------

ARC_ENTRY instr_service
ENTRY(instr_service)

EXCEPTION_PROLOGUE

Expand All @@ -284,13 +284,13 @@ ARC_ENTRY instr_service

bl do_insterror_or_kprobe
b ret_from_exception
ARC_EXIT instr_service
END(instr_service)

; ---------------------------------------------
; Memory Error Exception Handler
; ---------------------------------------------

ARC_ENTRY mem_service
ENTRY(mem_service)

EXCEPTION_PROLOGUE

Expand All @@ -301,13 +301,13 @@ ARC_ENTRY mem_service

bl do_memory_error
b ret_from_exception
ARC_EXIT mem_service
END(mem_service)

; ---------------------------------------------
; Machine Check Exception Handler
; ---------------------------------------------

ARC_ENTRY EV_MachineCheck
ENTRY(EV_MachineCheck)

EXCEPTION_PROLOGUE

Expand All @@ -331,13 +331,13 @@ ARC_ENTRY EV_MachineCheck

j do_machine_check_fault

ARC_EXIT EV_MachineCheck
END(EV_MachineCheck)

; ---------------------------------------------
; Protection Violation Exception Handler
; ---------------------------------------------

ARC_ENTRY EV_TLBProtV
ENTRY(EV_TLBProtV)

EXCEPTION_PROLOGUE

Expand Down Expand Up @@ -385,12 +385,12 @@ ARC_ENTRY EV_TLBProtV

b ret_from_exception

ARC_EXIT EV_TLBProtV
END(EV_TLBProtV)

; ---------------------------------------------
; Privilege Violation Exception Handler
; ---------------------------------------------
ARC_ENTRY EV_PrivilegeV
ENTRY(EV_PrivilegeV)

EXCEPTION_PROLOGUE

Expand All @@ -401,12 +401,12 @@ ARC_ENTRY EV_PrivilegeV

bl do_privilege_fault
b ret_from_exception
ARC_EXIT EV_PrivilegeV
END(EV_PrivilegeV)

; ---------------------------------------------
; Extension Instruction Exception Handler
; ---------------------------------------------
ARC_ENTRY EV_Extension
ENTRY(EV_Extension)

EXCEPTION_PROLOGUE

Expand All @@ -417,7 +417,7 @@ ARC_ENTRY EV_Extension

bl do_extension_fault
b ret_from_exception
ARC_EXIT EV_Extension
END(EV_Extension)

;######################### System Call Tracing #########################

Expand Down Expand Up @@ -504,7 +504,7 @@ trap_with_param:
; (2) Break Points
;------------------------------------------------------------------

ARC_ENTRY EV_Trap
ENTRY(EV_Trap)

EXCEPTION_PROLOGUE

Expand Down Expand Up @@ -534,9 +534,9 @@ ARC_ENTRY EV_Trap
jl [r9] ; Entry into Sys Call Handler

; fall through to ret_from_system_call
ARC_EXIT EV_Trap
END(EV_Trap)

ARC_ENTRY ret_from_system_call
ENTRY(ret_from_system_call)

st r0, [sp, PT_r0] ; sys call return value in pt_regs

Expand All @@ -546,7 +546,7 @@ ARC_ENTRY ret_from_system_call
;
; If ret to user mode do we need to handle signals, schedule() et al.

ARC_ENTRY ret_from_exception
ENTRY(ret_from_exception)

; Pre-{IRQ,Trap,Exception} K/U mode from pt_regs->status32
ld r8, [sp, PT_status32] ; returning to User/Kernel Mode
Expand Down Expand Up @@ -728,9 +728,9 @@ not_level1_interrupt:
debug_marker_syscall:
rtie

ARC_EXIT ret_from_exception
END(ret_from_exception)

ARC_ENTRY ret_from_fork
ENTRY(ret_from_fork)
; when the forked child comes here from the __switch_to function
; r0 has the last task pointer.
; put last task in scheduler queue
Expand All @@ -747,11 +747,11 @@ ARC_ENTRY ret_from_fork
; special case of kernel_thread entry point returning back due to
; kernel_execve() - pretend return from syscall to ret to userland
b ret_from_exception
ARC_EXIT ret_from_fork
END(ret_from_fork)

;################### Special Sys Call Wrappers ##########################

ARC_ENTRY sys_clone_wrapper
ENTRY(sys_clone_wrapper)
SAVE_CALLEE_SAVED_USER
bl @sys_clone
DISCARD_CALLEE_SAVED_USER
Expand All @@ -761,7 +761,7 @@ ARC_ENTRY sys_clone_wrapper
bnz tracesys_exit

b ret_from_system_call
ARC_EXIT sys_clone_wrapper
END(sys_clone_wrapper)

#ifdef CONFIG_ARC_DW2_UNWIND
; Workaround for bug 94179 (STAR ):
Expand Down
6 changes: 3 additions & 3 deletions arch/arc/lib/memcmp.S
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* published by the Free Software Foundation.
*/

#include <asm/linkage.h>
#include <linux/linkage.h>

#ifdef __LITTLE_ENDIAN__
#define WORD2 r2
Expand All @@ -16,7 +16,7 @@
#define SHIFT r2
#endif

ARC_ENTRY memcmp
ENTRY(memcmp)
or r12,r0,r1
asl_s r12,r12,30
sub r3,r2,1
Expand Down Expand Up @@ -121,4 +121,4 @@ ARC_ENTRY memcmp
.Lnil:
j_s.d [blink]
mov r0,0
ARC_EXIT memcmp
END(memcmp)
6 changes: 3 additions & 3 deletions arch/arc/lib/memcpy-700.S
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* published by the Free Software Foundation.
*/

#include <asm/linkage.h>
#include <linux/linkage.h>

ARC_ENTRY memcpy
ENTRY(memcpy)
or r3,r0,r1
asl_s r3,r3,30
mov_s r5,r0
Expand Down Expand Up @@ -63,4 +63,4 @@ ARC_ENTRY memcpy
.Lendbloop:
j_s.d [blink]
stb r12,[r5,0]
ARC_EXIT memcpy
END(memcpy)
10 changes: 5 additions & 5 deletions arch/arc/lib/memset.S
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
* published by the Free Software Foundation.
*/

#include <asm/linkage.h>
#include <linux/linkage.h>

#define SMALL 7 /* Must be at least 6 to deal with alignment/loop issues. */

ARC_ENTRY memset
ENTRY(memset)
mov_s r4,r0
or r12,r0,r2
bmsk.f r12,r12,1
Expand Down Expand Up @@ -46,14 +46,14 @@ ARC_ENTRY memset
stb.ab r1,[r4,1]
.Ltiny_end:
j_s [blink]
ARC_EXIT memset
END(memset)

; memzero: @r0 = mem, @r1 = size_t
; memset: @r0 = mem, @r1 = char, @r2 = size_t

ARC_ENTRY memzero
ENTRY(memzero)
; adjust bzero args to memset args
mov r2, r1
mov r1, 0
b memset ;tail call so need to tinker with blink
ARC_EXIT memzero
END(memzero)
6 changes: 3 additions & 3 deletions arch/arc/lib/strchr-700.S
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
presence of the norm instruction makes it easier to operate on whole
words branch-free. */

#include <asm/linkage.h>
#include <linux/linkage.h>

ARC_ENTRY strchr
ENTRY(strchr)
extb_s r1,r1
asl r5,r1,8
bmsk r2,r0,1
Expand Down Expand Up @@ -130,4 +130,4 @@ ARC_ENTRY strchr
j_s.d [blink]
mov.mi r0,0
#endif /* ENDIAN */
ARC_EXIT strchr
END(strchr)
Loading

0 comments on commit fab00d0

Please sign in to comment.