Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
6afb3c32
Commit
6afb3c32
authored
Feb 13, 2004
by
Keith M. Wesolowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SPARC32]: Mask PIL in local_irq operations.
Also, un-inline large local_irq functions.
parent
66ef3277
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
71 additions
and
100 deletions
+71
-100
arch/sparc/kernel/irq.c
arch/sparc/kernel/irq.c
+60
-0
arch/sparc/kernel/process.c
arch/sparc/kernel/process.c
+5
-4
arch/sparc/kernel/sparc_ksyms.c
arch/sparc/kernel/sparc_ksyms.c
+0
-4
include/asm-sparc/system.h
include/asm-sparc/system.h
+6
-92
No files found.
arch/sparc/kernel/irq.c
View file @
6afb3c32
...
@@ -52,6 +52,66 @@
...
@@ -52,6 +52,66 @@
/* Used to protect the IRQ action lists */
/* Used to protect the IRQ action lists */
spinlock_t
irq_action_lock
=
SPIN_LOCK_UNLOCKED
;
spinlock_t
irq_action_lock
=
SPIN_LOCK_UNLOCKED
;
#ifdef CONFIG_SMP
#define SMP_NOP2 "nop; nop;\n\t"
#define SMP_NOP3 "nop; nop; nop;\n\t"
#else
#define SMP_NOP2
#define SMP_NOP3
#endif
/* SMP */
unsigned
long
__local_irq_save
(
void
)
{
unsigned
long
retval
;
unsigned
long
tmp
;
__asm__
__volatile__
(
"rd %%psr, %0
\n\t
"
SMP_NOP3
/* Sun4m + Cypress + SMP bug */
"or %0, %2, %1
\n\t
"
"wr %1, 0, %%psr
\n\t
"
"nop; nop; nop
\n
"
:
"=&r"
(
retval
),
"=r"
(
tmp
)
:
"i"
(
PSR_PIL
)
:
"memory"
);
return
retval
;
}
void
local_irq_enable
(
void
)
{
unsigned
long
tmp
;
__asm__
__volatile__
(
"rd %%psr, %0
\n\t
"
SMP_NOP3
/* Sun4m + Cypress + SMP bug */
"andn %0, %1, %0
\n\t
"
"wr %0, 0, %%psr
\n\t
"
"nop; nop; nop
\n
"
:
"=&r"
(
tmp
)
:
"i"
(
PSR_PIL
)
:
"memory"
);
}
void
local_irq_restore
(
unsigned
long
old_psr
)
{
unsigned
long
tmp
;
__asm__
__volatile__
(
"rd %%psr, %0
\n\t
"
"and %2, %1, %2
\n\t
"
SMP_NOP2
/* Sun4m + Cypress + SMP bug */
"andn %0, %1, %0
\n\t
"
"wr %0, %2, %%psr
\n\t
"
"nop; nop; nop
\n
"
:
"=&r"
(
tmp
)
:
"i"
(
PSR_PIL
),
"r"
(
old_psr
)
:
"memory"
);
}
EXPORT_SYMBOL
(
__local_irq_save
);
EXPORT_SYMBOL
(
local_irq_enable
);
EXPORT_SYMBOL
(
local_irq_restore
);
/*
/*
* Dave Redman (djhr@tadpole.co.uk)
* Dave Redman (djhr@tadpole.co.uk)
*
*
...
...
arch/sparc/kernel/process.c
View file @
6afb3c32
...
@@ -148,11 +148,12 @@ extern char reboot_command [];
...
@@ -148,11 +148,12 @@ extern char reboot_command [];
extern
void
(
*
prom_palette
)(
int
);
extern
void
(
*
prom_palette
)(
int
);
/* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */
void
machine_halt
(
void
)
void
machine_halt
(
void
)
{
{
sti
();
local_irq_enable
();
mdelay
(
8
);
mdelay
(
8
);
cli
();
local_irq_disable
();
if
(
!
serial_console
&&
prom_palette
)
if
(
!
serial_console
&&
prom_palette
)
prom_palette
(
1
);
prom_palette
(
1
);
prom_halt
();
prom_halt
();
...
@@ -165,9 +166,9 @@ void machine_restart(char * cmd)
...
@@ -165,9 +166,9 @@ void machine_restart(char * cmd)
{
{
char
*
p
;
char
*
p
;
sti
();
local_irq_enable
();
mdelay
(
8
);
mdelay
(
8
);
cli
();
local_irq_disable
();
p
=
strchr
(
reboot_command
,
'\n'
);
p
=
strchr
(
reboot_command
,
'\n'
);
if
(
p
)
*
p
=
0
;
if
(
p
)
*
p
=
0
;
...
...
arch/sparc/kernel/sparc_ksyms.c
View file @
6afb3c32
...
@@ -159,10 +159,6 @@ EXPORT_SYMBOL(___change_bit);
...
@@ -159,10 +159,6 @@ EXPORT_SYMBOL(___change_bit);
/* IRQ implementation. */
/* IRQ implementation. */
EXPORT_SYMBOL
(
global_irq_holder
);
EXPORT_SYMBOL
(
global_irq_holder
);
EXPORT_SYMBOL
(
synchronize_irq
);
EXPORT_SYMBOL
(
synchronize_irq
);
EXPORT_SYMBOL
(
__global_cli
);
EXPORT_SYMBOL
(
__global_sti
);
EXPORT_SYMBOL
(
__global_save_flags
);
EXPORT_SYMBOL
(
__global_restore_flags
);
/* Misc SMP information */
/* Misc SMP information */
EXPORT_SYMBOL
(
__cpu_number_map
);
EXPORT_SYMBOL
(
__cpu_number_map
);
...
...
include/asm-sparc/system.h
View file @
6afb3c32
...
@@ -171,32 +171,11 @@ extern void fpsave(unsigned long *fpregs, unsigned long *fsr,
...
@@ -171,32 +171,11 @@ extern void fpsave(unsigned long *fpregs, unsigned long *fsr,
/*
/*
* Changing the IRQ level on the Sparc.
* Changing the IRQ level on the Sparc.
*/
*/
extern
__inline__
void
setipl
(
unsigned
long
__orig_psr
)
extern
void
local_irq_restore
(
unsigned
long
);
{
extern
unsigned
long
__local_irq_save
(
void
);
__asm__
__volatile__
(
extern
void
local_irq_enable
(
void
);
"wr %0, 0x0, %%psr
\n\t
"
"nop; nop; nop
\n
"
:
/* no outputs */
:
"r"
(
__orig_psr
)
:
"memory"
,
"cc"
);
}
extern
__inline__
void
local_irq_enable
(
void
)
{
unsigned
long
tmp
;
__asm__
__volatile__
(
static
inline
unsigned
long
getipl
(
void
)
"rd %%psr, %0
\n\t
"
"nop; nop; nop;
\n\t
"
/* Sun4m + Cypress + SMP bug */
"andn %0, %1, %0
\n\t
"
"wr %0, 0x0, %%psr
\n\t
"
"nop; nop; nop
\n
"
:
"=r"
(
tmp
)
:
"i"
(
PSR_PIL
)
:
"memory"
);
}
extern
__inline__
unsigned
long
getipl
(
void
)
{
{
unsigned
long
retval
;
unsigned
long
retval
;
...
@@ -204,76 +183,11 @@ extern __inline__ unsigned long getipl(void)
...
@@ -204,76 +183,11 @@ extern __inline__ unsigned long getipl(void)
return
retval
;
return
retval
;
}
}
#if 0 /* not used */
extern __inline__ unsigned long swap_pil(unsigned long __new_psr)
{
unsigned long retval;
__asm__ __volatile__(
"rd %%psr, %0\n\t"
"nop; nop; nop;\n\t" /* Sun4m + Cypress + SMP bug */
"and %0, %2, %%g1\n\t"
"and %1, %2, %%g2\n\t"
"xorcc %%g1, %%g2, %%g0\n\t"
"be 1f\n\t"
" nop\n\t"
"wr %0, %2, %%psr\n\t"
"nop; nop; nop;\n"
"1:\n"
: "=&r" (retval)
: "r" (__new_psr), "i" (PSR_PIL)
: "g1", "g2", "memory", "cc");
return retval;
}
#endif
extern
__inline__
unsigned
long
read_psr_and_cli
(
void
)
{
unsigned
long
retval
;
__asm__
__volatile__
(
"rd %%psr, %0
\n\t
"
"nop; nop; nop;
\n\t
"
/* Sun4m + Cypress + SMP bug */
"or %0, %1, %%g1
\n\t
"
"wr %%g1, 0x0, %%psr
\n\t
"
"nop; nop; nop
\n\t
"
:
"=r"
(
retval
)
:
"i"
(
PSR_PIL
)
:
"g1"
,
"memory"
);
return
retval
;
}
#define local_save_flags(flags) ((flags) = getipl())
#define local_save_flags(flags) ((flags) = getipl())
#define local_irq_save(flags) ((flags) = read_psr_and_cli())
#define local_irq_save(flags) ((flags) = __local_irq_save())
#define local_irq_restore(flags) setipl((flags))
#define local_irq_disable() ((void) __local_irq_save())
#define local_irq_disable() ((void) read_psr_and_cli())
#define irqs_disabled() ((getipl() & PSR_PIL) != 0)
#define irqs_disabled() ((getipl() & PSR_PIL) != 0)
#ifdef CONFIG_SMP
extern
unsigned
char
global_irq_holder
;
#define save_and_cli(flags) do { save_flags(flags); cli(); } while(0)
extern
void
__global_cli
(
void
);
extern
void
__global_sti
(
void
);
extern
unsigned
long
__global_save_flags
(
void
);
extern
void
__global_restore_flags
(
unsigned
long
flags
);
#define cli() __global_cli()
#define sti() __global_sti()
#define save_flags(flags) ((flags)=__global_save_flags())
#define restore_flags(flags) __global_restore_flags(flags)
#else
#define cli() local_irq_disable()
#define sti() local_irq_enable()
#endif
/* XXX Change this if we ever use a PSO mode kernel. */
/* XXX Change this if we ever use a PSO mode kernel. */
#define mb() __asm__ __volatile__ ("" : : : "memory")
#define mb() __asm__ __volatile__ ("" : : : "memory")
#define rmb() mb()
#define rmb() mb()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment