mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
Merge branch '2023-07-25-assorted-general-updates'
- A number of MAINTAINER file updates, assorted driver/platform fixes, performance improvements for sparse file writes, and 64bit time_t.
This commit is contained in:
commit
544dfc3c88
113 changed files with 224 additions and 477 deletions
4
.mailmap
4
.mailmap
|
@ -65,8 +65,8 @@ Marek Vasut <marex@denx.de> <marek.vasut+renesas@gmail.com>
|
|||
Marek Vasut <marex@denx.de> <marek.vasut@gmail.com>
|
||||
Marek Vasut <marex@denx.de> <marex at denx.de>
|
||||
Markus Klotzbuecher <mk@denx.de>
|
||||
Masahiro Yamada <yamada.masahiro@socionext.com> <masahiroy@kernel.org>
|
||||
Masahiro Yamada <yamada.masahiro@socionext.com> <yamada.m@jp.panasonic.com>
|
||||
Masahiro Yamada <masahiroy@kernel.org> <yamada.masahiro@socionext.com>
|
||||
Masahiro Yamada <masahiroy@kernel.org> <yamada.m@jp.panasonic.com>
|
||||
Michal Simek <michal.simek@amd.com> <Monstr@seznam.cz>
|
||||
Michal Simek <michal.simek@amd.com> <michal.simek@xilinx.com>
|
||||
Michal Simek <michal.simek@amd.com> <monstr@monstr.eu>
|
||||
|
|
16
MAINTAINERS
16
MAINTAINERS
|
@ -272,6 +272,7 @@ M: Fabio Estevam <festevam@gmail.com>
|
|||
R: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
|
||||
S: Maintained
|
||||
T: git https://source.denx.de/u-boot/custodians/u-boot-imx.git
|
||||
F: arch/Kconfig.nxp
|
||||
F: arch/arm/cpu/arm1136/mx*/
|
||||
F: arch/arm/cpu/arm926ejs/mx*/
|
||||
F: arch/arm/cpu/armv7/vf610/
|
||||
|
@ -282,6 +283,7 @@ F: arch/arm/include/asm/arch-mx*/
|
|||
F: arch/arm/include/asm/arch-vf610/
|
||||
F: arch/arm/include/asm/mach-imx/
|
||||
F: board/freescale/*mx*/
|
||||
F: board/freescale/common/
|
||||
F: drivers/serial/serial_mxc.c
|
||||
|
||||
ARM HISILICON
|
||||
|
@ -840,6 +842,13 @@ M: Simon Glass <sjg@chromium.org>
|
|||
S: Maintained
|
||||
F: tools/buildman/
|
||||
|
||||
CAAM
|
||||
M: Gaurav Jain <gaurav.jain@nxp.com>
|
||||
S: Maintained
|
||||
F: arch/arm/dts/ls1021a-twr-u-boot.dtsi
|
||||
F: drivers/crypto/fsl/
|
||||
F: include/fsl_sec.h
|
||||
|
||||
CAT
|
||||
M: Roger Knecht <rknecht@pm.me>
|
||||
S: Maintained
|
||||
|
@ -1627,10 +1636,3 @@ T: git https://source.denx.de/u-boot/u-boot.git
|
|||
F: configs/tools-only_defconfig
|
||||
F: *
|
||||
F: */
|
||||
|
||||
CAAM
|
||||
M: Gaurav Jain <gaurav.jain@nxp.com>
|
||||
S: Maintained
|
||||
F: arch/arm/dts/ls1021a-twr-u-boot.dtsi
|
||||
F: drivers/crypto/fsl/
|
||||
F: include/fsl_sec.h
|
||||
|
|
2
Makefile
2
Makefile
|
@ -2444,7 +2444,7 @@ quiet_cmd_genenv = GENENV $@
|
|||
cmd_genenv = \
|
||||
$(objtree)/tools/printinitialenv | \
|
||||
sed -e '/^\s*$$/d' | \
|
||||
sort --field-separator='=' -k1,1 --stable -o $@
|
||||
sort -t '=' -k 1,1 -s -o $@
|
||||
|
||||
u-boot-initial-env: $(env_h) FORCE
|
||||
$(Q)$(MAKE) $(build)=tools $(objtree)/tools/printinitialenv
|
||||
|
|
|
@ -357,7 +357,7 @@ config SYS_ARM_ARCH
|
|||
|
||||
choice
|
||||
prompt "Select the ARM data write cache policy"
|
||||
default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMCYGNUS || TARGET_BCMNS || RZA1
|
||||
default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMNS || RZA1
|
||||
default SYS_ARM_CACHE_WRITEBACK
|
||||
|
||||
config SYS_ARM_CACHE_WRITEBACK
|
||||
|
@ -668,19 +668,6 @@ config TARGET_VEXPRESS_CA9X4
|
|||
select CPU_V7A
|
||||
select PL011_SERIAL
|
||||
|
||||
config TARGET_BCMCYGNUS
|
||||
bool "Support bcmcygnus"
|
||||
select CPU_V7A
|
||||
select GPIO_EXTRA_HEADER
|
||||
select IPROC
|
||||
imply BCM_SF2_ETH
|
||||
imply BCM_SF2_ETH_GMAC
|
||||
imply CMD_HASH
|
||||
imply CRC32_VERIFY
|
||||
imply FAT_WRITE
|
||||
imply HASH_VERIFY
|
||||
imply NETDEVICES
|
||||
|
||||
config TARGET_BCMNS
|
||||
bool "Support Broadcom Northstar"
|
||||
select CPU_V7A
|
||||
|
|
|
@ -100,8 +100,7 @@ static u32 omap_mmc_get_part_size(const char *part)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Check only for EFI (GPT) partition table */
|
||||
res = part_get_info_by_name_type(dev_desc, part, &info, PART_TYPE_EFI);
|
||||
res = part_get_info_by_name(dev_desc, part, &info);
|
||||
if (res < 0)
|
||||
return 0;
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ BRPPT1 BOARD
|
|||
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
|
||||
S: Maintained
|
||||
F: board/BuR/brppt1/
|
||||
F: board/BuR/common/
|
||||
F: include/configs/brppt1.h
|
||||
F: configs/brppt1_mmc_defconfig
|
||||
F: configs/brppt1_nand_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ BUR_PPT2 BOARD
|
|||
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
|
||||
S: Maintained
|
||||
F: board/BuR/brppt2/
|
||||
F: board/BuR/common/
|
||||
F: include/configs/brppt2.h
|
||||
F: configs/brppt2_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ BRSMARC1 BOARD
|
|||
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
|
||||
S: Maintained
|
||||
F: board/BuR/brsmarc1/
|
||||
F: board/BuR/common/
|
||||
F: include/configs/brsmarc1.h
|
||||
F: configs/brsmarc1_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ BRXRE1 BOARD
|
|||
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
|
||||
S: Maintained
|
||||
F: board/BuR/brxre1/
|
||||
F: board/BuR/common/
|
||||
F: include/configs/brxre1.h
|
||||
F: configs/brxre1_defconfig
|
||||
F: arch/arm/dts/am335x-brxre1.dts
|
||||
|
|
|
@ -7,6 +7,7 @@ F: arch/arm/dts/kirkwood-d2net.dtsi
|
|||
F: arch/arm/dts/kirkwood-net2big.dts
|
||||
F: arch/arm/dts/kirkwood-net2big-u-boot.dtsi
|
||||
F: arch/arm/dts/kirkwood-netxbig.dtsi
|
||||
F: board/LaCie/common/
|
||||
F: board/LaCie/net2big_v2/
|
||||
F: include/configs/lacie_kw.h
|
||||
F: configs/d2net_v2_defconfig
|
||||
|
|
|
@ -12,6 +12,7 @@ F: arch/arm/dts/kirkwood-ns2max-u-boot.dtsi
|
|||
F: arch/arm/dts/kirkwood-ns2mini.dts
|
||||
F: arch/arm/dts/kirkwood-ns2mini-u-boot.dtsi
|
||||
F: arch/arm/dts/kirkwood-ns2-u-boot.dtsi
|
||||
F: board/LaCie/common/
|
||||
F: board/LaCie/netspace_v2/
|
||||
F: include/configs/lacie_kw.h
|
||||
F: configs/inetspace_v2_defconfig
|
||||
|
|
|
@ -4,3 +4,4 @@ S: Maintained
|
|||
F: board/Marvell/db-88f6820-amc/
|
||||
F: include/configs/db-88f6820-amc.h
|
||||
F: configs/db-88f6820-amc_defconfig
|
||||
F: configs/db-88f6820-amc_nand_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ DS109 BOARD
|
|||
M: Walter Schweizer <swwa@users.sourceforge.net>
|
||||
S: Maintained
|
||||
F: board/Synology/ds109
|
||||
F: board/Synology/common
|
||||
F: configs/ds109_defconfig
|
||||
F: include/configs/ds109.h
|
||||
|
|
|
@ -3,5 +3,6 @@ M: Tony Dinh <mibodhi@gmail.com>
|
|||
S: Maintained
|
||||
F: arch/arm/dts/armada-385-synology-ds116.dts
|
||||
F: board/Synology/ds116/
|
||||
F: board/Synology/common
|
||||
F: include/configs/ds116.h
|
||||
F: configs/ds116_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ DS414 BOARD
|
|||
M: Phil Sutter <phil@nwl.cc>
|
||||
S: Maintained
|
||||
F: board/Synology/ds414/
|
||||
F: board/Synology/common/
|
||||
F: include/configs/ds414.h
|
||||
F: configs/ds414_defconfig
|
||||
|
|
|
@ -4,7 +4,7 @@ S: Maintained
|
|||
L: u-boot-amlogic@groups.io
|
||||
F: board/amlogic/u200/
|
||||
F: configs/u200_defconfig
|
||||
F: configs/bananapi-m2pro_defconfig
|
||||
F: configs/bananapi-m2-pro_defconfig
|
||||
F: configs/bananapi-m5_defconfig
|
||||
F: configs/radxa-zero_defconfig
|
||||
F: doc/board/amlogic/u200.rst
|
||||
|
|
|
@ -5,6 +5,7 @@ L: u-boot-amlogic@groups.io
|
|||
F: board/amlogic/w400/
|
||||
F: configs/bananapi-cm4-cm4io_defconfig
|
||||
F: configs/bananapi-m2s_defconfig
|
||||
F: configs/odroid-n2l_defconfig
|
||||
F: configs/radxa-zero2_defconfig
|
||||
F: doc/board/amlogic/w400.rst
|
||||
F: doc/board/amlogic/bananapi-cm4io.rst
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
RGXX3-RK3566
|
||||
M: Chris Morgan <macromorgan@hotmail.com>
|
||||
S: Maintained
|
||||
F: board/anbernic/rgxx3-rk3566
|
||||
F: include/configs/anbernic-rgxx3-rk3566
|
||||
F: board/anbernic/rgxx3_rk3566
|
||||
F: include/configs/anbernic-rgxx3-rk3566.h
|
||||
F: configs/anbernic-rgxx3_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ MEDCOM-WIDE BOARD
|
|||
M: Alban Bedel <alban.bedel@avionic-design.de>
|
||||
S: Maintained
|
||||
F: board/avionic-design/medcom-wide/
|
||||
F: board/avionic-design/common/
|
||||
F: include/configs/medcom-wide.h
|
||||
F: configs/medcom-wide_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ PLUTUX BOARD
|
|||
M: Alban Bedel <alban.bedel@avionic-design.de>
|
||||
S: Maintained
|
||||
F: board/avionic-design/plutux/
|
||||
F: board/avionic-design/common/
|
||||
F: include/configs/plutux.h
|
||||
F: configs/plutux_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ TEC-NG BOARD
|
|||
M: Alban Bedel <alban.bedel@avionic-design.de>
|
||||
S: Maintained
|
||||
F: board/avionic-design/tec-ng/
|
||||
F: board/avionic-design/common/
|
||||
F: include/configs/tec-ng.h
|
||||
F: configs/tec-ng_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ TEC BOARD
|
|||
M: Alban Bedel <alban.bedel@avionic-design.de>
|
||||
S: Maintained
|
||||
F: board/avionic-design/tec/
|
||||
F: board/avionic-design/common/
|
||||
F: include/configs/tec.h
|
||||
F: configs/tec_defconfig
|
||||
|
|
|
@ -5,4 +5,5 @@ S: Maintained
|
|||
F: board/beacon/imx8mm/
|
||||
F: include/configs/imx8mm_beacon.h
|
||||
F: configs/imx8mm_beacon_defconfig
|
||||
F: configs/imx8mm_beacon_fspi_defconfig
|
||||
F: doc/board/beacon/
|
||||
|
|
|
@ -5,3 +5,4 @@ F: board/beacon/imx8mn/
|
|||
F: include/configs/imx8mn_beacon.h
|
||||
F: configs/imx8mn_beacon_defconfig
|
||||
F: configs/imx8mn_beacon_2g_defconfig
|
||||
F: configs/imx8mn_beacon_fspi_defconfig
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
BAV335x BOARD
|
||||
M: Gilles Gameiro <gilles@gigadevices.com>
|
||||
S: Maintained
|
||||
F: include/configs/bav335x.h
|
||||
F: board/birdland/bav335x/Kconfig
|
||||
F: board/birdland/bav335x/Makefile
|
||||
F: board/birdland/bav335x/README
|
||||
F: board/birdland/bav335x/board.c
|
||||
F: board/birdland/bav335x/board.h
|
||||
F: board/birdland/bav335x/mux.c
|
||||
F: board/birdland/bav335x/u-boot.lds
|
||||
F: configs/birdland_bav335a_defconfig
|
||||
F: configs/birdland_bav335b_defconfig
|
|
@ -1,6 +0,0 @@
|
|||
BCM11130 BOARD
|
||||
M: Steve Rae <steve.rae@raedomain.com>
|
||||
S: Maintained
|
||||
F: board/broadcom/bcm28155_ap/
|
||||
F: include/configs/bcm_ep_board.h
|
||||
F: configs/bcm11130_defconfig
|
|
@ -1,6 +0,0 @@
|
|||
BCM11130_NAND BOARD
|
||||
M: Steve Rae <steve.rae@raedomain.com>
|
||||
S: Maintained
|
||||
F: board/broadcom/bcm28155_ap/
|
||||
F: include/configs/bcm_ep_board.h
|
||||
F: configs/bcm11130_nand_defconfig
|
|
@ -1,6 +0,0 @@
|
|||
BCM28155_W1D BOARD
|
||||
M: Steve Rae <steve.rae@raedomain.com>
|
||||
S: Maintained
|
||||
F: board/broadcom/bcm28155_ap/
|
||||
F: include/configs/bcm28155_ap.h
|
||||
F: configs/bcm28155_w1d_defconfig
|
|
@ -1,5 +0,0 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
# Copyright 2014 Broadcom Corporation.
|
||||
|
||||
obj-y += board.o
|
|
@ -1,86 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
/*
|
||||
* Copyright 2014 Broadcom Corporation.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <cpu_func.h>
|
||||
#include <init.h>
|
||||
#include <net.h>
|
||||
#include <asm/cache.h>
|
||||
#include <asm/global_data.h>
|
||||
#include <asm/io.h>
|
||||
#include <config.h>
|
||||
#include <netdev.h>
|
||||
#include <asm/system.h>
|
||||
#include <asm/iproc-common/armpll.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
/*
|
||||
* board_init - early hardware init
|
||||
*/
|
||||
int board_init(void)
|
||||
{
|
||||
/*
|
||||
* Address of boot parameters passed to kernel
|
||||
* Use default offset 0x100
|
||||
*/
|
||||
gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* dram_init - sets u-boot's idea of sdram size
|
||||
*/
|
||||
int dram_init(void)
|
||||
{
|
||||
gd->ram_size = get_ram_size((long *)CFG_SYS_SDRAM_BASE,
|
||||
CFG_SYS_SDRAM_SIZE);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int dram_init_banksize(void)
|
||||
{
|
||||
gd->bd->bi_dram[0].start = CFG_SYS_SDRAM_BASE;
|
||||
gd->bd->bi_dram[0].size = gd->ram_size;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_early_init_f(void)
|
||||
{
|
||||
uint32_t status = 0;
|
||||
|
||||
/* Setup PLL if required */
|
||||
#if defined(CONFIG_ARMCLK)
|
||||
armpll_config(CONFIG_ARMCLK);
|
||||
#endif
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_ARMV7_NONSEC
|
||||
void smp_set_core_boot_addr(unsigned long addr, int corenr)
|
||||
{
|
||||
}
|
||||
|
||||
void smp_kick_all_cpus(void)
|
||||
{
|
||||
}
|
||||
|
||||
void smp_waitloop(unsigned previous_address)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BCM_SF2_ETH
|
||||
int board_eth_init(struct bd_info *bis)
|
||||
{
|
||||
int rc = -1;
|
||||
printf("Registering BCM sf2 eth\n");
|
||||
rc = bcm_sf2_eth_register(bis, 0);
|
||||
return rc;
|
||||
}
|
||||
#endif
|
|
@ -1,6 +1,6 @@
|
|||
BCMNS BOARD
|
||||
M: Linus Walleij <linus.walleij@linaro.org>
|
||||
S: Maintained
|
||||
F: board/broadcom/bcmnsp/
|
||||
F: configs/bcmnsp_defconfig
|
||||
F: include/configs/bcmnsp.h
|
||||
F: board/broadcom/bcmns/
|
||||
F: configs/bcmns_defconfig
|
||||
F: include/configs/bcmns.h
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
MX6ULZ_SMM_M2 BOARD
|
||||
M: Michael Trimarchi <michael@amarulasolutions.com>
|
||||
S: Maintained
|
||||
F: board/bsh/mx6ulz_smm_m2/
|
||||
F: board/bsh/imx6ulz_smm_m2/
|
||||
F: include/configs/imx6ulz_smm_m2.h
|
||||
F: configs/imx6ulz_smm_m2_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
TK1-SOM BOARD
|
||||
M: Peter.Chubb@data61.csiro.au
|
||||
S: Maintained
|
||||
F: board/cei/tk1-som/
|
||||
F: board/cei/cei-tk1-som/
|
||||
F: include/configs/cei-tk1-som.h
|
||||
F: configs/cei-tk1-som_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMTREND AR-5315U BOARD
|
||||
M: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
S: Maintained
|
||||
F: board/comtrend/ar-5315u/
|
||||
F: board/comtrend/ar5315u/
|
||||
F: include/configs/comtrend_ar5315u.h
|
||||
F: configs/comtrend_ar5315u_ram_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMTREND AR-5387UN BOARD
|
||||
M: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
S: Maintained
|
||||
F: board/comtrend/ar-5387un/
|
||||
F: board/comtrend/ar5387un/
|
||||
F: include/configs/comtrend_ar5387un.h
|
||||
F: configs/comtrend_ar5387un_ram_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMTREND CT-5361 BOARD
|
||||
M: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
S: Maintained
|
||||
F: board/comtrend/ct-5361/
|
||||
F: board/comtrend/ct5361/
|
||||
F: include/configs/comtrend_ct5361.h
|
||||
F: configs/comtrend_ct5361_ram_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMTREND VR-3032U BOARD
|
||||
M: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
S: Maintained
|
||||
F: board/comtrend/vr-3032u/
|
||||
F: board/comtrend/vr3032u/
|
||||
F: include/configs/comtrend_vr-3032u.h
|
||||
F: configs/comtrend_vr3032u_ram_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMTREND WAP-5813N BOARD
|
||||
M: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
S: Maintained
|
||||
F: board/comtrend/wap-5813n/
|
||||
F: board/comtrend/wap5813n/
|
||||
F: include/configs/comtrend_wap-5813n.h
|
||||
F: configs/comtrend_wap5813n_ram_defconfig
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
COREBOOT BOARD
|
||||
M: Simon Glass <sjg@chromium.org>
|
||||
S: Maintained
|
||||
F: board/coreboot/coreboot/
|
||||
F: board/coreboot/
|
||||
F: include/configs/coreboot.h
|
||||
F: configs/coreboot_defconfig
|
||||
|
||||
COREBOOT64 BOARD
|
||||
M: Simon Glass <sjg@chromium.org>
|
||||
S: Maintained
|
||||
F: board/coreboot/coreboot/
|
||||
F: include/configs/coreboot.h
|
||||
F: configs/coreboot64_defconfig
|
||||
|
|
|
@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
|
|||
S: Maintained
|
||||
F: arch/arm/dts/imx8mm-data-modul-edm-sbc.dts
|
||||
F: arch/arm/dts/imx8mm-data-modul-edm-sbc-u-boot.dtsi
|
||||
F: board/data_modul/imx8mm_data_modul_edm_sbc/
|
||||
F: board/data_modul/imx8mm_edm_sbc/
|
||||
F: configs/imx8mm_data_modul_edm_sbc_defconfig
|
||||
F: include/configs/imx8mm_data_modul_edm_sbc.h
|
||||
|
|
|
@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
|
|||
S: Maintained
|
||||
F: arch/arm/dts/imx8mp-data-modul-edm-sbc.dts
|
||||
F: arch/arm/dts/imx8mp-data-modul-edm-sbc-u-boot.dtsi
|
||||
F: board/data_modul/imx8mp_data_modul_edm_sbc/
|
||||
F: board/data_modul/imx8mp_edm_sbc/
|
||||
F: configs/imx8mp_data_modul_edm_sbc_defconfig
|
||||
F: include/configs/imx8mp_data_modul_edm_sbc.h
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
Devboards.de DBM-SoC1 BOARD
|
||||
M: Marek Vasut <marex@denx.de>
|
||||
S: Maintained
|
||||
F: board/devboards/dbm-soc1/
|
||||
F: include/configs/socfpga_dbm_soc1.h
|
||||
F: configs/socfpga_dbm_soc1_defconfig
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
EFI-X86_APP32 BOARD
|
||||
M: Simon Glass <sjg@chromium.org>
|
||||
S: Maintained
|
||||
F: board/efi/Kconfig
|
||||
F: board/efi/efi-x86_app/
|
||||
F: include/configs/efi-x86_app.h
|
||||
F: configs/efi-x86_app32_defconfig
|
||||
|
@ -8,6 +9,7 @@ F: configs/efi-x86_app32_defconfig
|
|||
EFI-X86_APP64 BOARD
|
||||
M: Simon Glass <sjg@chromium.org>
|
||||
S: Maintained
|
||||
F: board/efi/Kconfig
|
||||
F: board/efi/efi-x86_app/
|
||||
F: include/configs/efi-x86_app.h
|
||||
F: configs/efi-x86_app64_defconfig
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
EFI-X86_PAYLOAD BOARD
|
||||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/efi/Kconfig
|
||||
F: board/efi/efi-x86_payload/
|
||||
F: include/configs/efi-x86_payload.h
|
||||
F: configs/efi-x86_payload32_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ QEMU ARM 'VIRT' BOARD
|
|||
M: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
|
||||
S: Maintained
|
||||
F: board/emulation/qemu-arm/
|
||||
F: board/emulation/common/
|
||||
F: include/configs/qemu-arm.h
|
||||
F: configs/qemu_arm_defconfig
|
||||
F: configs/qemu_arm64_defconfig
|
||||
|
|
|
@ -3,5 +3,6 @@ M: Alexander Graf <agraf@csgraf.de>
|
|||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/emulation/qemu-ppce500/
|
||||
F: board/emulation/common/
|
||||
F: include/configs/qemu-ppce500.h
|
||||
F: configs/qemu-ppce500_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ QEMU RISC-V 'VIRT' BOARD
|
|||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/emulation/qemu-riscv/
|
||||
F: board/emulation/common/
|
||||
F: include/configs/qemu-riscv.h
|
||||
F: configs/qemu-riscv32_defconfig
|
||||
F: configs/qemu-riscv32_smode_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ QEMU X86 BOARD
|
|||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/emulation/qemu-x86/
|
||||
F: board/emulation/common/
|
||||
F: include/configs/qemu-x86.h
|
||||
F: configs/qemu-x86_defconfig
|
||||
|
||||
|
@ -9,5 +10,6 @@ QEMU X86 64-bit BOARD
|
|||
M: Bin Meng <bmeng.cn@gmail.com>
|
||||
S: Maintained
|
||||
F: board/emulation/qemu-x86/
|
||||
F: board/emulation/common/
|
||||
F: include/configs/qemu-x86.h
|
||||
F: configs/qemu-x86_64_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ MX6Q_ENGICAM BOARD
|
|||
M: Jagan Teki <jagan@amarulasolutions.com>
|
||||
S: Maintained
|
||||
F: board/engicam/imx6q
|
||||
F: board/engicam/common
|
||||
F: include/configs/imx6-engicam.h
|
||||
F: configs/imx6qdl_icore_mmc_defconfig
|
||||
F: configs/imx6q_icore_nand_defconfig
|
||||
|
|
|
@ -2,6 +2,7 @@ MX6UL_ENGICAM BOARD
|
|||
M: Jagan Teki <jagan@amarulasolutions.com>
|
||||
S: Maintained
|
||||
F: board/engicam/imx6ul
|
||||
F: board/engicam/common
|
||||
F: include/configs/imx6-engicam.h
|
||||
F: configs/imx6ul_geam_mmc_defconfig
|
||||
F: configs/imx6ul_geam_nand_defconfig
|
||||
|
|
|
@ -9,5 +9,6 @@ M: Jagan Teki <jagan@amarulasolutions.com>
|
|||
M: Matteo Lisi <matteo.lisi@engicam.com>
|
||||
S: Maintained
|
||||
F: board/engicam/imx8mm
|
||||
F: board/engicam/common
|
||||
F: include/configs/imx8mm_icore_mx8mm.h
|
||||
F: configs/imx8mm-icore-mx8mm-edimm2.2_defconfig
|
||||
|
|
|
@ -3,5 +3,6 @@ M: Manoj Sai <abbaraju.manojsai@amarulasolutions.com>
|
|||
M: Matteo Lisi <matteo.lisi@engicam.com>
|
||||
S: Maintained
|
||||
F: board/engicam/imx8mp
|
||||
F: board/engicam/common
|
||||
F: include/configs/imx8mp_icore_mx8mp.h
|
||||
F: configs/imx8mp-icore-mx8mp-edimm2.2_defconfig
|
||||
|
|
|
@ -15,5 +15,6 @@ M: Jagan Teki <jagan@amarulasolutions.com>
|
|||
M: Suniel Mahesh <sunil@amarulasolutions.com>
|
||||
S: Maintained
|
||||
F: board/engicam/px30_core
|
||||
F: board/engicam/common
|
||||
F: include/configs/px30_core.h
|
||||
F: configs/px30-core-edimm2.2-px30_defconfig
|
||||
|
|
|
@ -23,4 +23,5 @@ M: Matteo Lisi <matteo.lisi@engicam.com>
|
|||
S: Maintained
|
||||
F: arch/arm/dts/stm32mp15*icore*
|
||||
F: board/engicam/stm32mp1
|
||||
F: board/engicam/common
|
||||
F: configs/stm32mp15-icore-stm32mp1-edimm2.2_defconfig
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
ROC-RK3308-CC
|
||||
M: Andy Yan <andy.yan@rock-chips.com>
|
||||
S: Maintained
|
||||
F: board/firefly/firefly-rk3308/roc_cc_rk3308.c
|
||||
F: board/firefly/firefly-rk3308/
|
||||
F: configs/roc-cc-rk3308_defconfig
|
||||
F: include/configs/firefly_rk3308.h
|
||||
|
|
|
@ -4,4 +4,4 @@ S: Maintained
|
|||
F: board/freescale/imx93_evk/
|
||||
F: include/configs/imx93_evk.h
|
||||
F: configs/imx93_11x11_evk_defconfig
|
||||
configs/imx93_11x11_evk_ld_defconfig
|
||||
F: configs/imx93_11x11_evk_ld_defconfig
|
||||
|
|
|
@ -3,7 +3,6 @@ M: Mingkai Hu <mingkai.hu@nxp.com>
|
|||
M: Rajesh Bhagat <rajesh.bhagat@nxp.com>
|
||||
S: Maintained
|
||||
F: board/freescale/ls1043ardb/
|
||||
F: board/freescale/ls1043ardb/ls1043ardb.c
|
||||
F: include/configs/ls1043ardb.h
|
||||
F: configs/ls1043ardb_defconfig
|
||||
F: configs/ls1043ardb_nand_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ A38X BOARD
|
|||
M: Mario Six <mario.six@gdsys.cc>
|
||||
S: Maintained
|
||||
F: board/gdsys/a38x/
|
||||
F: board/gdsys/common/
|
||||
F: include/configs/controlcenterdc.h
|
||||
F: configs/controlcenterdc_defconfig
|
||||
|
|
|
@ -2,5 +2,6 @@ MPC8308 BOARD
|
|||
M: Mario Six <mario.six@gdsys.cc>
|
||||
S: Maintained
|
||||
F: board/gdsys/mpc8308/
|
||||
F: board/gdsys/common/
|
||||
F: include/configs/gazerbeam.h
|
||||
F: configs/gazerbeam_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
CHROMEBOX PANTHER BOARD
|
||||
M: Simon Glass <sjg@chromium.org>
|
||||
S: Maintained
|
||||
F: board/google/chromebook_panther/
|
||||
F: board/google/chromebox_panther/
|
||||
F: include/configs/chromebox_panther.h
|
||||
F: configs/chromebox_panther_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
GO2
|
||||
M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
|
||||
S: Maintained
|
||||
F: board/odroid/go2
|
||||
F: board/hardkernel/odroid_go2/
|
||||
F: include/configs/odroid_go2.h
|
||||
F: configs/odroid-go2_defconfig
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
KP_IMX53_HSC BOARD
|
||||
M: Lukasz Majewski <lukma@denx.de>
|
||||
S: Maintained
|
||||
F: board/k+p/kp_imx53/
|
||||
F: board/k\+p/kp_imx53/
|
||||
F: board/k\+p/bootscripts/tpcboot.cmd
|
||||
F: include/configs/kp_imx53.h
|
||||
F: configs/kp_imx53_defconfig
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
KP_IMX6Q_TPC BOARD
|
||||
M: Lukasz Majewski <lukma@denx.de>
|
||||
S: Maintained
|
||||
F: board/k+p/kp_imx6q_tpc/
|
||||
F: board/k\+p/kp_imx6q_tpc/
|
||||
F: board/k\+p/bootscripts/tpcboot.cmd
|
||||
F: include/configs/kp_imx6q_tpc.h
|
||||
F: configs/kp_imx6q_tpc_defconfig
|
||||
|
|
|
@ -3,6 +3,8 @@ M: Holger Brunck <holger.brunck@hitachienergy.com>
|
|||
M: Heiko Schocher <hs@denx.de>
|
||||
S: Maintained
|
||||
F: board/keymile/km83xx/
|
||||
F: board/keymile/common/
|
||||
F: board/keymile/scripts/
|
||||
F: include/configs/km8360.h
|
||||
F: configs/kmcoge5ne_defconfig
|
||||
F: configs/kmeter1_defconfig
|
||||
|
|
|
@ -2,6 +2,8 @@ KMCENT2 BOARD
|
|||
M: Niel Fourie <lusus@denx.de>
|
||||
S: Maintained
|
||||
F: board/keymile/kmcent2/
|
||||
F: board/keymile/common/
|
||||
F: board/keymile/scripts/
|
||||
F: include/configs/kmcent2.h
|
||||
F: configs/kmcent2_defconfig
|
||||
F: arch/powerpc/dts/kmcent2.dts
|
||||
|
|
|
@ -3,6 +3,8 @@ M: Aleksandar Gerasimovski <aleksandar.gerasimovski@hitachienergy.com>
|
|||
M: Rainer Boschung <rainer.boschung@hitachienergy.com>
|
||||
S: Maintained
|
||||
F: board/keymile/pg-wcom-ls102xa/
|
||||
F: board/keymile/common/
|
||||
F: board/keymile/scripts/
|
||||
F: include/configs/km/pg-wcom-ls102xa.h
|
||||
F: include/configs/pg-wcom-seli8.h
|
||||
F: include/configs/pg-wcom-expu1.h
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
Hitachi Power Grids SECU1 BOARD
|
||||
M: Holger Brunck <holger.brunck@hitachienergy.com>
|
||||
S: Maintained
|
||||
F: board/keymile/secu1/
|
||||
F: board/keymile/common/
|
||||
F: board/keymile/scripts/
|
||||
F: include/configs/socfpga_arria5_secu1.h
|
||||
F: configs/socfpga_secu1_defconfig
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
VInCo Platform
|
||||
M: Gregory CLEMENT <gregory.clement@free-electrons.com>
|
||||
S: Maintained
|
||||
F: board/l+g/vinco
|
||||
F: board/l\+g/vinco/
|
||||
F: include/configs/vinco.h
|
||||
F: configs/vinco_defconfig
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PINEBOOK_PRO
|
||||
M: Peter Robinson <pbrobinson@gmail.com>
|
||||
S: Maintained
|
||||
F: board/pine64/rk3399-pinebook-pro/
|
||||
F: board/pine64/pinebook-pro-rk3399/
|
||||
F: include/configs/rk3399-pinebook-pro.h
|
||||
F: arch/arm/dts/rk3399-pinebook-pro.dts
|
||||
F: arch/arm/dts/rk3399-pinebook-pro-u-boot.dtsi
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PINEPHONE_PRO
|
||||
M: Peter Robinson <pbrobinson@gmail.com>
|
||||
S: Maintained
|
||||
F: board/pine64/rk3399-pinephone-pro/
|
||||
F: board/pine64/pinephone-pro-rk3399/
|
||||
F: include/configs/rk3399-pinephone-pro.h
|
||||
F: arch/arm/dts/rk3399-pinephone-pro.dts
|
||||
F: arch/arm/dts/rk3399-pinephone-pro-u-boot.dtsi
|
||||
|
|
|
@ -80,6 +80,12 @@ F: configs/orangepi-rk3399_defconfig
|
|||
F: arch/arm/dts/rk3399-u-boot.dtsi
|
||||
F: arch/arm/dts/rk3399-orangepi-u-boot.dtsi
|
||||
|
||||
RADXA ROCK 4C+
|
||||
M: FUKAUMI Naoki <naoki@radxa.com>
|
||||
S: Maintained
|
||||
F: configs/rock-4c-plus-rk3399_defconfig
|
||||
F: arch/arm/dts/rk3399-rock-4c-plus.dts
|
||||
|
||||
ROCK-PI-4
|
||||
M: Akash Gajjar <akash@openedev.com>
|
||||
M: Jagan Teki <jagan@amarulasolutions.com>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
i.MX7-CM BOARD
|
||||
M: Ilko Iliev <iliev@ronetix.com>
|
||||
S: Maintained
|
||||
F: board/ronetix/imx7_cm/
|
||||
F: include/configs/imx7_cm.h
|
||||
F: configs/imx7_cm_defconfig
|
||||
F: board/ronetix/imx7-cm/
|
||||
F: include/configs/imx7-cm.h
|
||||
F: configs/imx7_cm_defconfig
|
||||
|
|
|
@ -4,6 +4,6 @@ S: Maintained
|
|||
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-dev-board.dts
|
||||
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-u-boot.dtsi
|
||||
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull.dtsi
|
||||
F: board/seeed/npi-imx6ull/
|
||||
F: board/seeed/npi_imx6ull/
|
||||
F: configs/seeed_npi_imx6ull_defconfig
|
||||
F: include/configs/npi_imx6ull.h
|
||||
|
|
|
@ -4,6 +4,7 @@ M: Jan Kiszka <jan.kiszka@siemens.com>
|
|||
S: Maintained
|
||||
F: board/siemens/iot2050/
|
||||
F: include/configs/iot2050.h
|
||||
F: configs/iot2050_defconfig
|
||||
F: configs/iot2050_pg1_defconfig
|
||||
F: configs/iot2050_pg2_defconfig
|
||||
F: arch/arm/dts/iot2050-*
|
||||
F: doc/board/siemens/iot2050.rst
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
VINING FPGA BOARD
|
||||
M: Marek Vasut <marex@denx.de>
|
||||
S: Maintained
|
||||
F: board/softing/vining_fpga/
|
||||
F: include/configs/socfpga_vining_fpga.h
|
||||
F: configs/socfpga_vining_fpga_defconfig
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
CLEARFOG BOARD
|
||||
M: Stefan Roese <sr@denx.de>
|
||||
S: Maintained
|
||||
F: board/soldrun/clearfog/
|
||||
F: board/solidrun/clearfog/
|
||||
F: include/configs/clearfog.h
|
||||
F: configs/clearfog_defconfig
|
||||
F: configs/clearfog_gt_8k_defconfig
|
||||
F: configs/clearfog_sata_defconfig
|
||||
F: configs/clearfog_spi_defconfig
|
||||
|
|
|
@ -211,6 +211,11 @@ M: Aleksandr Aleksandrov <aleksandr.aleksandrov@emlid.com>
|
|||
S: Maintained
|
||||
F: configs/emlid_neutis_n5_devboard_defconfig
|
||||
|
||||
LCTECH PI F1C200S
|
||||
M: Andre Przywara <andre.przywara@arm.com>
|
||||
S: Maintained
|
||||
F: configs/lctech_pi_f1c200s_defconfig
|
||||
|
||||
GEMEI-G9 TABLET
|
||||
M: Priit Laes <plaes@plaes.org>
|
||||
S: Maintained
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
SOCFPGA ATLAS BOARD
|
||||
M: Dinh Nguyen <dinguyen@kernel.org>
|
||||
S: Maintained
|
||||
F: board/terasic/de0-nano-soc/
|
||||
F: include/configs/socfpga_de0_nano_soc.h
|
||||
F: configs/socfpga_de0_nano_soc_defconfig
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
DE1-SoC BOARD
|
||||
M: Anatolij Gustschin <agust@denx.de>
|
||||
S: Maintained
|
||||
F: board/terasic/de1-soc/
|
||||
F: include/configs/socfpga_de1_soc.h
|
||||
F: configs/socfpga_de1_soc_defconfig
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
DE10-NANO BOARD
|
||||
M: Dalon Westergreen <dwesterg@gmail.com>
|
||||
S: Maintained
|
||||
F: board/terasic/de10-nano/
|
||||
F: include/configs/socfpga_de10_nano.h
|
||||
F: configs/socfpga_de10_nano_defconfig
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
DE10-STANDARD BOARD
|
||||
M: Humberto Naves <hsnaves@gmail.com>
|
||||
S: Maintained
|
||||
F: board/terasic/de10-standard/
|
||||
F: include/configs/socfpga_de10_standard.h
|
||||
F: configs/socfpga_de10_standard_defconfig
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
SOCKIT BOARD
|
||||
M: Marek Vasut <marex@denx.de>
|
||||
S: Maintained
|
||||
F: board/terasic/sockit/
|
||||
F: include/configs/socfpga_sockit.h
|
||||
F: configs/socfpga_sockit_defconfig
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
KS2_EVM BOARD
|
||||
M: Vitaly Andrianov <vitalya@ti.com>
|
||||
KeyStone II EVM Boards
|
||||
M: Andrew Davis <afd@ti.com>
|
||||
S: Maintained
|
||||
F: arch/arm/mach-keystone/
|
||||
F: board/ti/ks2_evm/
|
||||
F: include/configs/k2hk_evm.h
|
||||
F: configs/k2hk_evm_defconfig
|
||||
F: include/configs/k2e_evm.h
|
||||
F: configs/k2e_evm_defconfig
|
||||
F: include/configs/k2l_evm.h
|
||||
F: configs/k2l_evm_defconfig
|
||||
F: include/configs/k2g_evm.h
|
||||
F: configs/k2g_evm_defconfig
|
||||
N: k2hk
|
||||
N: k2e
|
||||
N: k2l
|
||||
N: k2g
|
||||
|
|
|
@ -5,6 +5,7 @@ S: Maintained
|
|||
F: arch/arm/dts/fsl-imx8qm-apalis.dts
|
||||
F: arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi
|
||||
F: board/toradex/apalis-imx8/
|
||||
F: board/toradex/common/
|
||||
F: configs/apalis-imx8_defconfig
|
||||
F: doc/board/toradex/apalis-imx8.rst
|
||||
F: include/configs/apalis-imx8.h
|
||||
|
|
|
@ -2,6 +2,7 @@ Apalis TK1
|
|||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/apalis-tk1/
|
||||
F: board/toradex/common/
|
||||
F: include/configs/apalis-tk1.h
|
||||
F: configs/apalis-tk1_defconfig
|
||||
F: arch/arm/dts/tegra124-apalis.dtb
|
||||
|
|
|
@ -7,5 +7,6 @@ F: arch/arm/dts/imx6q-apalis-eval.dts
|
|||
F: arch/arm/dts/imx6q-apalis-eval-u-boot.dtsi
|
||||
F: arch/arm/dts/imx6qdl-apalis.dtsi
|
||||
F: board/toradex/apalis_imx6/
|
||||
F: board/toradex/common/
|
||||
F: configs/apalis_imx6_defconfig
|
||||
F: include/configs/apalis_imx6.h
|
||||
|
|
|
@ -2,6 +2,7 @@ Apalis T30
|
|||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/apalis_t30/
|
||||
F: board/toradex/common/
|
||||
F: include/configs/apalis_t30.h
|
||||
F: configs/apalis_t30_defconfig
|
||||
F: arch/arm/dts/tegra30-apalis.dtb
|
||||
|
|
|
@ -11,6 +11,7 @@ F: arch/arm/dts/imx6ull-colibri-eval-v3.dtsi
|
|||
F: arch/arm/dts/imx6ull-colibri-nonwifi.dtsi
|
||||
F: arch/arm/dts/imx6ull-colibri-u-boot.dtsi
|
||||
F: board/toradex/colibri-imx6ull/
|
||||
F: board/toradex/common/
|
||||
F: configs/colibri-imx6ull_defconfig
|
||||
F: configs/colibri-imx6ull-emmc_defconfig
|
||||
F: include/configs/colibri-imx6ull.h
|
||||
|
|
|
@ -5,6 +5,7 @@ S: Maintained
|
|||
F: arch/arm/dts/fsl-imx8x-colibri.dts
|
||||
F: arch/arm/dts/fsl-imx8x-colibri-u-boot.dtsi
|
||||
F: board/toradex/colibri-imx8x/
|
||||
F: board/toradex/common/
|
||||
F: configs/colibri-imx8x_defconfig
|
||||
F: doc/board/toradex/colibri-imx8x.rst
|
||||
F: include/configs/colibri-imx8x.h
|
||||
|
|
|
@ -4,6 +4,7 @@ W: http://developer.toradex.com/software/linux/linux-software
|
|||
W: https://www.toradex.com/community
|
||||
S: Maintained
|
||||
F: board/toradex/colibri_imx6/
|
||||
F: board/toradex/common/
|
||||
F: include/configs/colibri_imx6.h
|
||||
F: configs/colibri_imx6_defconfig
|
||||
F: arch/arm/dts/imx6dl-colibri-eval-v3.dts
|
||||
|
|
|
@ -10,6 +10,7 @@ F: arch/arm/boot/dts/imx7d-colibri-emmc.dtsi
|
|||
F: arch/arm/boot/dts/imx7d-colibri-emmc-eval-v3.dts
|
||||
F: arch/arm/boot/dts/imx7d-colibri-eval-v3.dts
|
||||
F: board/toradex/colibri_imx7/
|
||||
F: board/toradex/common/
|
||||
F: configs/colibri_imx7_defconfig
|
||||
F: configs/colibri_imx7_emmc_defconfig
|
||||
F: doc/board/toradex/colibri_imx7.rst
|
||||
|
|
|
@ -2,6 +2,7 @@ COLIBRI_T20
|
|||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/colibri_t20/
|
||||
F: board/toradex/common/
|
||||
F: include/configs/colibri_t20.h
|
||||
F: configs/colibri_t20_defconfig
|
||||
F: arch/arm/dts/tegra20-colibri.dtb
|
||||
|
|
|
@ -2,6 +2,7 @@ Colibri T30
|
|||
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
||||
S: Maintained
|
||||
F: board/toradex/colibri_t30/
|
||||
F: board/toradex/common/
|
||||
F: include/configs/colibri_t30.h
|
||||
F: configs/colibri_t30_defconfig
|
||||
F: arch/arm/dts/tegra30-colibri.dtb
|
||||
|
|
|
@ -8,5 +8,6 @@ F: arch/arm/dts/vf-colibri-eval-v3.dtsi
|
|||
F: arch/arm/dts/vf610-colibri-eval-v3-u-boot.dtsi
|
||||
F: arch/arm/dts/vf610-colibri.dts
|
||||
F: board/toradex/colibri_vf/
|
||||
F: board/toradex/common/
|
||||
F: configs/colibri_vf_defconfig
|
||||
F: include/configs/colibri_vf.h
|
||||
|
|
|
@ -8,6 +8,7 @@ F: arch/arm/dts/imx8mm-verdin-wifi.dtsi
|
|||
F: arch/arm/dts/imx8mm-verdin-wifi-dev.dts
|
||||
F: arch/arm/dts/imx8mm-verdin-wifi-dev-u-boot.dtsi
|
||||
F: board/toradex/verdin-imx8mm/
|
||||
F: board/toradex/common/
|
||||
F: configs/verdin-imx8mm_defconfig
|
||||
F: doc/board/toradex/verdin-imx8mm.rst
|
||||
F: include/configs/verdin-imx8mm.h
|
||||
|
|
|
@ -5,6 +5,7 @@ F: arch/arm/dts/imx8mp-verdin-wifi.dtsi
|
|||
F: arch/arm/dts/imx8mp-verdin-wifi-dev.dts
|
||||
F: arch/arm/dts/imx8mp-verdin-wifi-dev-u-boot.dtsi
|
||||
F: board/toradex/verdin-imx8mp/
|
||||
F: board/toradex/common/
|
||||
F: configs/verdin-imx8mp_defconfig
|
||||
F: doc/board/toradex/verdin-imx8mp.rst
|
||||
F: include/configs/verdin-imx8mp.h
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
ROCK960-RK3399
|
||||
M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
||||
S: Maintained
|
||||
F: board/rockchip/rock960_rk3399
|
||||
F: board/vamrs/rock960_rk3399/
|
||||
F: include/configs/rock960_rk3399.h
|
||||
F: configs/rock960-rk3399_defconfig
|
||||
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
# (C) Copyright 2006
|
||||
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||
|
||||
obj-$(CONFIG_MPC86xx) += fsl_8xxx_clk.o
|
||||
obj-$(CONFIG_ARCH_P2020) += fsl_8xxx_clk.o
|
||||
obj-$(CONFIG_MPC85xx) += fsl_8xxx_misc.o board.o
|
||||
obj-$(CONFIG_MPC86xx) += fsl_8xxx_misc.o board.o
|
|
@ -1,67 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
/*
|
||||
* Copyright 2009 Extreme Engineering Solutions, Inc.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <env.h>
|
||||
#include "fsl_8xxx_misc.h"
|
||||
#include <init.h>
|
||||
|
||||
int checkboard(void)
|
||||
{
|
||||
char name[] = CONFIG_SYS_BOARD_NAME;
|
||||
char buf[64];
|
||||
char *s;
|
||||
int i;
|
||||
|
||||
#ifdef CONFIG_SYS_FORM_CUSTOM
|
||||
s = "Custom";
|
||||
#elif CONFIG_SYS_FORM_6U_CPCI
|
||||
s = "6U CompactPCI";
|
||||
#elif CONFIG_SYS_FORM_ATCA_PMC
|
||||
s = "ATCA w/PMC";
|
||||
#elif CONFIG_SYS_FORM_ATCA_AMC
|
||||
s = "ATCA w/AMC";
|
||||
#elif CONFIG_SYS_FORM_VME
|
||||
s = "VME";
|
||||
#elif CONFIG_SYS_FORM_6U_VPX
|
||||
s = "6U VPX";
|
||||
#elif CONFIG_SYS_FORM_PMC
|
||||
s = "PMC";
|
||||
#elif CONFIG_SYS_FORM_PCI
|
||||
s = "PCI";
|
||||
#elif CONFIG_SYS_FORM_3U_CPCI
|
||||
s = "3U CompactPCI";
|
||||
#elif CONFIG_SYS_FORM_AMC
|
||||
s = "AdvancedMC";
|
||||
#elif CONFIG_SYS_FORM_XMC
|
||||
s = "XMC";
|
||||
#elif CONFIG_SYS_FORM_PMC_XMC
|
||||
s = "PMC/XMC";
|
||||
#elif CONFIG_SYS_FORM_PCI_EXPRESS
|
||||
s = "PCI Express";
|
||||
#elif CONFIG_SYS_FORM_3U_VPX
|
||||
s = "3U VPX";
|
||||
#else
|
||||
#error "Form factor not defined"
|
||||
#endif
|
||||
|
||||
name[strlen(name) - 1] += get_board_derivative();
|
||||
printf("Board: X-ES %s %s SBC\n", name, s);
|
||||
|
||||
/* Display board specific information */
|
||||
puts(" ");
|
||||
i = env_get_f("board_rev", buf, sizeof(buf));
|
||||
if (i > 0)
|
||||
printf("Rev %s, ", buf);
|
||||
i = env_get_f("serial#", buf, sizeof(buf));
|
||||
if (i > 0)
|
||||
printf("Serial# %s, ", buf);
|
||||
i = env_get_f("board_cfg", buf, sizeof(buf));
|
||||
if (i > 0)
|
||||
printf("Cfg %s", buf);
|
||||
puts("\n");
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
/*
|
||||
* Copyright 2008 Extreme Engineering Solutions, Inc.
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <clock_legacy.h>
|
||||
#include <asm/io.h>
|
||||
|
||||
/*
|
||||
* Return SYSCLK input frequency - 50 MHz or 66 MHz depending on POR config
|
||||
*/
|
||||
unsigned long get_board_sys_clk(void)
|
||||
{
|
||||
#if defined(CONFIG_MPC85xx)
|
||||
volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
|
||||
#elif defined(CONFIG_MPC86xx)
|
||||
immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
|
||||
volatile ccsr_gur_t *gur = &immap->im_gur;
|
||||
#endif
|
||||
|
||||
if (in_be32(&gur->gpporcr) & 0x10000)
|
||||
return 66666666;
|
||||
else
|
||||
#ifdef CONFIG_ARCH_P2020
|
||||
return 100000000;
|
||||
#else
|
||||
return 50000000;
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MPC85xx
|
||||
/*
|
||||
* Return DDR input clock - synchronous with SYSCLK or 66 MHz
|
||||
* Note: 86xx doesn't support asynchronous DDR clk
|
||||
*/
|
||||
unsigned long get_board_ddr_clk(void)
|
||||
{
|
||||
volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
|
||||
u32 ddr_ratio = (in_be32(&gur->porpllsr) & 0x00003e00) >> 9;
|
||||
|
||||
if (ddr_ratio == 0x7)
|
||||
return get_board_sys_clk();
|
||||
|
||||
#ifdef CONFIG_ARCH_P2020
|
||||
if (in_be32(&gur->gpporcr) & 0x20000)
|
||||
return 66666666;
|
||||
else
|
||||
return 100000000;
|
||||
#else
|
||||
return 66666666;
|
||||
#endif
|
||||
}
|
||||
#endif
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue