-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add the original opensbi-1.2 * Update opensbi version to opensbi-1.2
- Loading branch information
Showing
389 changed files
with
70,638 additions
and
0 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
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,16 @@ | ||
AlignConsecutiveAssignments: true | ||
AlignEscapedNewlines: Left | ||
AlignTrailingComments: true | ||
AllowShortFunctionsOnASingleLine: None | ||
BraceWrapping: | ||
AfterFunction: true | ||
BreakBeforeBraces: Custom | ||
BreakStringLiterals: false | ||
ContinuationIndentWidth: 8 | ||
Cpp11BracedListStyle: false | ||
IndentWidth: 8 | ||
ReflowComments: false | ||
SortIncludes: false | ||
SpacesInContainerLiterals: false | ||
TabWidth: 8 | ||
UseTab: Always |
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,14 @@ | ||
# Object files | ||
*.o | ||
*.a | ||
*.dep | ||
|
||
#Build & install directories | ||
build/ | ||
build-oe/ | ||
install/ | ||
|
||
# Development friendly files | ||
tags | ||
cscope* | ||
*.swp |
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,27 @@ | ||
|
||
List of OpenSBI Contributors (Alphabetically sorted) | ||
==================================================== | ||
|
||
* **[Western Digital Corporation](https://www.wdc.com/)** | ||
* Project initiator and maintainer | ||
* Copyright (c) 2019 Western Digital Corporation or its affiliates | ||
|
||
* Alistair Francis <[email protected]> | ||
|
||
* Andreas Schwab <[email protected]> | ||
|
||
* Anup Patel <[email protected]> | ||
|
||
* Atish Patra <[email protected]> | ||
|
||
* Bin Meng <[email protected]> | ||
|
||
* Damien Le Moal <[email protected]> | ||
|
||
* Karsten Merker <[email protected]> | ||
|
||
* Nick Kossifidis <[email protected]> | ||
|
||
* Shawn Chang <[email protected]> | ||
|
||
* Xiang Wang <[email protected]> |
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,25 @@ | ||
The 2-Clause BSD License | ||
SPDX short identifier: BSD-2-Clause | ||
|
||
Copyright (c) 2019 Western Digital Corporation or its affiliates and other | ||
contributors. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,25 @@ | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
mainmenu "OpenSBI $(OPENSBI_PLATFORM) Configuration" | ||
|
||
config OPENSBI_SRC_DIR | ||
string | ||
option env="OPENSBI_SRC_DIR" | ||
|
||
config OPENSBI_PLATFORM | ||
string | ||
option env="OPENSBI_PLATFORM" | ||
|
||
config OPENSBI_PLATFORM_SRC_DIR | ||
string | ||
option env="OPENSBI_PLATFORM_SRC_DIR" | ||
|
||
menu "Platform Options" | ||
source "$(OPENSBI_PLATFORM_SRC_DIR)/Kconfig" | ||
endmenu | ||
|
||
source "$(OPENSBI_SRC_DIR)/lib/sbi/Kconfig" | ||
|
||
source "$(OPENSBI_SRC_DIR)/lib/utils/Kconfig" | ||
|
||
source "$(OPENSBI_SRC_DIR)/firmware/Kconfig" |
Oops, something went wrong.