-
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: 360166 b: refs/heads/master c: af61742 h: refs/heads/master v: v3
- Loading branch information
Vineet Gupta
committed
Feb 15, 2013
1 parent
31f64f2
commit 1e670c8
Showing
8 changed files
with
491 additions
and
12 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: f46121bd26d7957866739313f1e098a682e8d3e4 | ||
refs/heads/master: af61742813aa9dde65ca796801e36d03b83fa79f |
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
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,56 @@ | ||
/* | ||
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef __ARC_ASM_DEFINES_H__ | ||
#define __ARC_ASM_DEFINES_H__ | ||
|
||
#if defined(CONFIG_ARC_MMU_V1) | ||
#define CONFIG_ARC_MMU_VER 1 | ||
#elif defined(CONFIG_ARC_MMU_V2) | ||
#define CONFIG_ARC_MMU_VER 2 | ||
#elif defined(CONFIG_ARC_MMU_V3) | ||
#define CONFIG_ARC_MMU_VER 3 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_HAS_LLSC | ||
#define __CONFIG_ARC_HAS_LLSC_VAL 1 | ||
#else | ||
#define __CONFIG_ARC_HAS_LLSC_VAL 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_HAS_SWAPE | ||
#define __CONFIG_ARC_HAS_SWAPE_VAL 1 | ||
#else | ||
#define __CONFIG_ARC_HAS_SWAPE_VAL 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_HAS_RTSC | ||
#define __CONFIG_ARC_HAS_RTSC_VAL 1 | ||
#else | ||
#define __CONFIG_ARC_HAS_RTSC_VAL 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_MMU_SASID | ||
#define __CONFIG_ARC_MMU_SASID_VAL 1 | ||
#else | ||
#define __CONFIG_ARC_MMU_SASID_VAL 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_HAS_ICACHE | ||
#define __CONFIG_ARC_HAS_ICACHE 1 | ||
#else | ||
#define __CONFIG_ARC_HAS_ICACHE 0 | ||
#endif | ||
|
||
#ifdef CONFIG_ARC_HAS_DCACHE | ||
#define __CONFIG_ARC_HAS_DCACHE 1 | ||
#else | ||
#define __CONFIG_ARC_HAS_DCACHE 0 | ||
#endif | ||
|
||
#endif /* __ARC_ASM_DEFINES_H__ */ |
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
Oops, something went wrong.