mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
2e3b883014
It is useful to be able to flash Edison directly without relying on the installed U-Boot being functional. Add a binman image for this. It includes a 'OSIP' header (which happens to look like an MBR / (Master-Boot Record), U-Boot binary and an environment. I am not able to find a specification for OSIP. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
34 lines
545 B
Text
34 lines
545 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
|
|
config INTEL_TANGIER
|
|
bool
|
|
depends on INTEL_MID
|
|
imply INTEL_MID_SERIAL
|
|
imply MMC
|
|
imply MMC_SDHCI
|
|
imply MMC_SDHCI_SDMA
|
|
imply MMC_SDHCI_TANGIER
|
|
imply USB
|
|
imply USB_DWC3
|
|
imply BINMAN
|
|
|
|
if INTEL_TANGIER
|
|
|
|
config SYS_CAR_ADDR
|
|
hex
|
|
default 0x19200000
|
|
|
|
config SYS_CAR_SIZE
|
|
hex
|
|
default 0x4000
|
|
help
|
|
Space in bytes in eSRAM used as Cache-As-RAM (CAR).
|
|
Note this size must not exceed eSRAM's total size.
|
|
|
|
config SYS_USB_OTG_BASE
|
|
hex
|
|
default 0xf9100000
|
|
|
|
endif
|