-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 144503 b: refs/heads/master c: e653034 h: refs/heads/master i: 144501: b83581d 144499: 52fd605 144495: 758b1c2 v: v3
- Loading branch information
Kevin Hilman
committed
Apr 23, 2009
1 parent
7d3710e
commit e7f39a8
Showing
3 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 9232fcc99948e39d5be04fc1c1025bd4f7998739 | ||
refs/heads/master: e653034e66ec406f37427f588115badc6fc6af64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* DaVinci CPU type detection | ||
* | ||
* Author: Kevin Hilman, Deep Root Systems, LLC | ||
* | ||
* Defines the cpu_is_*() macros for runtime detection of DaVinci | ||
* device type. In addtion, if support for a given device is not | ||
* compiled in to the kernel, the macros return 0 so that | ||
* resulting code can be optimized out. | ||
* | ||
* 2009 (c) Deep Root Systems, LLC. This file is licensed under | ||
* the terms of the GNU General Public License version 2. This program | ||
* is licensed "as is" without any warranty of any kind, whether express | ||
* or implied. | ||
*/ | ||
#ifndef _ASM_ARCH_CPU_H | ||
#define _ASM_ARCH_CPU_H | ||
|
||
extern unsigned int davinci_rev(void); | ||
|
||
#define IS_DAVINCI_CPU(type, id) \ | ||
static inline int is_davinci_dm ##type(void) \ | ||
{ \ | ||
return (davinci_rev() == (id)) ? 1 : 0; \ | ||
} | ||
|
||
IS_DAVINCI_CPU(644x, 0x6446) | ||
IS_DAVINCI_CPU(646x, 0x6467) | ||
IS_DAVINCI_CPU(355, 0x355) | ||
|
||
#ifdef CONFIG_ARCH_DAVINCI_DM644x | ||
#define cpu_is_davinci_dm644x() is_davinci_dm644x() | ||
#else | ||
#define cpu_is_davinci_dm644x() 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARCH_DAVINCI_DM646x | ||
#define cpu_is_davinci_dm646x() is_davinci_dm646x() | ||
#else | ||
#define cpu_is_davinci_dm646x() 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARCH_DAVINCI_DM355 | ||
#define cpu_is_davinci_dm355() is_davinci_dm355() | ||
#else | ||
#define cpu_is_davinci_dm355() 0 | ||
#endif | ||
|
||
#endif |