forked from AspeedTech-BMC/u-boot
-
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.
- Loading branch information
Showing
91 changed files
with
3,709 additions
and
300 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,14 @@ | ||
#include <config.h> | ||
|
||
/ { | ||
binman { | ||
filename = "u-boot-sunxi-with-spl.bin"; | ||
pad-byte = <0xff>; | ||
blob { | ||
filename = "spl/sunxi-spl.bin"; | ||
}; | ||
u-boot-img { | ||
pos = <CONFIG_SPL_PAD_TO>; | ||
}; | ||
}; | ||
}; |
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,15 @@ | ||
/* | ||
* Copyright (C) 2016 Google, Inc | ||
* Written by Simon Glass <[email protected]> | ||
* | ||
* SPDX-License-Identifier: GPL-2.0+ | ||
*/ | ||
|
||
/ { | ||
host1x@50000000 { | ||
u-boot,dm-pre-reloc; | ||
dc@54200000 { | ||
u-boot,dm-pre-reloc; | ||
}; | ||
}; | ||
}; |
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,8 @@ | ||
/ { | ||
host1x@50000000 { | ||
u-boot,dm-pre-reloc; | ||
dc@54200000 { | ||
u-boot,dm-pre-reloc; | ||
}; | ||
}; | ||
}; |
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,18 @@ | ||
/* | ||
* Copyright (C) 2016 Google, Inc | ||
* Written by Simon Glass <[email protected]> | ||
* | ||
* SPDX-License-Identifier: GPL-2.0+ | ||
*/ | ||
|
||
#include <u-boot.dtsi> | ||
|
||
#ifdef CONFIG_ROM_SIZE | ||
/ { | ||
binman { | ||
u-boot-with-ucode-ptr { | ||
optional-ucode; | ||
}; | ||
}; | ||
}; | ||
#endif |
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,62 @@ | ||
/* | ||
* Copyright (C) 2016 Google, Inc | ||
* Written by Simon Glass <[email protected]> | ||
* | ||
* SPDX-License-Identifier: GPL-2.0+ | ||
*/ | ||
|
||
#include <config.h> | ||
|
||
#ifdef CONFIG_ROM_SIZE | ||
/ { | ||
binman { | ||
filename = "u-boot.rom"; | ||
end-at-4gb; | ||
sort-by-pos; | ||
pad-byte = <0xff>; | ||
size = <CONFIG_ROM_SIZE>; | ||
#ifdef CONFIG_HAVE_INTEL_ME | ||
intel-descriptor { | ||
}; | ||
intel-me { | ||
}; | ||
#endif | ||
u-boot-with-ucode-ptr { | ||
pos = <CONFIG_SYS_TEXT_BASE>; | ||
}; | ||
u-boot-dtb-with-ucode { | ||
}; | ||
u-boot-ucode { | ||
align = <16>; | ||
}; | ||
#ifdef CONFIG_HAVE_MRC | ||
intel-mrc { | ||
pos = <CONFIG_X86_MRC_ADDR>; | ||
}; | ||
#endif | ||
#ifdef CONFIG_HAVE_FSP | ||
intel-fsp { | ||
pos = <CONFIG_FSP_ADDR>; | ||
}; | ||
#endif | ||
#ifdef CONFIG_HAVE_CMC | ||
intel-cmc { | ||
pos = <CONFIG_CMC_ADDR>; | ||
}; | ||
#endif | ||
#ifdef CONFIG_HAVE_VGA_BIOS | ||
intel-vga { | ||
pos = <CONFIG_VGA_BIOS_ADDR>; | ||
}; | ||
#endif | ||
#ifdef CONFIG_HAVE_REFCODE | ||
intel-refcode { | ||
pos = <CONFIG_X86_REFCODE_ADDR>; | ||
}; | ||
#endif | ||
x86-start16 { | ||
pos = <CONFIG_SYS_X86_START16>; | ||
}; | ||
}; | ||
}; | ||
#endif |
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 @@ | ||
*.pyc |
Oops, something went wrong.