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:
24
u-boot/board/intel/crownbay/Kconfig
Normal file
24
u-boot/board/intel/crownbay/Kconfig
Normal file
@@ -0,0 +1,24 @@
|
||||
if TARGET_CROWNBAY
|
||||
|
||||
config SYS_BOARD
|
||||
default "crownbay"
|
||||
|
||||
config SYS_VENDOR
|
||||
default "intel"
|
||||
|
||||
config SYS_SOC
|
||||
default "queensbay"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "crownbay"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
select INTEL_QUEENSBAY
|
||||
select BOARD_ROMSIZE_KB_1024
|
||||
|
||||
endif
|
||||
6
u-boot/board/intel/crownbay/MAINTAINERS
Normal file
6
u-boot/board/intel/crownbay/MAINTAINERS
Normal file
@@ -0,0 +1,6 @@
|
||||
INTEL CROWNBAY BOARD
|
||||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/intel/crownbay/
|
||||
F: include/configs/crownbay.h
|
||||
F: configs/crownbay_defconfig
|
||||
7
u-boot/board/intel/crownbay/Makefile
Normal file
7
u-boot/board/intel/crownbay/Makefile
Normal file
@@ -0,0 +1,7 @@
|
||||
#
|
||||
# Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-y += crownbay.o start.o
|
||||
20
u-boot/board/intel/crownbay/crownbay.c
Normal file
20
u-boot/board/intel/crownbay/crownbay.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/ibmpc.h>
|
||||
#include <asm/pnp_def.h>
|
||||
#include <smsc_lpc47m.h>
|
||||
|
||||
int board_early_init_f(void)
|
||||
{
|
||||
lpc47m_enable_serial(PNP_DEV(LPC47M_IO_PORT, LPC47M_SP1),
|
||||
UART0_BASE, UART0_IRQ);
|
||||
lpc47m_enable_kbc(PNP_DEV(LPC47M_IO_PORT, LPC47M_KBC),
|
||||
KBD_IRQ, MSE_IRQ);
|
||||
|
||||
return 0;
|
||||
}
|
||||
9
u-boot/board/intel/crownbay/start.S
Normal file
9
u-boot/board/intel/crownbay/start.S
Normal file
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) 2014, 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