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
f1c6cd62
Commit
f1c6cd62
authored
Nov 26, 2008
by
Eric Miao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] pxa: introduced cpu_is_pxa935() and cpu_is_pxa9xx()
Signed-off-by:
Eric Miao
<
eric.miao@marvell.com
>
parent
6f584cfa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
1 deletion
+33
-1
arch/arm/mach-pxa/Kconfig
arch/arm/mach-pxa/Kconfig
+3
-0
arch/arm/mach-pxa/include/mach/hardware.h
arch/arm/mach-pxa/include/mach/hardware.h
+30
-1
No files found.
arch/arm/mach-pxa/Kconfig
View file @
f1c6cd62
...
@@ -19,6 +19,9 @@ config CPU_PXA320
...
@@ -19,6 +19,9 @@ config CPU_PXA320
config CPU_PXA930
config CPU_PXA930
bool "PXA930 (codename Tavor-P)"
bool "PXA930 (codename Tavor-P)"
config CPU_PXA935
bool "PXA935 (codename Tavor-P65)"
endmenu
endmenu
endif
endif
...
...
arch/arm/mach-pxa/include/mach/hardware.h
View file @
f1c6cd62
...
@@ -102,6 +102,9 @@
...
@@ -102,6 +102,9 @@
* PXA930 B0 0x69056835 0x5E643013
* PXA930 B0 0x69056835 0x5E643013
* PXA930 B1 0x69056837 0x7E643013
* PXA930 B1 0x69056837 0x7E643013
* PXA930 B2 0x69056838 0x8E643013
* PXA930 B2 0x69056838 0x8E643013
*
* PXA935 A0 0x56056931 0x1E653013
* PXA935 B0 0x56056936 0x6E653013
*/
*/
#ifdef CONFIG_PXA25x
#ifdef CONFIG_PXA25x
#define __cpu_is_pxa210(id) \
#define __cpu_is_pxa210(id) \
...
@@ -178,12 +181,22 @@
...
@@ -178,12 +181,22 @@
#define __cpu_is_pxa930(id) \
#define __cpu_is_pxa930(id) \
({ \
({ \
unsigned int _id = (id) >> 4 & 0xfff; \
unsigned int _id = (id) >> 4 & 0xfff; \
_id == 0x683; \
_id == 0x683;
\
})
})
#else
#else
#define __cpu_is_pxa930(id) (0)
#define __cpu_is_pxa930(id) (0)
#endif
#endif
#ifdef CONFIG_CPU_PXA935
#define __cpu_is_pxa935(id) \
({ \
unsigned int _id = (id) >> 4 & 0xfff; \
_id == 0x693; \
})
#else
#define __cpu_is_pxa935(id) (0)
#endif
#define cpu_is_pxa210() \
#define cpu_is_pxa210() \
({ \
({ \
__cpu_is_pxa210(read_cpuid_id()); \
__cpu_is_pxa210(read_cpuid_id()); \
...
@@ -230,6 +243,12 @@
...
@@ -230,6 +243,12 @@
__cpu_is_pxa930(id); \
__cpu_is_pxa930(id); \
})
})
#define cpu_is_pxa935() \
({ \
unsigned int id = read_cpuid(CPUID_ID); \
__cpu_is_pxa935(id); \
})
/*
/*
* CPUID Core Generation Bit
* CPUID Core Generation Bit
* <= 0x2 for pxa21x/pxa25x/pxa26x/pxa27x
* <= 0x2 for pxa21x/pxa25x/pxa26x/pxa27x
...
@@ -247,6 +266,12 @@
...
@@ -247,6 +266,12 @@
_id == 0x3; \
_id == 0x3; \
})
})
#define __cpu_is_pxa9xx(id) \
({ \
unsigned int _id = (id) >> 4 & 0xfff; \
_id == 0x683 || _id == 0x693; \
})
#define cpu_is_pxa2xx() \
#define cpu_is_pxa2xx() \
({ \
({ \
__cpu_is_pxa2xx(read_cpuid_id()); \
__cpu_is_pxa2xx(read_cpuid_id()); \
...
@@ -257,6 +282,10 @@
...
@@ -257,6 +282,10 @@
__cpu_is_pxa3xx(read_cpuid_id()); \
__cpu_is_pxa3xx(read_cpuid_id()); \
})
})
#define cpu_is_pxa9xx() \
({ \
__cpu_is_pxa9xx(read_cpuid_id()); \
})
/*
/*
* return current memory and LCD clock frequency in units of 10kHz
* return current memory and LCD clock frequency in units of 10kHz
*/
*/
...
...
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