Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
343ac722
Commit
343ac722
authored
Nov 11, 2007
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh: Move over the
SH-5
entry.S.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
49e6c3e7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
8 deletions
+20
-8
arch/sh/kernel/cpu/Makefile
arch/sh/kernel/cpu/Makefile
+6
-0
arch/sh/kernel/cpu/sh5/Makefile
arch/sh/kernel/cpu/sh5/Makefile
+1
-0
arch/sh/kernel/cpu/sh5/entry.S
arch/sh/kernel/cpu/sh5/entry.S
+1
-3
include/asm-sh/processor.h
include/asm-sh/processor.h
+12
-5
No files found.
arch/sh/kernel/cpu/Makefile
View file @
343ac722
...
...
@@ -6,8 +6,14 @@ obj-$(CONFIG_CPU_SH2) = sh2/
obj-$(CONFIG_CPU_SH2A)
=
sh2a/
obj-$(CONFIG_CPU_SH3)
=
sh3/
obj-$(CONFIG_CPU_SH4)
=
sh4/
obj-$(CONFIG_CPU_SH5)
=
sh5/
# Special cases for family ancestry.
obj-$(CONFIG_CPU_SH4A)
+=
sh4a/
# Common interfaces.
obj-$(CONFIG_UBC_WAKEUP)
+=
ubc.o
obj-$(CONFIG_SH_ADC)
+=
adc.o
...
...
arch/sh/kernel/cpu/sh5/Makefile
0 → 100644
View file @
343ac722
obj-y
:=
entry.o
arch/sh
64/kernel
/entry.S
→
arch/sh
/kernel/cpu/sh5
/entry.S
View file @
343ac722
...
...
@@ -10,12 +10,10 @@
*
Copyright
(
C
)
2003
,
2004
Richard
Curnow
*
*/
#include <linux/errno.h>
#include <linux/sys.h>
#include <asm/cpu/registers.h>
#include <asm/processor.h>
#include <asm/registers.h>
#include <asm/unistd.h>
#include <asm/thread_info.h>
#include <asm/asm-offsets.h>
...
...
include/asm-sh/processor.h
View file @
343ac722
...
...
@@ -3,6 +3,8 @@
#include <asm/cpu-features.h>
#ifndef __ASSEMBLY__
/*
* CPU type and hardware bug flags. Kept separately for each CPU.
*
...
...
@@ -40,11 +42,8 @@ enum cpu_type {
CPU_SH_NONE
};
#ifdef CONFIG_SUPERH32
# include "processor_32.h"
#else
# include "processor_64.h"
#endif
/* Forward decl */
struct
sh_cpuinfo
;
/* arch/sh/kernel/setup.c */
const
char
*
get_cpu_subtype
(
struct
sh_cpuinfo
*
c
);
...
...
@@ -55,4 +54,12 @@ int vsyscall_init(void);
#define vsyscall_init() do { } while (0)
#endif
#endif
/* __ASSEMBLY__ */
#ifdef CONFIG_SUPERH32
# include "processor_32.h"
#else
# include "processor_64.h"
#endif
#endif
/* __ASM_SH_PROCESSOR_H */
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