avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
3
u-boot/board/intel/bayleybay/.gitignore
vendored
Normal file
3
u-boot/board/intel/bayleybay/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
dsdt.aml
|
||||
dsdt.asl.tmp
|
||||
dsdt.c
|
||||
27
u-boot/board/intel/bayleybay/Kconfig
Normal file
27
u-boot/board/intel/bayleybay/Kconfig
Normal file
@@ -0,0 +1,27 @@
|
||||
if TARGET_BAYLEYBAY
|
||||
|
||||
config SYS_BOARD
|
||||
default "bayleybay"
|
||||
|
||||
config SYS_VENDOR
|
||||
default "intel"
|
||||
|
||||
config SYS_SOC
|
||||
default "baytrail"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "bayleybay"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
select INTEL_BAYTRAIL
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
|
||||
config PCIE_ECAM_BASE
|
||||
default 0xe0000000
|
||||
|
||||
endif
|
||||
6
u-boot/board/intel/bayleybay/MAINTAINERS
Normal file
6
u-boot/board/intel/bayleybay/MAINTAINERS
Normal file
@@ -0,0 +1,6 @@
|
||||
Intel Bayley Bay
|
||||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/intel/bayleybay
|
||||
F: include/configs/bayleybay.h
|
||||
F: configs/bayleybay_defconfig
|
||||
8
u-boot/board/intel/bayleybay/Makefile
Normal file
8
u-boot/board/intel/bayleybay/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-y += bayleybay.o start.o
|
||||
obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
|
||||
11
u-boot/board/intel/bayleybay/acpi/mainboard.asl
Normal file
11
u-boot/board/intel/bayleybay/acpi/mainboard.asl
Normal file
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
/* Power Button */
|
||||
Device (PWRB)
|
||||
{
|
||||
Name(_HID, EISAID("PNP0C0C"))
|
||||
}
|
||||
8
u-boot/board/intel/bayleybay/bayleybay.c
Normal file
8
u-boot/board/intel/bayleybay/bayleybay.c
Normal file
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/gpio.h>
|
||||
14
u-boot/board/intel/bayleybay/dsdt.asl
Normal file
14
u-boot/board/intel/bayleybay/dsdt.asl
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
DefinitionBlock("dsdt.aml", "DSDT", 2, "U-BOOT", "U-BOOTBL", 0x00010000)
|
||||
{
|
||||
/* platform specific */
|
||||
#include <asm/arch/acpi/platform.asl>
|
||||
|
||||
/* board specific */
|
||||
#include "acpi/mainboard.asl"
|
||||
}
|
||||
9
u-boot/board/intel/bayleybay/start.S
Normal file
9
u-boot/board/intel/bayleybay/start.S
Normal file
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
.globl early_board_init
|
||||
early_board_init:
|
||||
jmp early_board_init_ret
|
||||
Reference in New Issue
Block a user