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:
9
u-boot/board/h2200/Kconfig
Normal file
9
u-boot/board/h2200/Kconfig
Normal file
@@ -0,0 +1,9 @@
|
||||
if TARGET_H2200
|
||||
|
||||
config SYS_BOARD
|
||||
default "h2200"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "h2200"
|
||||
|
||||
endif
|
||||
6
u-boot/board/h2200/MAINTAINERS
Normal file
6
u-boot/board/h2200/MAINTAINERS
Normal file
@@ -0,0 +1,6 @@
|
||||
H2200 BOARD
|
||||
M: Lukasz Dalek <luk0104@gmail.com>
|
||||
S: Maintained
|
||||
F: board/h2200/
|
||||
F: include/configs/h2200.h
|
||||
F: configs/h2200_defconfig
|
||||
14
u-boot/board/h2200/Makefile
Normal file
14
u-boot/board/h2200/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# h2200 Support
|
||||
#
|
||||
# Copyright (C) 2012 Lukasz Dalek <luk0104@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-y := h2200.o
|
||||
|
||||
extra-y := h2200-header.bin
|
||||
|
||||
$(obj)/h2200-header.bin: $(obj)/h2200-header.o
|
||||
$(OBJCOPY) -O binary $< $@
|
||||
15
u-boot/board/h2200/h2200-header.S
Normal file
15
u-boot/board/h2200/h2200-header.S
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* iPAQ h2200 header
|
||||
*
|
||||
* Copyright (C) 2012 Lukasz Dalek <luk0104@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
.word 0xea0003fe /* b 0x1000 */
|
||||
|
||||
.org 0x40
|
||||
.ascii "ECEC"
|
||||
|
||||
.org 0x1000 - 1
|
||||
.byte 0x0
|
||||
73
u-boot/board/h2200/h2200.c
Normal file
73
u-boot/board/h2200/h2200.c
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* iPAQ h2200 board configuration
|
||||
*
|
||||
* Copyright (C) 2012 Lukasz Dalek <luk0104@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/pxa.h>
|
||||
#include <asm/arch/pxa-regs.h>
|
||||
#include <asm/io.h>
|
||||
#include <usb.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
usb_eth_initialize(bis);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void reset_cpu(ulong ignore)
|
||||
{
|
||||
/* Enable VLIO interface on Hamcop */
|
||||
writeb(0x1, 0x4000);
|
||||
|
||||
/* Reset board (cold reset) */
|
||||
writeb(0xff, 0x4002);
|
||||
}
|
||||
|
||||
int board_init(void)
|
||||
{
|
||||
/* We have RAM, disable cache */
|
||||
dcache_disable();
|
||||
icache_disable();
|
||||
|
||||
gd->bd->bi_arch_number = MACH_TYPE_H2200;
|
||||
|
||||
/* adress of boot parameters */
|
||||
gd->bd->bi_boot_params = 0xa0000100;
|
||||
|
||||
/* Let host see that device is disconnected */
|
||||
udc_disconnect();
|
||||
mdelay(500);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int dram_init(void)
|
||||
{
|
||||
/*
|
||||
* Everything except MSC0 was already set up by
|
||||
* 1st stage bootloader.
|
||||
*
|
||||
* This setting enables access to companion chip.
|
||||
*/
|
||||
clrsetbits_le32(MSC0, 0xffffffff, CONFIG_SYS_MSC0_VAL);
|
||||
gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_USB_GADGET_PXA2XX
|
||||
int board_usb_init(int index, enum usb_init_type init)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_usb_cleanup(int index, enum usb_init_type init)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user