mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-29 23:53:33 +08:00
Merge branch '2019-02-08-master-imports'
- bcm6345 watchdog, bcm63158/bcm963158 initial support. - Various TI platform resyncs and improvements. - FDT support in Android-format images. - stm32mp1 improvements.
This commit is contained in:
commit
2e8560797f
@ -720,7 +720,9 @@ F: configs/am335x_hs_evm_defconfig
|
|||||||
F: configs/am335x_hs_evm_uart_defconfig
|
F: configs/am335x_hs_evm_uart_defconfig
|
||||||
F: configs/am43xx_hs_evm_defconfig
|
F: configs/am43xx_hs_evm_defconfig
|
||||||
F: configs/am57xx_hs_evm_defconfig
|
F: configs/am57xx_hs_evm_defconfig
|
||||||
|
F: configs/am57xx_hs_evm_usb_defconfig
|
||||||
F: configs/dra7xx_hs_evm_defconfig
|
F: configs/dra7xx_hs_evm_defconfig
|
||||||
|
F: configs/dra7xx_hs_evm_usb_defconfig
|
||||||
F: configs/k2hk_hs_evm_defconfig
|
F: configs/k2hk_hs_evm_defconfig
|
||||||
F: configs/k2e_hs_evm_defconfig
|
F: configs/k2e_hs_evm_defconfig
|
||||||
F: configs/k2g_hs_evm_defconfig
|
F: configs/k2g_hs_evm_defconfig
|
||||||
|
@ -528,6 +528,12 @@ config ARCH_BCM283X
|
|||||||
imply CMD_DM
|
imply CMD_DM
|
||||||
imply FAT_WRITE
|
imply FAT_WRITE
|
||||||
|
|
||||||
|
config ARCH_BCM63158
|
||||||
|
bool "Broadcom BCM63158 family"
|
||||||
|
select DM
|
||||||
|
select OF_CONTROL
|
||||||
|
imply CMD_DM
|
||||||
|
|
||||||
config ARCH_BCM6858
|
config ARCH_BCM6858
|
||||||
bool "Broadcom BCM6858 family"
|
bool "Broadcom BCM6858 family"
|
||||||
select DM
|
select DM
|
||||||
@ -1526,6 +1532,7 @@ source "board/armltd/vexpress/Kconfig"
|
|||||||
source "board/armltd/vexpress64/Kconfig"
|
source "board/armltd/vexpress64/Kconfig"
|
||||||
source "board/broadcom/bcm23550_w1d/Kconfig"
|
source "board/broadcom/bcm23550_w1d/Kconfig"
|
||||||
source "board/broadcom/bcm28155_ap/Kconfig"
|
source "board/broadcom/bcm28155_ap/Kconfig"
|
||||||
|
source "board/broadcom/bcm963158/Kconfig"
|
||||||
source "board/broadcom/bcm968580xref/Kconfig"
|
source "board/broadcom/bcm968580xref/Kconfig"
|
||||||
source "board/broadcom/bcmcygnus/Kconfig"
|
source "board/broadcom/bcmcygnus/Kconfig"
|
||||||
source "board/broadcom/bcmnsp/Kconfig"
|
source "board/broadcom/bcmnsp/Kconfig"
|
||||||
|
102
arch/arm/dts/bcm63158.dtsi
Normal file
102
arch/arm/dts/bcm63158.dtsi
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "skeleton64.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
compatible = "brcm,bcm63158";
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
|
||||||
|
cpus {
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
|
||||||
|
cpu0: cpu@0 {
|
||||||
|
compatible = "arm,cortex-a53", "arm,armv8";
|
||||||
|
device_type = "cpu";
|
||||||
|
reg = <0x0 0x0>;
|
||||||
|
next-level-cache = <&l2>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
|
||||||
|
cpu1: cpu@1 {
|
||||||
|
compatible = "arm,cortex-a53", "arm,armv8";
|
||||||
|
device_type = "cpu";
|
||||||
|
reg = <0x0 0x1>;
|
||||||
|
next-level-cache = <&l2>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
|
||||||
|
cpu2: cpu@2 {
|
||||||
|
compatible = "arm,cortex-a53", "arm,armv8";
|
||||||
|
device_type = "cpu";
|
||||||
|
reg = <0x0 0x2>;
|
||||||
|
next-level-cache = <&l2>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
|
||||||
|
cpu3: cpu@3 {
|
||||||
|
compatible = "arm,cortex-a53", "arm,armv8";
|
||||||
|
device_type = "cpu";
|
||||||
|
reg = <0x0 0x3>;
|
||||||
|
next-level-cache = <&l2>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
|
||||||
|
l2: l2-cache0 {
|
||||||
|
compatible = "cache";
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
clocks {
|
||||||
|
compatible = "simple-bus";
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
ranges;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
|
||||||
|
periph_osc: periph-osc {
|
||||||
|
compatible = "fixed-clock";
|
||||||
|
#clock-cells = <0>;
|
||||||
|
clock-frequency = <0xbebc200>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
ubus {
|
||||||
|
compatible = "simple-bus";
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
|
||||||
|
uart0: serial@ff812000 {
|
||||||
|
compatible = "arm,pl011", "arm,primecell";
|
||||||
|
reg = <0x0 0xff812000 0x0 0x1000>;
|
||||||
|
clock = <50000000>;
|
||||||
|
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt1: watchdog@ff800480 {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x0 0xff800480 0x0 0x14>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt2: watchdog@ff8004c0 {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x0 0xff8004c0 0x0 0x14>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt-reboot {
|
||||||
|
compatible = "wdt-reboot";
|
||||||
|
wdt = <&wdt1>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
@ -81,5 +81,22 @@
|
|||||||
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wdt1: watchdog@ff802780 {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x0 0xff802780 0x0 0x14>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt2: watchdog@ff8027c0 {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x0 0xff8027c0 0x0 0x14>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt-reboot {
|
||||||
|
compatible = "wdt-reboot";
|
||||||
|
wdt = <&wdt1>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
31
arch/arm/dts/bcm963158.dts
Normal file
31
arch/arm/dts/bcm963158.dts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
#include "bcm63158.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "Broadcom bcm963158";
|
||||||
|
compatible = "broadcom,bcm963158", "brcm,bcm63158";
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
serial0 = &uart0;
|
||||||
|
};
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
stdout-path = "serial0:115200n8";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0x0 0x0 0x0 0x40000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
u-boot,dm-pre-reloc;
|
||||||
|
status = "okay";
|
||||||
|
};
|
@ -39,6 +39,10 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&clk_hse {
|
||||||
|
st,digbypass;
|
||||||
|
};
|
||||||
|
|
||||||
&uart4_pins_a {
|
&uart4_pins_a {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
pins1 {
|
pins1 {
|
||||||
@ -68,7 +72,6 @@
|
|||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* CLOCK init */
|
|
||||||
&rcc {
|
&rcc {
|
||||||
st,clksrc = <
|
st,clksrc = <
|
||||||
CLK_MPU_PLL1P
|
CLK_MPU_PLL1P
|
||||||
@ -101,7 +104,7 @@
|
|||||||
CLK_FMC_ACLK
|
CLK_FMC_ACLK
|
||||||
CLK_QSPI_ACLK
|
CLK_QSPI_ACLK
|
||||||
CLK_ETH_DISABLED
|
CLK_ETH_DISABLED
|
||||||
CLK_SDMMC12_PLL3R
|
CLK_SDMMC12_PLL4P
|
||||||
CLK_DSI_DSIPLL
|
CLK_DSI_DSIPLL
|
||||||
CLK_STGEN_HSE
|
CLK_STGEN_HSE
|
||||||
CLK_USBPHY_HSE
|
CLK_USBPHY_HSE
|
||||||
@ -110,7 +113,7 @@
|
|||||||
CLK_SPI45_HSI
|
CLK_SPI45_HSI
|
||||||
CLK_SPI6_HSI
|
CLK_SPI6_HSI
|
||||||
CLK_I2C46_HSI
|
CLK_I2C46_HSI
|
||||||
CLK_SDMMC3_PLL3R
|
CLK_SDMMC3_PLL4P
|
||||||
CLK_USBO_USBPHY
|
CLK_USBO_USBPHY
|
||||||
CLK_ADC_CKPER
|
CLK_ADC_CKPER
|
||||||
CLK_CEC_LSE
|
CLK_CEC_LSE
|
||||||
@ -121,17 +124,17 @@
|
|||||||
CLK_UART35_HSI
|
CLK_UART35_HSI
|
||||||
CLK_UART6_HSI
|
CLK_UART6_HSI
|
||||||
CLK_UART78_HSI
|
CLK_UART78_HSI
|
||||||
CLK_SPDIF_PLL3Q
|
CLK_SPDIF_PLL4P
|
||||||
CLK_FDCAN_PLL4Q
|
CLK_FDCAN_PLL4Q
|
||||||
CLK_SAI1_PLL3Q
|
CLK_SAI1_PLL3Q
|
||||||
CLK_SAI2_PLL3Q
|
CLK_SAI2_PLL3Q
|
||||||
CLK_SAI3_PLL3Q
|
CLK_SAI3_PLL3Q
|
||||||
CLK_SAI4_PLL3Q
|
CLK_SAI4_PLL3Q
|
||||||
CLK_RNG1_CSI
|
CLK_RNG1_LSI
|
||||||
CLK_RNG2_CSI
|
CLK_RNG2_LSI
|
||||||
CLK_LPTIM1_PCLK1
|
CLK_LPTIM1_PCLK1
|
||||||
CLK_LPTIM23_PCLK3
|
CLK_LPTIM23_PCLK3
|
||||||
CLK_LPTIM45_PCLK3
|
CLK_LPTIM45_LSE
|
||||||
>;
|
>;
|
||||||
|
|
||||||
/* VCO = 1300.0 MHz => P = 650 (CPU) */
|
/* VCO = 1300.0 MHz => P = 650 (CPU) */
|
||||||
@ -148,16 +151,16 @@
|
|||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* VCO = 786.4 MHz => P = 197, Q = 49, R = 98 */
|
/* VCO = 417.8 MHz => P = 209, Q = 24, R = 11 */
|
||||||
pll3: st,pll@2 {
|
pll3: st,pll@2 {
|
||||||
cfg = < 2 97 3 15 7 PQR(1,1,1) >;
|
cfg = < 1 33 1 16 36 PQR(1,1,1) >;
|
||||||
frac = < 0x9ba >;
|
frac = < 0x1a04 >;
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* VCO = 508.0 MHz => P = 56, Q = 56, R = 56 */
|
/* VCO = 594.0 MHz => P = 99, Q = 74, R = 74 */
|
||||||
pll4: st,pll@3 {
|
pll4: st,pll@3 {
|
||||||
cfg = < 5 126 8 8 8 PQR(1,1,1) >;
|
cfg = < 3 98 5 7 7 PQR(1,1,1) >;
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -19,33 +19,25 @@ void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* It is assumed that remoteproc device 1 is the corresponding
|
* It is assumed that remoteproc device 1 is the corresponding
|
||||||
* cortex A core which runs ATF. Make sure DT reflects the same.
|
* Cortex-A core which runs ATF. Make sure DT reflects the same.
|
||||||
*/
|
*/
|
||||||
ret = rproc_dev_init(1);
|
ret = rproc_dev_init(1);
|
||||||
if (ret) {
|
if (ret)
|
||||||
printf("%s: ATF failed to Initialize on rproc: ret= %d\n",
|
panic("%s: ATF failed to initialize on rproc (%d)\n", __func__,
|
||||||
__func__, ret);
|
ret);
|
||||||
hang();
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = rproc_load(1, spl_image->entry_point, 0x200);
|
ret = rproc_load(1, spl_image->entry_point, 0x200);
|
||||||
if (ret) {
|
if (ret)
|
||||||
printf("%s: ATF failed to load on rproc: ret= %d\n",
|
panic("%s: ATF failed to load on rproc (%d)\n", __func__, ret);
|
||||||
__func__, ret);
|
|
||||||
hang();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add an extra newline to differentiate the ATF logs from SPL*/
|
/* Add an extra newline to differentiate the ATF logs from SPL */
|
||||||
printf("Starting ATF on ARM64 core...\n\n");
|
printf("Starting ATF on ARM64 core...\n\n");
|
||||||
|
|
||||||
ret = rproc_start(1);
|
ret = rproc_start(1);
|
||||||
if (ret) {
|
if (ret)
|
||||||
printf("%s: ATF failed to start on rproc: ret= %d\n",
|
panic("%s: ATF failed to start on rproc (%d)\n", __func__, ret);
|
||||||
__func__, ret);
|
|
||||||
hang();
|
|
||||||
}
|
|
||||||
|
|
||||||
debug("ATF started. Wait indefiniely\n");
|
debug("ATF started. Waiting indefinitely...\n");
|
||||||
while (1)
|
while (1)
|
||||||
asm volatile("wfe");
|
asm volatile("wfe");
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,23 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wdt0: watchdog@14e002d0 {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x14e002d0 0xc>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt1: watchdog@14e002dc {
|
||||||
|
compatible = "brcm,bcm6345-wdt";
|
||||||
|
reg = <0x14e002dc 0xc>;
|
||||||
|
clocks = <&periph_osc>;
|
||||||
|
};
|
||||||
|
|
||||||
|
wdt-reboot {
|
||||||
|
compatible = "wdt-reboot";
|
||||||
|
wdt = <&wdt0>;
|
||||||
|
};
|
||||||
|
|
||||||
leds: led-controller@14e00f00 {
|
leds: led-controller@14e00f00 {
|
||||||
compatible = "brcm,bcm6328-leds";
|
compatible = "brcm,bcm6328-leds";
|
||||||
reg = <0x14e00f00 0x28>;
|
reg = <0x14e00f00 0x28>;
|
||||||
|
@ -106,9 +106,8 @@ void am33xx_spl_board_init(void)
|
|||||||
|
|
||||||
/* setup I2C */
|
/* setup I2C */
|
||||||
enable_i2c_pin_mux();
|
enable_i2c_pin_mux();
|
||||||
i2c_set_bus_num(0);
|
|
||||||
i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);
|
pmicsetup(0, 0);
|
||||||
pmicsetup(0);
|
|
||||||
|
|
||||||
/* peripheral reset */
|
/* peripheral reset */
|
||||||
rc = gpio_request(64 + 29, "GPMC_WAIT1");
|
rc = gpio_request(64 + 29, "GPMC_WAIT1");
|
||||||
|
@ -132,7 +132,7 @@ void am33xx_spl_board_init(void)
|
|||||||
puts("ERROR: i2c_set_bus_speed failed! (turn on PWR_nEN)\n");
|
puts("ERROR: i2c_set_bus_speed failed! (turn on PWR_nEN)\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
pmicsetup(0);
|
pmicsetup(0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
const struct dpll_params *get_dpll_ddr_params(void)
|
const struct dpll_params *get_dpll_ddr_params(void)
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
int load_lcdtiming(struct am335x_lcdpanel *panel);
|
int load_lcdtiming(struct am335x_lcdpanel *panel);
|
||||||
void br_summaryscreen(void);
|
void br_summaryscreen(void);
|
||||||
void pmicsetup(u32 mpupll);
|
void pmicsetup(u32 mpupll, unsigned int bus);
|
||||||
void enable_uart0_pin_mux(void);
|
void enable_uart0_pin_mux(void);
|
||||||
void enable_i2c_pin_mux(void);
|
void enable_i2c_pin_mux(void);
|
||||||
void enable_board_pin_mux(void);
|
void enable_board_pin_mux(void);
|
||||||
|
@ -269,13 +269,14 @@ int ft_board_setup(void *blob, bd_t *bd)
|
|||||||
|
|
||||||
static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
|
static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
|
||||||
|
|
||||||
void pmicsetup(u32 mpupll)
|
void pmicsetup(u32 mpupll, unsigned int bus)
|
||||||
{
|
{
|
||||||
int mpu_vdd;
|
int mpu_vdd;
|
||||||
int usb_cur_lim;
|
int usb_cur_lim;
|
||||||
|
|
||||||
if (i2c_probe(TPS65217_CHIP_PM)) {
|
if (power_tps65217_init(bus)) {
|
||||||
puts("PMIC (0x24) not found! skip further initalization.\n");
|
printf("WARN: cannot setup PMIC 0x24 @ bus #%d, not found!.\n",
|
||||||
|
bus);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
17
board/broadcom/bcm963158/Kconfig
Normal file
17
board/broadcom/bcm963158/Kconfig
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
if ARCH_BCM63158
|
||||||
|
|
||||||
|
config SYS_VENDOR
|
||||||
|
default "broadcom"
|
||||||
|
|
||||||
|
config SYS_BOARD
|
||||||
|
default "bcm963158"
|
||||||
|
|
||||||
|
config SYS_CONFIG_NAME
|
||||||
|
default "broadcom_bcm963158"
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
config TARGET_BCM963158
|
||||||
|
bool "Support Broadcom bcm963158"
|
||||||
|
depends on ARCH_BCM63158
|
||||||
|
select ARM64
|
6
board/broadcom/bcm963158/MAINTAINERS
Normal file
6
board/broadcom/bcm963158/MAINTAINERS
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
BROADCOM BCM963158
|
||||||
|
M: Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
|
S: Maintained
|
||||||
|
F: board/broadcom/bcm963158/
|
||||||
|
F: include/configs/broadcom_bcm963158.h
|
||||||
|
F: configs/bcm963158_ram_defconfig
|
3
board/broadcom/bcm963158/Makefile
Normal file
3
board/broadcom/bcm963158/Makefile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0+
|
||||||
|
|
||||||
|
obj-y += bcm963158.o
|
61
board/broadcom/bcm963158/bcm963158.c
Normal file
61
board/broadcom/bcm963158/bcm963158.c
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <fdtdec.h>
|
||||||
|
#include <linux/io.h>
|
||||||
|
|
||||||
|
#ifdef CONFIG_ARM64
|
||||||
|
#include <asm/armv8/mmu.h>
|
||||||
|
|
||||||
|
static struct mm_region broadcom_bcm963158_mem_map[] = {
|
||||||
|
{
|
||||||
|
/* RAM */
|
||||||
|
.virt = 0x00000000UL,
|
||||||
|
.phys = 0x00000000UL,
|
||||||
|
.size = 8UL * SZ_1G,
|
||||||
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
||||||
|
PTE_BLOCK_INNER_SHARE
|
||||||
|
}, {
|
||||||
|
/* SoC */
|
||||||
|
.virt = 0x80000000UL,
|
||||||
|
.phys = 0x80000000UL,
|
||||||
|
.size = 0xff80000000UL,
|
||||||
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
||||||
|
PTE_BLOCK_NON_SHARE |
|
||||||
|
PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
||||||
|
}, {
|
||||||
|
/* List terminator */
|
||||||
|
0,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mm_region *mem_map = broadcom_bcm963158_mem_map;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int board_init(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dram_init(void)
|
||||||
|
{
|
||||||
|
if (fdtdec_setup_mem_size_base() != 0)
|
||||||
|
printf("fdtdec_setup_mem_size_base() has failed\n");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int dram_init_banksize(void)
|
||||||
|
{
|
||||||
|
fdtdec_setup_memory_banksize();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int print_cpuinfo(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
BROADCOM BCM968580XREF
|
BCM968580XREF BOARD
|
||||||
M: Philippe Reynes <philippe.reynes@softathome.com>
|
M: Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: board/broadcom/bcm968580xref/
|
F: board/broadcom/bcm968580xref/
|
||||||
F: include/configs/broadcom_bcm968580xref.h
|
F: include/configs/broadcom_bcm968580xref.h
|
||||||
F: configs/bcm968580_ram_defconfig
|
F: configs/bcm968580xref_ram_defconfig
|
||||||
|
@ -60,6 +60,10 @@ int sata_probe(int devnum)
|
|||||||
printf("Cannot probe SATA device %d (err=%d)\n", devnum, rc);
|
printf("Cannot probe SATA device %d (err=%d)\n", devnum, rc);
|
||||||
return CMD_RET_FAILURE;
|
return CMD_RET_FAILURE;
|
||||||
}
|
}
|
||||||
|
if (!dev) {
|
||||||
|
printf("No SATA device found!\n");
|
||||||
|
return CMD_RET_FAILURE;
|
||||||
|
}
|
||||||
rc = sata_scan(dev);
|
rc = sata_scan(dev);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
printf("Cannot scan SATA device %d (err=%d)\n", devnum, rc);
|
printf("Cannot scan SATA device %d (err=%d)\n", devnum, rc);
|
||||||
|
@ -633,10 +633,7 @@ static int run_main_loop(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Over time we hope to remove these functions with code fragments and
|
* We hope to remove most of the driver-related init and do it if/when
|
||||||
* stub functions, and instead call the relevant function directly.
|
|
||||||
*
|
|
||||||
* We also hope to remove most of the driver-related init and do it if/when
|
|
||||||
* the driver is later used.
|
* the driver is later used.
|
||||||
*
|
*
|
||||||
* TODO: perhaps reset the watchdog in the initcall function after each call?
|
* TODO: perhaps reset the watchdog in the initcall function after each call?
|
||||||
|
@ -268,6 +268,7 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch,
|
|||||||
ulong load, load_end;
|
ulong load, load_end;
|
||||||
ulong image_start, image_data, image_end;
|
ulong image_start, image_data, image_end;
|
||||||
#endif
|
#endif
|
||||||
|
ulong img_addr;
|
||||||
ulong fdt_addr;
|
ulong fdt_addr;
|
||||||
char *fdt_blob = NULL;
|
char *fdt_blob = NULL;
|
||||||
void *buf;
|
void *buf;
|
||||||
@ -283,6 +284,9 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch,
|
|||||||
*of_flat_tree = NULL;
|
*of_flat_tree = NULL;
|
||||||
*of_size = 0;
|
*of_size = 0;
|
||||||
|
|
||||||
|
img_addr = simple_strtoul(argv[0], NULL, 16);
|
||||||
|
buf = map_sysmem(img_addr, 0);
|
||||||
|
|
||||||
if (argc > 2)
|
if (argc > 2)
|
||||||
select = argv[2];
|
select = argv[2];
|
||||||
if (select || genimg_has_config(images)) {
|
if (select || genimg_has_config(images)) {
|
||||||
@ -453,6 +457,23 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch,
|
|||||||
debug("## No Flattened Device Tree\n");
|
debug("## No Flattened Device Tree\n");
|
||||||
goto no_fdt;
|
goto no_fdt;
|
||||||
}
|
}
|
||||||
|
#ifdef CONFIG_ANDROID_BOOT_IMAGE
|
||||||
|
} else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
|
||||||
|
struct andr_img_hdr *hdr = buf;
|
||||||
|
ulong fdt_data, fdt_len;
|
||||||
|
|
||||||
|
if (android_image_get_second(hdr, &fdt_data, &fdt_len) != 0)
|
||||||
|
goto no_fdt;
|
||||||
|
|
||||||
|
fdt_blob = (char *)fdt_data;
|
||||||
|
if (fdt_check_header(fdt_blob) != 0)
|
||||||
|
goto no_fdt;
|
||||||
|
|
||||||
|
if (fdt_totalsize(fdt_blob) != fdt_len)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
debug("## Using FDT found in Android image second area\n");
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
debug("## No Flattened Device Tree\n");
|
debug("## No Flattened Device Tree\n");
|
||||||
goto no_fdt;
|
goto no_fdt;
|
||||||
|
@ -32,6 +32,7 @@ CONFIG_SPL_DMA_SUPPORT=y
|
|||||||
CONFIG_SPL_SPI_LOAD=y
|
CONFIG_SPL_SPI_LOAD=y
|
||||||
# CONFIG_CMD_FLASH is not set
|
# CONFIG_CMD_FLASH is not set
|
||||||
# CONFIG_CMD_SETEXPR is not set
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
|
# CONFIG_CMD_PMIC is not set
|
||||||
CONFIG_OF_CONTROL=y
|
CONFIG_OF_CONTROL=y
|
||||||
CONFIG_SPL_OF_CONTROL=y
|
CONFIG_SPL_OF_CONTROL=y
|
||||||
CONFIG_DEFAULT_DEVICE_TREE="am57xx-beagle-x15"
|
CONFIG_DEFAULT_DEVICE_TREE="am57xx-beagle-x15"
|
||||||
|
98
configs/am57xx_hs_evm_usb_defconfig
Normal file
98
configs/am57xx_hs_evm_usb_defconfig
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_OMAP2PLUS=y
|
||||||
|
CONFIG_TI_SECURE_DEVICE=y
|
||||||
|
CONFIG_TI_COMMON_CMD_OPTIONS=y
|
||||||
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||||
|
CONFIG_OMAP54XX=y
|
||||||
|
CONFIG_TI_SECURE_EMIF_REGION_START=0xbdb00000
|
||||||
|
CONFIG_TI_SECURE_EMIF_TOTAL_REGION_SIZE=0x02000000
|
||||||
|
CONFIG_TI_SECURE_EMIF_PROTECTED_REGION_SIZE=0x01c00000
|
||||||
|
CONFIG_ISW_ENTRY_ADDR=0x40306d50
|
||||||
|
CONFIG_TARGET_AM57XX_EVM=y
|
||||||
|
CONFIG_SPL=y
|
||||||
|
CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI_SUPPORT=y
|
||||||
|
CONFIG_ARMV7_LPAE=y
|
||||||
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
|
CONFIG_NR_DRAM_BANKS=2
|
||||||
|
CONFIG_FIT_IMAGE_POST_PROCESS=y
|
||||||
|
CONFIG_SPL_LOAD_FIT=y
|
||||||
|
CONFIG_SPL_FIT_IMAGE_POST_PROCESS=y
|
||||||
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
CONFIG_USE_BOOTARGS=y
|
||||||
|
CONFIG_BOOTARGS="androidboot.serialno=${serial#} console=ttyS2,115200 androidboot.console=ttyS2 androidboot.hardware=beagle_x15board"
|
||||||
|
# CONFIG_USE_BOOTCOMMAND is not set
|
||||||
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
||||||
|
# CONFIG_MISC_INIT_R is not set
|
||||||
|
CONFIG_VERSION_VARIABLE=y
|
||||||
|
CONFIG_BOARD_EARLY_INIT_F=y
|
||||||
|
CONFIG_SPL_SYS_MALLOC_SIMPLE=y
|
||||||
|
CONFIG_SPL_SEPARATE_BSS=y
|
||||||
|
CONFIG_SPL_DMA_SUPPORT=y
|
||||||
|
# CONFIG_SPL_NAND_SUPPORT is not set
|
||||||
|
CONFIG_SPL_RAM_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI_LOAD=y
|
||||||
|
CONFIG_SPL_USB_GADGET=y
|
||||||
|
CONFIG_SPL_DFU=y
|
||||||
|
CONFIG_SPL_YMODEM_SUPPORT=y
|
||||||
|
# CONFIG_CMD_FLASH is not set
|
||||||
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
|
# CONFIG_CMD_PMIC is not set
|
||||||
|
CONFIG_OF_CONTROL=y
|
||||||
|
CONFIG_SPL_OF_CONTROL=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="am57xx-beagle-x15"
|
||||||
|
CONFIG_OF_LIST="am57xx-beagle-x15 am57xx-beagle-x15-revb1 am57xx-beagle-x15-revc am572x-idk am571x-idk am574x-idk"
|
||||||
|
CONFIG_ENV_IS_IN_MMC=y
|
||||||
|
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
||||||
|
CONFIG_DM=y
|
||||||
|
CONFIG_SPL_DM=y
|
||||||
|
CONFIG_SPL_DM_SEQ_ALIAS=y
|
||||||
|
CONFIG_SCSI_AHCI=y
|
||||||
|
# CONFIG_BLK is not set
|
||||||
|
CONFIG_DFU_MMC=y
|
||||||
|
CONFIG_DFU_RAM=y
|
||||||
|
CONFIG_USB_FUNCTION_FASTBOOT=y
|
||||||
|
CONFIG_FASTBOOT_BUF_ADDR=0x82000000
|
||||||
|
CONFIG_FASTBOOT_BUF_SIZE=0x2F000000
|
||||||
|
CONFIG_FASTBOOT_USB_DEV=1
|
||||||
|
CONFIG_FASTBOOT_FLASH=y
|
||||||
|
CONFIG_FASTBOOT_FLASH_MMC_DEV=1
|
||||||
|
CONFIG_FASTBOOT_CMD_OEM_FORMAT=y
|
||||||
|
CONFIG_DM_GPIO=y
|
||||||
|
CONFIG_DM_I2C=y
|
||||||
|
CONFIG_MISC=y
|
||||||
|
CONFIG_DM_MMC=y
|
||||||
|
CONFIG_MMC_OMAP_HS=y
|
||||||
|
CONFIG_DM_SPI_FLASH=y
|
||||||
|
CONFIG_SPI_FLASH=y
|
||||||
|
CONFIG_SPI_FLASH_BAR=y
|
||||||
|
CONFIG_SPI_FLASH_SPANSION=y
|
||||||
|
CONFIG_PHY_MICREL=y
|
||||||
|
CONFIG_PHY_MICREL_KSZ90X1=y
|
||||||
|
CONFIG_DM_ETH=y
|
||||||
|
CONFIG_MII=y
|
||||||
|
CONFIG_DRIVER_TI_CPSW=y
|
||||||
|
CONFIG_PHY=y
|
||||||
|
CONFIG_PIPE3_PHY=y
|
||||||
|
CONFIG_OMAP_USB2_PHY=y
|
||||||
|
CONFIG_DM_PMIC=y
|
||||||
|
CONFIG_PMIC_PALMAS=y
|
||||||
|
CONFIG_DM_REGULATOR=y
|
||||||
|
CONFIG_DM_REGULATOR_PALMAS=y
|
||||||
|
CONFIG_DM_SERIAL=y
|
||||||
|
CONFIG_SPI=y
|
||||||
|
CONFIG_DM_SPI=y
|
||||||
|
CONFIG_TI_QSPI=y
|
||||||
|
CONFIG_USB=y
|
||||||
|
CONFIG_DM_USB=y
|
||||||
|
CONFIG_DM_USB_GADGET=y
|
||||||
|
CONFIG_SPL_DM_USB_GADGET=y
|
||||||
|
CONFIG_USB_XHCI_HCD=y
|
||||||
|
CONFIG_USB_XHCI_DWC3=y
|
||||||
|
CONFIG_USB_DWC3=y
|
||||||
|
CONFIG_USB_DWC3_GADGET=y
|
||||||
|
CONFIG_USB_DWC3_GENERIC=y
|
||||||
|
CONFIG_USB_GADGET=y
|
||||||
|
CONFIG_USB_GADGET_MANUFACTURER="Texas Instruments"
|
||||||
|
CONFIG_USB_GADGET_VENDOR_NUM=0x0451
|
||||||
|
CONFIG_USB_GADGET_PRODUCT_NUM=0xd022
|
@ -33,6 +33,7 @@ CONFIG_HUSH_PARSER=y
|
|||||||
CONFIG_CMD_BOOTZ=y
|
CONFIG_CMD_BOOTZ=y
|
||||||
CONFIG_CMD_ASKENV=y
|
CONFIG_CMD_ASKENV=y
|
||||||
# CONFIG_CMD_FLASH is not set
|
# CONFIG_CMD_FLASH is not set
|
||||||
|
CONFIG_CMD_GPT=y
|
||||||
CONFIG_CMD_MMC=y
|
CONFIG_CMD_MMC=y
|
||||||
CONFIG_CMD_REMOTEPROC=y
|
CONFIG_CMD_REMOTEPROC=y
|
||||||
# CONFIG_CMD_SETEXPR is not set
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
|
42
configs/bcm963158_ram_defconfig
Normal file
42
configs/bcm963158_ram_defconfig
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
CONFIG_ARM=y
|
||||||
|
# CONFIG_ARM64_SUPPORT_AARCH32 is not set
|
||||||
|
CONFIG_ARCH_BCM63158=y
|
||||||
|
CONFIG_SYS_TEXT_BASE=0x10000000
|
||||||
|
CONFIG_SYS_MALLOC_F_LEN=0x8000
|
||||||
|
CONFIG_SPL_SYS_MALLOC_F_LEN=0x400
|
||||||
|
CONFIG_TARGET_BCM963158=y
|
||||||
|
CONFIG_ENV_VARS_UBOOT_CONFIG=y
|
||||||
|
CONFIG_NR_DRAM_BANKS=1
|
||||||
|
CONFIG_TPL_SYS_MALLOC_F_LEN=0x400
|
||||||
|
CONFIG_FIT=y
|
||||||
|
CONFIG_FIT_SIGNATURE=y
|
||||||
|
CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT=y
|
||||||
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
CONFIG_IMAGE_FORMAT_LEGACY=y
|
||||||
|
CONFIG_SUPPORT_RAW_INITRD=y
|
||||||
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
|
CONFIG_HUSH_PARSER=y
|
||||||
|
CONFIG_CMD_BOOTEFI_SELFTEST=y
|
||||||
|
# CONFIG_CMD_LZMADEC is not set
|
||||||
|
# CONFIG_CMD_UNZIP is not set
|
||||||
|
# CONFIG_CMD_FLASH is not set
|
||||||
|
CONFIG_CMD_CACHE=y
|
||||||
|
CONFIG_DOS_PARTITION=y
|
||||||
|
CONFIG_ISO_PARTITION=y
|
||||||
|
CONFIG_EFI_PARTITION=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="bcm963158"
|
||||||
|
# CONFIG_NET is not set
|
||||||
|
CONFIG_BLK=y
|
||||||
|
CONFIG_CLK=y
|
||||||
|
# CONFIG_MMC is not set
|
||||||
|
CONFIG_SPECIFY_CONSOLE_INDEX=y
|
||||||
|
# CONFIG_SPL_SERIAL_PRESENT is not set
|
||||||
|
CONFIG_CONS_INDEX=0
|
||||||
|
CONFIG_DM_SERIAL=y
|
||||||
|
CONFIG_SERIAL_SEARCH_ALL=y
|
||||||
|
CONFIG_PL01X_SERIAL=y
|
||||||
|
CONFIG_SYSRESET=y
|
||||||
|
CONFIG_SYSRESET_WATCHDOG=y
|
||||||
|
CONFIG_WDT_BCM6345=y
|
||||||
|
CONFIG_REGEX=y
|
||||||
|
# CONFIG_GENERATE_SMBIOS_TABLE is not set
|
@ -44,4 +44,6 @@ CONFIG_RESET_BCM6345=y
|
|||||||
# CONFIG_SPL_SERIAL_PRESENT is not set
|
# CONFIG_SPL_SERIAL_PRESENT is not set
|
||||||
CONFIG_DM_SERIAL=y
|
CONFIG_DM_SERIAL=y
|
||||||
CONFIG_BCM6345_SERIAL=y
|
CONFIG_BCM6345_SERIAL=y
|
||||||
|
CONFIG_SYSRESET_WATCHDOG=y
|
||||||
|
CONFIG_WDT_BCM6345=y
|
||||||
CONFIG_LZO=y
|
CONFIG_LZO=y
|
||||||
|
@ -18,7 +18,6 @@ CONFIG_CMD_BOOTEFI_SELFTEST=y
|
|||||||
CONFIG_DOS_PARTITION=y
|
CONFIG_DOS_PARTITION=y
|
||||||
CONFIG_ISO_PARTITION=y
|
CONFIG_ISO_PARTITION=y
|
||||||
CONFIG_EFI_PARTITION=y
|
CONFIG_EFI_PARTITION=y
|
||||||
CONFIG_OF_EMBED=y
|
|
||||||
CONFIG_DEFAULT_DEVICE_TREE="bcm968580xref"
|
CONFIG_DEFAULT_DEVICE_TREE="bcm968580xref"
|
||||||
# CONFIG_NET is not set
|
# CONFIG_NET is not set
|
||||||
CONFIG_BLK=y
|
CONFIG_BLK=y
|
||||||
@ -31,5 +30,7 @@ CONFIG_DM_SERIAL=y
|
|||||||
CONFIG_SERIAL_SEARCH_ALL=y
|
CONFIG_SERIAL_SEARCH_ALL=y
|
||||||
CONFIG_BCM6345_SERIAL=y
|
CONFIG_BCM6345_SERIAL=y
|
||||||
CONFIG_SYSRESET=y
|
CONFIG_SYSRESET=y
|
||||||
|
CONFIG_SYSRESET_WATCHDOG=y
|
||||||
|
CONFIG_WDT_BCM6345=y
|
||||||
CONFIG_REGEX=y
|
CONFIG_REGEX=y
|
||||||
# CONFIG_GENERATE_SMBIOS_TABLE is not set
|
# CONFIG_GENERATE_SMBIOS_TABLE is not set
|
@ -71,7 +71,6 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
|
|||||||
CONFIG_BOOTCOUNT_LIMIT=y
|
CONFIG_BOOTCOUNT_LIMIT=y
|
||||||
CONFIG_DM_GPIO=y
|
CONFIG_DM_GPIO=y
|
||||||
CONFIG_DM_I2C=y
|
CONFIG_DM_I2C=y
|
||||||
CONFIG_DM_I2C_COMPAT=y
|
|
||||||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
||||||
CONFIG_MISC=y
|
CONFIG_MISC=y
|
||||||
CONFIG_DM_MMC=y
|
CONFIG_DM_MMC=y
|
||||||
|
@ -73,7 +73,6 @@ CONFIG_BLK=y
|
|||||||
CONFIG_BOOTCOUNT_LIMIT=y
|
CONFIG_BOOTCOUNT_LIMIT=y
|
||||||
CONFIG_DM_GPIO=y
|
CONFIG_DM_GPIO=y
|
||||||
CONFIG_DM_I2C=y
|
CONFIG_DM_I2C=y
|
||||||
CONFIG_DM_I2C_COMPAT=y
|
|
||||||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
||||||
CONFIG_MISC=y
|
CONFIG_MISC=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -76,7 +76,6 @@ CONFIG_SPL_DM_SEQ_ALIAS=y
|
|||||||
CONFIG_BOOTCOUNT_LIMIT=y
|
CONFIG_BOOTCOUNT_LIMIT=y
|
||||||
CONFIG_DM_GPIO=y
|
CONFIG_DM_GPIO=y
|
||||||
CONFIG_DM_I2C=y
|
CONFIG_DM_I2C=y
|
||||||
CONFIG_DM_I2C_COMPAT=y
|
|
||||||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y
|
||||||
CONFIG_MISC=y
|
CONFIG_MISC=y
|
||||||
CONFIG_DM_MMC=y
|
CONFIG_DM_MMC=y
|
||||||
|
@ -2,7 +2,7 @@ CONFIG_ARM=y
|
|||||||
CONFIG_ARCH_OMAP2PLUS=y
|
CONFIG_ARCH_OMAP2PLUS=y
|
||||||
CONFIG_TI_SECURE_DEVICE=y
|
CONFIG_TI_SECURE_DEVICE=y
|
||||||
CONFIG_TI_COMMON_CMD_OPTIONS=y
|
CONFIG_TI_COMMON_CMD_OPTIONS=y
|
||||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
CONFIG_SYS_MALLOC_F_LEN=0x18000
|
||||||
CONFIG_OMAP54XX=y
|
CONFIG_OMAP54XX=y
|
||||||
CONFIG_TI_SECURE_EMIF_REGION_START=0xbdb00000
|
CONFIG_TI_SECURE_EMIF_REGION_START=0xbdb00000
|
||||||
CONFIG_TI_SECURE_EMIF_TOTAL_REGION_SIZE=0x02000000
|
CONFIG_TI_SECURE_EMIF_TOTAL_REGION_SIZE=0x02000000
|
||||||
@ -37,13 +37,18 @@ CONFIG_OF_CONTROL=y
|
|||||||
CONFIG_SPL_OF_CONTROL=y
|
CONFIG_SPL_OF_CONTROL=y
|
||||||
CONFIG_DEFAULT_DEVICE_TREE="dra7-evm"
|
CONFIG_DEFAULT_DEVICE_TREE="dra7-evm"
|
||||||
CONFIG_OF_LIST="dra7-evm dra72-evm dra72-evm-revc dra71-evm dra76-evm"
|
CONFIG_OF_LIST="dra7-evm dra72-evm dra72-evm-revc dra71-evm dra76-evm"
|
||||||
|
CONFIG_SPL_MULTI_DTB_FIT=y
|
||||||
|
CONFIG_SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ=0x9000
|
||||||
|
CONFIG_OF_SPL_REMOVE_PROPS="clocks clock-names interrupt-parent"
|
||||||
CONFIG_ENV_IS_IN_MMC=y
|
CONFIG_ENV_IS_IN_MMC=y
|
||||||
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
||||||
CONFIG_DM=y
|
CONFIG_DM=y
|
||||||
CONFIG_SPL_DM=y
|
CONFIG_SPL_DM=y
|
||||||
|
CONFIG_SPL_DM_DEVICE_REMOVE=y
|
||||||
CONFIG_SPL_DM_SEQ_ALIAS=y
|
CONFIG_SPL_DM_SEQ_ALIAS=y
|
||||||
CONFIG_SPL_REGMAP=y
|
CONFIG_SPL_REGMAP=y
|
||||||
CONFIG_SPL_SYSCON=y
|
CONFIG_SPL_SYSCON=y
|
||||||
|
CONFIG_SPL_OF_TRANSLATE=y
|
||||||
CONFIG_DWC_AHCI=y
|
CONFIG_DWC_AHCI=y
|
||||||
CONFIG_DFU_MMC=y
|
CONFIG_DFU_MMC=y
|
||||||
CONFIG_DFU_RAM=y
|
CONFIG_DFU_RAM=y
|
||||||
@ -62,6 +67,7 @@ CONFIG_DM_MMC=y
|
|||||||
CONFIG_MMC_IO_VOLTAGE=y
|
CONFIG_MMC_IO_VOLTAGE=y
|
||||||
CONFIG_MMC_UHS_SUPPORT=y
|
CONFIG_MMC_UHS_SUPPORT=y
|
||||||
CONFIG_MMC_HS200_SUPPORT=y
|
CONFIG_MMC_HS200_SUPPORT=y
|
||||||
|
CONFIG_SPL_MMC_HS200_SUPPORT=y
|
||||||
CONFIG_MMC_OMAP_HS=y
|
CONFIG_MMC_OMAP_HS=y
|
||||||
CONFIG_DM_SPI_FLASH=y
|
CONFIG_DM_SPI_FLASH=y
|
||||||
CONFIG_SPI_FLASH=y
|
CONFIG_SPI_FLASH=y
|
||||||
|
113
configs/dra7xx_hs_evm_usb_defconfig
Normal file
113
configs/dra7xx_hs_evm_usb_defconfig
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_OMAP2PLUS=y
|
||||||
|
CONFIG_TI_SECURE_DEVICE=y
|
||||||
|
CONFIG_TI_COMMON_CMD_OPTIONS=y
|
||||||
|
CONFIG_SYS_MALLOC_F_LEN=0x18000
|
||||||
|
CONFIG_OMAP54XX=y
|
||||||
|
CONFIG_TI_SECURE_EMIF_REGION_START=0xbdb00000
|
||||||
|
CONFIG_TI_SECURE_EMIF_TOTAL_REGION_SIZE=0x02000000
|
||||||
|
CONFIG_TI_SECURE_EMIF_PROTECTED_REGION_SIZE=0x01c00000
|
||||||
|
CONFIG_ISW_ENTRY_ADDR=0x40306d50
|
||||||
|
CONFIG_TARGET_DRA7XX_EVM=y
|
||||||
|
CONFIG_SPL=y
|
||||||
|
CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI_SUPPORT=y
|
||||||
|
CONFIG_ARMV7_LPAE=y
|
||||||
|
CONFIG_AHCI=y
|
||||||
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
|
CONFIG_NR_DRAM_BANKS=2
|
||||||
|
CONFIG_FIT_IMAGE_POST_PROCESS=y
|
||||||
|
CONFIG_SPL_LOAD_FIT=y
|
||||||
|
CONFIG_SPL_FIT_IMAGE_POST_PROCESS=y
|
||||||
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
CONFIG_USE_BOOTARGS=y
|
||||||
|
CONFIG_BOOTARGS="androidboot.serialno=${serial#} console=ttyS0,115200 androidboot.console=ttyS0 androidboot.hardware=jacinto6evmboard"
|
||||||
|
# CONFIG_USE_BOOTCOMMAND is not set
|
||||||
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
||||||
|
# CONFIG_MISC_INIT_R is not set
|
||||||
|
CONFIG_VERSION_VARIABLE=y
|
||||||
|
CONFIG_BOARD_EARLY_INIT_F=y
|
||||||
|
CONFIG_SPL_SYS_MALLOC_SIMPLE=y
|
||||||
|
CONFIG_SPL_SEPARATE_BSS=y
|
||||||
|
CONFIG_SPL_DMA_SUPPORT=y
|
||||||
|
# CONFIG_SPL_NAND_SUPPORT is not set
|
||||||
|
CONFIG_SPL_RAM_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI_LOAD=y
|
||||||
|
CONFIG_SPL_USB_GADGET=y
|
||||||
|
CONFIG_SPL_DFU=y
|
||||||
|
CONFIG_SPL_YMODEM_SUPPORT=y
|
||||||
|
# CONFIG_CMD_FLASH is not set
|
||||||
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
|
CONFIG_OF_CONTROL=y
|
||||||
|
CONFIG_SPL_OF_CONTROL=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="dra7-evm"
|
||||||
|
CONFIG_OF_LIST="dra7-evm dra72-evm dra72-evm-revc dra71-evm dra76-evm"
|
||||||
|
CONFIG_SPL_MULTI_DTB_FIT=y
|
||||||
|
CONFIG_SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ=0x9000
|
||||||
|
CONFIG_OF_SPL_REMOVE_PROPS="clocks clock-names interrupt-parent"
|
||||||
|
CONFIG_ENV_IS_IN_MMC=y
|
||||||
|
CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
|
||||||
|
CONFIG_DM=y
|
||||||
|
CONFIG_SPL_DM=y
|
||||||
|
CONFIG_SPL_DM_DEVICE_REMOVE=y
|
||||||
|
CONFIG_SPL_DM_SEQ_ALIAS=y
|
||||||
|
CONFIG_SPL_REGMAP=y
|
||||||
|
CONFIG_SPL_SYSCON=y
|
||||||
|
CONFIG_SPL_OF_TRANSLATE=y
|
||||||
|
CONFIG_DWC_AHCI=y
|
||||||
|
CONFIG_DFU_MMC=y
|
||||||
|
CONFIG_DFU_RAM=y
|
||||||
|
CONFIG_DFU_SF=y
|
||||||
|
CONFIG_USB_FUNCTION_FASTBOOT=y
|
||||||
|
CONFIG_FASTBOOT_BUF_ADDR=0x82000000
|
||||||
|
CONFIG_FASTBOOT_BUF_SIZE=0x2F000000
|
||||||
|
CONFIG_FASTBOOT_FLASH=y
|
||||||
|
CONFIG_FASTBOOT_FLASH_MMC_DEV=1
|
||||||
|
CONFIG_FASTBOOT_CMD_OEM_FORMAT=y
|
||||||
|
CONFIG_DM_GPIO=y
|
||||||
|
CONFIG_PCF8575_GPIO=y
|
||||||
|
CONFIG_DM_I2C=y
|
||||||
|
CONFIG_MISC=y
|
||||||
|
CONFIG_DM_MMC=y
|
||||||
|
CONFIG_MMC_IO_VOLTAGE=y
|
||||||
|
CONFIG_MMC_UHS_SUPPORT=y
|
||||||
|
CONFIG_MMC_HS200_SUPPORT=y
|
||||||
|
CONFIG_SPL_MMC_HS200_SUPPORT=y
|
||||||
|
CONFIG_MMC_OMAP_HS=y
|
||||||
|
CONFIG_DM_SPI_FLASH=y
|
||||||
|
CONFIG_SPI_FLASH=y
|
||||||
|
CONFIG_SPI_FLASH_BAR=y
|
||||||
|
CONFIG_SPI_FLASH_SPANSION=y
|
||||||
|
CONFIG_DM_ETH=y
|
||||||
|
CONFIG_PHY_GIGE=y
|
||||||
|
CONFIG_MII=y
|
||||||
|
CONFIG_DRIVER_TI_CPSW=y
|
||||||
|
CONFIG_SPL_PHY=y
|
||||||
|
CONFIG_PIPE3_PHY=y
|
||||||
|
CONFIG_OMAP_USB2_PHY=y
|
||||||
|
CONFIG_PMIC_PALMAS=y
|
||||||
|
CONFIG_PMIC_LP873X=y
|
||||||
|
CONFIG_DM_REGULATOR_FIXED=y
|
||||||
|
CONFIG_DM_REGULATOR_GPIO=y
|
||||||
|
CONFIG_DM_REGULATOR_PALMAS=y
|
||||||
|
CONFIG_DM_REGULATOR_LP873X=y
|
||||||
|
CONFIG_DM_SCSI=y
|
||||||
|
CONFIG_DM_SERIAL=y
|
||||||
|
CONFIG_SPI=y
|
||||||
|
CONFIG_DM_SPI=y
|
||||||
|
CONFIG_TI_QSPI=y
|
||||||
|
CONFIG_TIMER=y
|
||||||
|
CONFIG_OMAP_TIMER=y
|
||||||
|
CONFIG_USB=y
|
||||||
|
CONFIG_DM_USB=y
|
||||||
|
CONFIG_DM_USB_GADGET=y
|
||||||
|
CONFIG_SPL_DM_USB_GADGET=y
|
||||||
|
CONFIG_USB_XHCI_HCD=y
|
||||||
|
CONFIG_USB_XHCI_DWC3=y
|
||||||
|
CONFIG_USB_DWC3=y
|
||||||
|
CONFIG_USB_DWC3_GADGET=y
|
||||||
|
CONFIG_USB_DWC3_GENERIC=y
|
||||||
|
CONFIG_USB_GADGET=y
|
||||||
|
CONFIG_USB_GADGET_MANUFACTURER="Texas Instruments"
|
||||||
|
CONFIG_USB_GADGET_VENDOR_NUM=0x0451
|
||||||
|
CONFIG_USB_GADGET_PRODUCT_NUM=0xd022
|
@ -19,6 +19,7 @@ CONFIG_SYS_PROMPT="STM32MP> "
|
|||||||
# CONFIG_CMD_IMPORTENV is not set
|
# CONFIG_CMD_IMPORTENV is not set
|
||||||
CONFIG_CMD_MEMINFO=y
|
CONFIG_CMD_MEMINFO=y
|
||||||
CONFIG_CMD_ADC=y
|
CONFIG_CMD_ADC=y
|
||||||
|
CONFIG_CMD_CLK=y
|
||||||
CONFIG_CMD_FUSE=y
|
CONFIG_CMD_FUSE=y
|
||||||
CONFIG_CMD_GPIO=y
|
CONFIG_CMD_GPIO=y
|
||||||
CONFIG_CMD_GPT=y
|
CONFIG_CMD_GPT=y
|
||||||
|
@ -108,7 +108,8 @@ Booting of U-Boot SPL
|
|||||||
Invoking the script for DRA7xx/AM57xx Secure Devices
|
Invoking the script for DRA7xx/AM57xx Secure Devices
|
||||||
====================================================
|
====================================================
|
||||||
|
|
||||||
create-boot-image.sh <IMAGE_TYPE> <INPUT_FILE> <OUTPUT_FILE>
|
create-boot-image.sh \
|
||||||
|
<IMAGE_TYPE> <INPUT_FILE> <OUTPUT_FILE> <SPL_LOAD_ADDR>
|
||||||
|
|
||||||
<IMAGE_TYPE> is a value that specifies the type of the image to
|
<IMAGE_TYPE> is a value that specifies the type of the image to
|
||||||
generate OR the action the image generation tool will take. Valid
|
generate OR the action the image generation tool will take. Valid
|
||||||
@ -116,7 +117,6 @@ Booting of U-Boot SPL
|
|||||||
X-LOADER - Generates an image for NOR or QSPI boot modes
|
X-LOADER - Generates an image for NOR or QSPI boot modes
|
||||||
MLO - Generates an image for SD/MMC/eMMC boot modes
|
MLO - Generates an image for SD/MMC/eMMC boot modes
|
||||||
ULO - Generates an image for USB/UART peripheral boot modes
|
ULO - Generates an image for USB/UART peripheral boot modes
|
||||||
Note: ULO is not yet used by the u-boot build process
|
|
||||||
|
|
||||||
<INPUT_FILE> is the full path and filename of the public world boot
|
<INPUT_FILE> is the full path and filename of the public world boot
|
||||||
loader binary file (for this platform, this is always u-boot-spl.bin).
|
loader binary file (for this platform, this is always u-boot-spl.bin).
|
||||||
@ -130,9 +130,13 @@ Booting of U-Boot SPL
|
|||||||
the device ROM bootloader requires for loading from
|
the device ROM bootloader requires for loading from
|
||||||
the FAT partition of an SD card (same as on
|
the FAT partition of an SD card (same as on
|
||||||
non-secure devices)
|
non-secure devices)
|
||||||
|
u-boot-spl_HS_ULO - boot image for USB/UART peripheral boot modes
|
||||||
u-boot-spl_HS_X-LOADER - boot image for all other flash memories
|
u-boot-spl_HS_X-LOADER - boot image for all other flash memories
|
||||||
including QSPI and NOR flash
|
including QSPI and NOR flash
|
||||||
|
|
||||||
|
<SPL_LOAD_ADDR> is the address at which SOC ROM should load the
|
||||||
|
<INPUT_FILE>
|
||||||
|
|
||||||
Invoking the script for Keystone2 Secure Devices
|
Invoking the script for Keystone2 Secure Devices
|
||||||
=============================================
|
=============================================
|
||||||
|
|
||||||
|
@ -132,15 +132,15 @@ Optional Properties:
|
|||||||
frac = < 0x810 >;
|
frac = < 0x810 >;
|
||||||
};
|
};
|
||||||
st,pll@1 {
|
st,pll@1 {
|
||||||
cfg = < 1 43 1 0 0 PQR(0,1,1)>;
|
cfg = < 1 43 1 0 0 PQR(0,1,1) >;
|
||||||
csg = <10 20 1>;
|
csg = < 10 20 1 >;
|
||||||
};
|
};
|
||||||
st,pll@2 {
|
st,pll@2 {
|
||||||
cfg = < 2 85 3 13 3 0>;
|
cfg = < 2 85 3 13 3 0 >;
|
||||||
csg = <10 20 SSCG_MODE_CENTER_SPREAD>;
|
csg = < 10 20 SSCG_MODE_CENTER_SPREAD >;
|
||||||
};
|
};
|
||||||
st,pll@3 {
|
st,pll@3 {
|
||||||
cfg = < 2 78 4 7 9 3>;
|
cfg = < 2 78 4 7 9 3 >;
|
||||||
};
|
};
|
||||||
st,pkcs = <
|
st,pkcs = <
|
||||||
CLK_STGEN_HSE
|
CLK_STGEN_HSE
|
||||||
|
@ -165,6 +165,7 @@
|
|||||||
/* used for ALL PLLNCR registers */
|
/* used for ALL PLLNCR registers */
|
||||||
#define RCC_PLLNCR_PLLON BIT(0)
|
#define RCC_PLLNCR_PLLON BIT(0)
|
||||||
#define RCC_PLLNCR_PLLRDY BIT(1)
|
#define RCC_PLLNCR_PLLRDY BIT(1)
|
||||||
|
#define RCC_PLLNCR_SSCG_CTRL BIT(2)
|
||||||
#define RCC_PLLNCR_DIVPEN BIT(4)
|
#define RCC_PLLNCR_DIVPEN BIT(4)
|
||||||
#define RCC_PLLNCR_DIVQEN BIT(5)
|
#define RCC_PLLNCR_DIVQEN BIT(5)
|
||||||
#define RCC_PLLNCR_DIVREN BIT(6)
|
#define RCC_PLLNCR_DIVREN BIT(6)
|
||||||
@ -241,7 +242,6 @@ enum stm32mp1_parent_id {
|
|||||||
_LSI,
|
_LSI,
|
||||||
_LSE,
|
_LSE,
|
||||||
_I2S_CKIN,
|
_I2S_CKIN,
|
||||||
_USB_PHY_48,
|
|
||||||
NB_OSC,
|
NB_OSC,
|
||||||
|
|
||||||
/* other parent source */
|
/* other parent source */
|
||||||
@ -273,6 +273,7 @@ enum stm32mp1_parent_id {
|
|||||||
_CK_MPU,
|
_CK_MPU,
|
||||||
_CK_MCU,
|
_CK_MCU,
|
||||||
_DSI_PHY,
|
_DSI_PHY,
|
||||||
|
_USB_PHY_48,
|
||||||
_PARENT_NB,
|
_PARENT_NB,
|
||||||
_UNKNOWN_ID = 0xff,
|
_UNKNOWN_ID = 0xff,
|
||||||
};
|
};
|
||||||
@ -536,6 +537,7 @@ static const struct stm32mp1_clk_gate stm32mp1_clk_gate[] = {
|
|||||||
STM32MP1_CLK_SET_CLR(RCC_MP_AHB2ENSETR, 16, SDMMC3_K, _SDMMC3_SEL),
|
STM32MP1_CLK_SET_CLR(RCC_MP_AHB2ENSETR, 16, SDMMC3_K, _SDMMC3_SEL),
|
||||||
|
|
||||||
STM32MP1_CLK_SET_CLR(RCC_MP_AHB3ENSETR, 11, HSEM, _UNKNOWN_SEL),
|
STM32MP1_CLK_SET_CLR(RCC_MP_AHB3ENSETR, 11, HSEM, _UNKNOWN_SEL),
|
||||||
|
STM32MP1_CLK_SET_CLR(RCC_MP_AHB3ENSETR, 12, IPCC, _UNKNOWN_SEL),
|
||||||
|
|
||||||
STM32MP1_CLK_SET_CLR(RCC_MP_AHB4ENSETR, 0, GPIOA, _UNKNOWN_SEL),
|
STM32MP1_CLK_SET_CLR(RCC_MP_AHB4ENSETR, 0, GPIOA, _UNKNOWN_SEL),
|
||||||
STM32MP1_CLK_SET_CLR(RCC_MP_AHB4ENSETR, 1, GPIOB, _UNKNOWN_SEL),
|
STM32MP1_CLK_SET_CLR(RCC_MP_AHB4ENSETR, 1, GPIOB, _UNKNOWN_SEL),
|
||||||
@ -665,8 +667,8 @@ static const u8 stm32mp1_axi_div[8] = {
|
|||||||
1, 2, 3, 4, 4, 4, 4, 4
|
1, 2, 3, 4, 4, 4, 4, 4
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef DEBUG
|
static const __maybe_unused
|
||||||
static const char * const stm32mp1_clk_parent_name[_PARENT_NB] = {
|
char * const stm32mp1_clk_parent_name[_PARENT_NB] = {
|
||||||
[_HSI] = "HSI",
|
[_HSI] = "HSI",
|
||||||
[_HSE] = "HSE",
|
[_HSE] = "HSE",
|
||||||
[_CSI] = "CSI",
|
[_CSI] = "CSI",
|
||||||
@ -704,7 +706,8 @@ static const char * const stm32mp1_clk_parent_name[_PARENT_NB] = {
|
|||||||
[_DSI_PHY] = "DSI_PHY_PLL",
|
[_DSI_PHY] = "DSI_PHY_PLL",
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char * const stm32mp1_clk_parent_sel_name[_PARENT_SEL_NB] = {
|
static const __maybe_unused
|
||||||
|
char * const stm32mp1_clk_parent_sel_name[_PARENT_SEL_NB] = {
|
||||||
[_I2C12_SEL] = "I2C12",
|
[_I2C12_SEL] = "I2C12",
|
||||||
[_I2C35_SEL] = "I2C35",
|
[_I2C35_SEL] = "I2C35",
|
||||||
[_I2C46_SEL] = "I2C46",
|
[_I2C46_SEL] = "I2C46",
|
||||||
@ -723,7 +726,6 @@ static const char * const stm32mp1_clk_parent_sel_name[_PARENT_SEL_NB] = {
|
|||||||
[_DSI_SEL] = "DSI",
|
[_DSI_SEL] = "DSI",
|
||||||
[_ADC12_SEL] = "ADC12",
|
[_ADC12_SEL] = "ADC12",
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
static const struct stm32mp1_clk_data stm32mp1_data = {
|
static const struct stm32mp1_clk_data stm32mp1_data = {
|
||||||
.gate = stm32mp1_clk_gate,
|
.gate = stm32mp1_clk_gate,
|
||||||
@ -1079,7 +1081,7 @@ static ulong stm32mp1_clk_get(struct stm32mp1_clk_priv *priv, int p)
|
|||||||
break;
|
break;
|
||||||
/* other */
|
/* other */
|
||||||
case _USB_PHY_48:
|
case _USB_PHY_48:
|
||||||
clock = stm32mp1_clk_get_fixed(priv, _USB_PHY_48);
|
clock = 48000000;
|
||||||
break;
|
break;
|
||||||
case _DSI_PHY:
|
case _DSI_PHY:
|
||||||
{
|
{
|
||||||
@ -1179,10 +1181,7 @@ static void stm32mp1_ls_osc_set(int enable, fdt_addr_t rcc, u32 offset,
|
|||||||
|
|
||||||
static void stm32mp1_hs_ocs_set(int enable, fdt_addr_t rcc, u32 mask_on)
|
static void stm32mp1_hs_ocs_set(int enable, fdt_addr_t rcc, u32 mask_on)
|
||||||
{
|
{
|
||||||
if (enable)
|
writel(mask_on, rcc + (enable ? RCC_OCENSETR : RCC_OCENCLRR));
|
||||||
setbits_le32(rcc + RCC_OCENSETR, mask_on);
|
|
||||||
else
|
|
||||||
setbits_le32(rcc + RCC_OCENCLRR, mask_on);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int stm32mp1_osc_wait(int enable, fdt_addr_t rcc, u32 offset,
|
static int stm32mp1_osc_wait(int enable, fdt_addr_t rcc, u32 offset,
|
||||||
@ -1253,20 +1252,20 @@ static void stm32mp1_lsi_set(fdt_addr_t rcc, int enable)
|
|||||||
static void stm32mp1_hse_enable(fdt_addr_t rcc, int bypass, int digbyp, int css)
|
static void stm32mp1_hse_enable(fdt_addr_t rcc, int bypass, int digbyp, int css)
|
||||||
{
|
{
|
||||||
if (digbyp)
|
if (digbyp)
|
||||||
setbits_le32(rcc + RCC_OCENSETR, RCC_OCENR_DIGBYP);
|
writel(RCC_OCENR_DIGBYP, rcc + RCC_OCENSETR);
|
||||||
if (bypass || digbyp)
|
if (bypass || digbyp)
|
||||||
setbits_le32(rcc + RCC_OCENSETR, RCC_OCENR_HSEBYP);
|
writel(RCC_OCENR_HSEBYP, rcc + RCC_OCENSETR);
|
||||||
|
|
||||||
stm32mp1_hs_ocs_set(1, rcc, RCC_OCENR_HSEON);
|
stm32mp1_hs_ocs_set(1, rcc, RCC_OCENR_HSEON);
|
||||||
stm32mp1_osc_wait(1, rcc, RCC_OCRDYR, RCC_OCRDYR_HSERDY);
|
stm32mp1_osc_wait(1, rcc, RCC_OCRDYR, RCC_OCRDYR_HSERDY);
|
||||||
|
|
||||||
if (css)
|
if (css)
|
||||||
setbits_le32(rcc + RCC_OCENSETR, RCC_OCENR_HSECSSON);
|
writel(RCC_OCENR_HSECSSON, rcc + RCC_OCENSETR);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void stm32mp1_csi_set(fdt_addr_t rcc, int enable)
|
static void stm32mp1_csi_set(fdt_addr_t rcc, int enable)
|
||||||
{
|
{
|
||||||
stm32mp1_ls_osc_set(enable, rcc, RCC_OCENSETR, RCC_OCENR_CSION);
|
stm32mp1_hs_ocs_set(enable, rcc, RCC_OCENR_CSION);
|
||||||
stm32mp1_osc_wait(enable, rcc, RCC_OCRDYR, RCC_OCRDYR_CSIRDY);
|
stm32mp1_osc_wait(enable, rcc, RCC_OCRDYR, RCC_OCRDYR_CSIRDY);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1321,7 +1320,10 @@ static void pll_start(struct stm32mp1_clk_priv *priv, int pll_id)
|
|||||||
{
|
{
|
||||||
const struct stm32mp1_clk_pll *pll = priv->data->pll;
|
const struct stm32mp1_clk_pll *pll = priv->data->pll;
|
||||||
|
|
||||||
writel(RCC_PLLNCR_PLLON, priv->base + pll[pll_id].pllxcr);
|
clrsetbits_le32(priv->base + pll[pll_id].pllxcr,
|
||||||
|
RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
|
||||||
|
RCC_PLLNCR_DIVREN,
|
||||||
|
RCC_PLLNCR_PLLON);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pll_output(struct stm32mp1_clk_priv *priv, int pll_id, int output)
|
static int pll_output(struct stm32mp1_clk_priv *priv, int pll_id, int output)
|
||||||
@ -1440,6 +1442,8 @@ static void pll_csg(struct stm32mp1_clk_priv *priv, int pll_id, u32 *csg)
|
|||||||
RCC_PLLNCSGR_SSCG_MODE_MASK);
|
RCC_PLLNCSGR_SSCG_MODE_MASK);
|
||||||
|
|
||||||
writel(pllxcsg, priv->base + pll[pll_id].pllxcsgr);
|
writel(pllxcsg, priv->base + pll[pll_id].pllxcsgr);
|
||||||
|
|
||||||
|
setbits_le32(priv->base + pll[pll_id].pllxcr, RCC_PLLNCR_SSCG_CTRL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int set_clksrc(struct stm32mp1_clk_priv *priv, unsigned int clksrc)
|
static int set_clksrc(struct stm32mp1_clk_priv *priv, unsigned int clksrc)
|
||||||
@ -1471,10 +1475,15 @@ static void stgen_config(struct stm32mp1_clk_priv *priv)
|
|||||||
rate = stm32mp1_clk_get(priv, p);
|
rate = stm32mp1_clk_get(priv, p);
|
||||||
|
|
||||||
if (cntfid0 != rate) {
|
if (cntfid0 != rate) {
|
||||||
|
u64 counter;
|
||||||
|
|
||||||
pr_debug("System Generic Counter (STGEN) update\n");
|
pr_debug("System Generic Counter (STGEN) update\n");
|
||||||
clrbits_le32(stgenc + STGENC_CNTCR, STGENC_CNTCR_EN);
|
clrbits_le32(stgenc + STGENC_CNTCR, STGENC_CNTCR_EN);
|
||||||
writel(0x0, stgenc + STGENC_CNTCVL);
|
counter = (u64)readl(stgenc + STGENC_CNTCVL);
|
||||||
writel(0x0, stgenc + STGENC_CNTCVU);
|
counter |= ((u64)(readl(stgenc + STGENC_CNTCVU))) << 32;
|
||||||
|
counter = lldiv(counter * (u64)rate, cntfid0);
|
||||||
|
writel((u32)counter, stgenc + STGENC_CNTCVL);
|
||||||
|
writel((u32)(counter >> 32), stgenc + STGENC_CNTCVU);
|
||||||
writel(rate, stgenc + STGENC_CNTFID0);
|
writel(rate, stgenc + STGENC_CNTFID0);
|
||||||
setbits_le32(stgenc + STGENC_CNTCR, STGENC_CNTCR_EN);
|
setbits_le32(stgenc + STGENC_CNTCR, STGENC_CNTCR_EN);
|
||||||
|
|
||||||
@ -1859,7 +1868,7 @@ static void stm32mp1_osc_init(struct udevice *dev)
|
|||||||
[_HSE] = "clk-hse",
|
[_HSE] = "clk-hse",
|
||||||
[_CSI] = "clk-csi",
|
[_CSI] = "clk-csi",
|
||||||
[_I2S_CKIN] = "i2s_ckin",
|
[_I2S_CKIN] = "i2s_ckin",
|
||||||
[_USB_PHY_48] = "ck_usbo_48m"};
|
};
|
||||||
|
|
||||||
for (i = 0; i < NB_OSC; i++) {
|
for (i = 0; i < NB_OSC; i++) {
|
||||||
stm32mp1_osc_clk_init(name[i], priv, i);
|
stm32mp1_osc_clk_init(name[i], priv, i);
|
||||||
@ -1867,6 +1876,54 @@ static void stm32mp1_osc_init(struct udevice *dev)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void __maybe_unused stm32mp1_clk_dump(struct stm32mp1_clk_priv *priv)
|
||||||
|
{
|
||||||
|
char buf[32];
|
||||||
|
int i, s, p;
|
||||||
|
|
||||||
|
printf("Clocks:\n");
|
||||||
|
for (i = 0; i < _PARENT_NB; i++) {
|
||||||
|
printf("- %s : %s MHz\n",
|
||||||
|
stm32mp1_clk_parent_name[i],
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, i)));
|
||||||
|
}
|
||||||
|
printf("Source Clocks:\n");
|
||||||
|
for (i = 0; i < _PARENT_SEL_NB; i++) {
|
||||||
|
p = (readl(priv->base + priv->data->sel[i].offset) >>
|
||||||
|
priv->data->sel[i].src) & priv->data->sel[i].msk;
|
||||||
|
if (p < priv->data->sel[i].nb_parent) {
|
||||||
|
s = priv->data->sel[i].parent[p];
|
||||||
|
printf("- %s(%d) => parent %s(%d)\n",
|
||||||
|
stm32mp1_clk_parent_sel_name[i], i,
|
||||||
|
stm32mp1_clk_parent_name[s], s);
|
||||||
|
} else {
|
||||||
|
printf("- %s(%d) => parent index %d is invalid\n",
|
||||||
|
stm32mp1_clk_parent_sel_name[i], i, p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_CLK
|
||||||
|
int soc_clk_dump(void)
|
||||||
|
{
|
||||||
|
struct udevice *dev;
|
||||||
|
struct stm32mp1_clk_priv *priv;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = uclass_get_device_by_driver(UCLASS_CLK,
|
||||||
|
DM_GET_DRIVER(stm32mp1_clock),
|
||||||
|
&dev);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
priv = dev_get_priv(dev);
|
||||||
|
|
||||||
|
stm32mp1_clk_dump(priv);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int stm32mp1_clk_probe(struct udevice *dev)
|
static int stm32mp1_clk_probe(struct udevice *dev)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
@ -1890,6 +1947,33 @@ static int stm32mp1_clk_probe(struct udevice *dev)
|
|||||||
result = stm32mp1_clktree(dev);
|
result = stm32mp1_clktree(dev);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef CONFIG_SPL_BUILD
|
||||||
|
#if defined(DEBUG)
|
||||||
|
/* display debug information for probe after relocation */
|
||||||
|
if (gd->flags & GD_FLG_RELOC)
|
||||||
|
stm32mp1_clk_dump(priv);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
||||||
|
if (gd->flags & GD_FLG_RELOC) {
|
||||||
|
char buf[32];
|
||||||
|
|
||||||
|
printf("Clocks:\n");
|
||||||
|
printf("- MPU : %s MHz\n",
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, _CK_MPU)));
|
||||||
|
printf("- MCU : %s MHz\n",
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, _CK_MCU)));
|
||||||
|
printf("- AXI : %s MHz\n",
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, _ACLK)));
|
||||||
|
printf("- PER : %s MHz\n",
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, _CK_PER)));
|
||||||
|
/* DDRPHYC father */
|
||||||
|
printf("- DDR : %s MHz\n",
|
||||||
|
strmhz(buf, stm32mp1_clk_get(priv, _PLL2_R)));
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_DISPLAY_CPUINFO */
|
||||||
|
#endif
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ int uclass_find_first_device(enum uclass_id id, struct udevice **devp)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
if (list_empty(&uc->dev_head))
|
if (list_empty(&uc->dev_head))
|
||||||
return 0;
|
return -ENODEV;
|
||||||
|
|
||||||
*devp = list_first_entry(&uc->dev_head, struct udevice, uclass_node);
|
*devp = list_first_entry(&uc->dev_head, struct udevice, uclass_node);
|
||||||
|
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <power/regulator.h>
|
#include <power/regulator.h>
|
||||||
|
#include <thermal.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
@ -622,6 +623,10 @@ static int omap_hsmmc_execute_tuning(struct udevice *dev, uint opcode)
|
|||||||
u32 phase_delay = 0;
|
u32 phase_delay = 0;
|
||||||
u32 start_window = 0, max_window = 0;
|
u32 start_window = 0, max_window = 0;
|
||||||
u32 length = 0, max_len = 0;
|
u32 length = 0, max_len = 0;
|
||||||
|
bool single_point_failure = false;
|
||||||
|
struct udevice *thermal_dev;
|
||||||
|
int temperature;
|
||||||
|
int i;
|
||||||
|
|
||||||
mmc_base = priv->base_addr;
|
mmc_base = priv->base_addr;
|
||||||
val = readl(&mmc_base->capa2);
|
val = readl(&mmc_base->capa2);
|
||||||
@ -632,9 +637,25 @@ static int omap_hsmmc_execute_tuning(struct udevice *dev, uint opcode)
|
|||||||
((mmc->selected_mode == UHS_SDR50) && (val & CAPA2_TSDR50))))
|
((mmc->selected_mode == UHS_SDR50) && (val & CAPA2_TSDR50))))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
ret = uclass_first_device(UCLASS_THERMAL, &thermal_dev);
|
||||||
|
if (ret) {
|
||||||
|
printf("Couldn't get thermal device for tuning\n");
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
ret = thermal_get_temp(thermal_dev, &temperature);
|
||||||
|
if (ret) {
|
||||||
|
printf("Couldn't get temperature for tuning\n");
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
val = readl(&mmc_base->dll);
|
val = readl(&mmc_base->dll);
|
||||||
val |= DLL_SWT;
|
val |= DLL_SWT;
|
||||||
writel(val, &mmc_base->dll);
|
writel(val, &mmc_base->dll);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Stage 1: Search for a maximum pass window ignoring any
|
||||||
|
* any single point failures. If the tuning value ends up
|
||||||
|
* near it, move away from it in stage 2 below
|
||||||
|
*/
|
||||||
while (phase_delay <= MAX_PHASE_DELAY) {
|
while (phase_delay <= MAX_PHASE_DELAY) {
|
||||||
omap_hsmmc_set_dll(mmc, phase_delay);
|
omap_hsmmc_set_dll(mmc, phase_delay);
|
||||||
|
|
||||||
@ -643,10 +664,16 @@ static int omap_hsmmc_execute_tuning(struct udevice *dev, uint opcode)
|
|||||||
if (cur_match) {
|
if (cur_match) {
|
||||||
if (prev_match) {
|
if (prev_match) {
|
||||||
length++;
|
length++;
|
||||||
|
} else if (single_point_failure) {
|
||||||
|
/* ignore single point failure */
|
||||||
|
length++;
|
||||||
|
single_point_failure = false;
|
||||||
} else {
|
} else {
|
||||||
start_window = phase_delay;
|
start_window = phase_delay;
|
||||||
length = 1;
|
length = 1;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
single_point_failure = prev_match;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (length > max_len) {
|
if (length > max_len) {
|
||||||
@ -668,8 +695,71 @@ static int omap_hsmmc_execute_tuning(struct udevice *dev, uint opcode)
|
|||||||
ret = -EIO;
|
ret = -EIO;
|
||||||
goto tuning_error;
|
goto tuning_error;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
* Assign tuning value as a ratio of maximum pass window based
|
||||||
|
* on temperature
|
||||||
|
*/
|
||||||
|
if (temperature < -20000)
|
||||||
|
phase_delay = min(max_window + 4 * max_len - 24,
|
||||||
|
max_window +
|
||||||
|
DIV_ROUND_UP(13 * max_len, 16) * 4);
|
||||||
|
else if (temperature < 20000)
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(9 * max_len, 16) * 4;
|
||||||
|
else if (temperature < 40000)
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(8 * max_len, 16) * 4;
|
||||||
|
else if (temperature < 70000)
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(7 * max_len, 16) * 4;
|
||||||
|
else if (temperature < 90000)
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(5 * max_len, 16) * 4;
|
||||||
|
else if (temperature < 120000)
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(4 * max_len, 16) * 4;
|
||||||
|
else
|
||||||
|
phase_delay = max_window + DIV_ROUND_UP(3 * max_len, 16) * 4;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Stage 2: Search for a single point failure near the chosen tuning
|
||||||
|
* value in two steps. First in the +3 to +10 range and then in the
|
||||||
|
* +2 to -10 range. If found, move away from it in the appropriate
|
||||||
|
* direction by the appropriate amount depending on the temperature.
|
||||||
|
*/
|
||||||
|
for (i = 3; i <= 10; i++) {
|
||||||
|
omap_hsmmc_set_dll(mmc, phase_delay + i);
|
||||||
|
if (mmc_send_tuning(mmc, opcode, NULL)) {
|
||||||
|
if (temperature < 10000)
|
||||||
|
phase_delay += i + 6;
|
||||||
|
else if (temperature < 20000)
|
||||||
|
phase_delay += i - 12;
|
||||||
|
else if (temperature < 70000)
|
||||||
|
phase_delay += i - 8;
|
||||||
|
else if (temperature < 90000)
|
||||||
|
phase_delay += i - 6;
|
||||||
|
else
|
||||||
|
phase_delay += i - 6;
|
||||||
|
|
||||||
|
goto single_failure_found;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 2; i >= -10; i--) {
|
||||||
|
omap_hsmmc_set_dll(mmc, phase_delay + i);
|
||||||
|
if (mmc_send_tuning(mmc, opcode, NULL)) {
|
||||||
|
if (temperature < 10000)
|
||||||
|
phase_delay += i + 12;
|
||||||
|
else if (temperature < 20000)
|
||||||
|
phase_delay += i + 8;
|
||||||
|
else if (temperature < 70000)
|
||||||
|
phase_delay += i + 8;
|
||||||
|
else if (temperature < 90000)
|
||||||
|
phase_delay += i + 10;
|
||||||
|
else
|
||||||
|
phase_delay += i + 12;
|
||||||
|
|
||||||
|
goto single_failure_found;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
single_failure_found:
|
||||||
|
|
||||||
phase_delay = max_window + 4 * ((3 * max_len) >> 2);
|
|
||||||
omap_hsmmc_set_dll(mmc, phase_delay);
|
omap_hsmmc_set_dll(mmc, phase_delay);
|
||||||
|
|
||||||
mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
|
mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
|
||||||
|
@ -363,9 +363,7 @@ U_BOOT_DRIVER(serial_pl01x) = {
|
|||||||
.platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
|
.platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
|
||||||
.probe = pl01x_serial_probe,
|
.probe = pl01x_serial_probe,
|
||||||
.ops = &pl01x_serial_ops,
|
.ops = &pl01x_serial_ops,
|
||||||
#if !CONFIG_IS_ENABLED(OF_CONTROL)
|
|
||||||
.flags = DM_FLAG_PRE_RELOC,
|
.flags = DM_FLAG_PRE_RELOC,
|
||||||
#endif
|
|
||||||
.priv_auto_alloc_size = sizeof(struct pl01x_priv),
|
.priv_auto_alloc_size = sizeof(struct pl01x_priv),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ config WDT_ASPEED
|
|||||||
|
|
||||||
config WDT_BCM6345
|
config WDT_BCM6345
|
||||||
bool "BCM6345 watchdog timer support"
|
bool "BCM6345 watchdog timer support"
|
||||||
depends on WDT && ARCH_BMIPS
|
depends on WDT && (ARCH_BMIPS || ARCH_BCM6858 || ARCH_BCM63158)
|
||||||
help
|
help
|
||||||
Select this to enable watchdog timer for BCM6345 SoCs.
|
Select this to enable watchdog timer for BCM6345 SoCs.
|
||||||
The watchdog timer is stopped when initialized.
|
The watchdog timer is stopped when initialized.
|
||||||
|
@ -32,8 +32,8 @@ static int bcm6345_wdt_reset(struct udevice *dev)
|
|||||||
{
|
{
|
||||||
struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
|
struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
|
||||||
|
|
||||||
writel_be(WDT_CTL_START1_MASK, priv->regs + WDT_CTL_REG);
|
writel(WDT_CTL_START1_MASK, priv->regs + WDT_CTL_REG);
|
||||||
writel_be(WDT_CTL_START2_MASK, priv->regs + WDT_CTL_REG);
|
writel(WDT_CTL_START2_MASK, priv->regs + WDT_CTL_REG);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -50,7 +50,7 @@ static int bcm6345_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
|
|||||||
timeout = WDT_VAL_MAX;
|
timeout = WDT_VAL_MAX;
|
||||||
}
|
}
|
||||||
|
|
||||||
writel_be(timeout, priv->regs + WDT_VAL_REG);
|
writel(timeout, priv->regs + WDT_VAL_REG);
|
||||||
|
|
||||||
return bcm6345_wdt_reset(dev);
|
return bcm6345_wdt_reset(dev);
|
||||||
}
|
}
|
||||||
@ -64,8 +64,8 @@ static int bcm6345_wdt_stop(struct udevice *dev)
|
|||||||
{
|
{
|
||||||
struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
|
struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
|
||||||
|
|
||||||
writel_be(WDT_CTL_STOP1_MASK, priv->regs + WDT_CTL_REG);
|
writel(WDT_CTL_STOP1_MASK, priv->regs + WDT_CTL_REG);
|
||||||
writel_be(WDT_CTL_STOP2_MASK, priv->regs + WDT_CTL_REG);
|
writel(WDT_CTL_STOP2_MASK, priv->regs + WDT_CTL_REG);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \
|
||||||
CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE - 4)
|
CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE - 4)
|
||||||
|
|
||||||
|
#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
||||||
|
|
||||||
/* U-Boot general configuration */
|
/* U-Boot general configuration */
|
||||||
#define EXTRA_ENV_AM65X_BOARD_SETTINGS \
|
#define EXTRA_ENV_AM65X_BOARD_SETTINGS \
|
||||||
"findfdt=" \
|
"findfdt=" \
|
||||||
|
37
include/configs/broadcom_bcm963158.h
Normal file
37
include/configs/broadcom_bcm963158.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/sizes.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* common
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* UART */
|
||||||
|
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
|
||||||
|
230400, 500000, 1500000 }
|
||||||
|
/* Memory usage */
|
||||||
|
#define CONFIG_SYS_MAXARGS 24
|
||||||
|
#define CONFIG_SYS_MALLOC_LEN (1024 * 1024)
|
||||||
|
#define CONFIG_SYS_BOOTM_LEN (16 * 1024 * 1024)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 63158
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* RAM */
|
||||||
|
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
||||||
|
|
||||||
|
/* U-Boot */
|
||||||
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + SZ_16M)
|
||||||
|
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE
|
||||||
|
|
||||||
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
||||||
|
|
||||||
|
/*
|
||||||
|
* bcm963158
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define CONFIG_ENV_SIZE (8 * 1024)
|
@ -190,16 +190,6 @@
|
|||||||
/* env defaults */
|
/* env defaults */
|
||||||
#define CONFIG_BOOTFILE "uImage"
|
#define CONFIG_BOOTFILE "uImage"
|
||||||
|
|
||||||
/* Override OMAP3 common serial console configuration from UART3
|
|
||||||
* to UART2.
|
|
||||||
*
|
|
||||||
* Attention: for UART2, special MUX settings (MUX_DEFAULT(), MCBSP3)
|
|
||||||
* are needed and peripheral clocks for UART2 must be enabled in
|
|
||||||
* function per_clocks_enable().
|
|
||||||
*/
|
|
||||||
#ifdef CONFIG_SPL_BUILD
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Provide the MACH_TYPE value the vendor kernel requires */
|
/* Provide the MACH_TYPE value the vendor kernel requires */
|
||||||
#define CONFIG_MACH_TYPE 3063
|
#define CONFIG_MACH_TYPE 3063
|
||||||
|
|
||||||
|
@ -248,7 +248,4 @@
|
|||||||
|
|
||||||
#define STM32MP1_LAST_CLK 232
|
#define STM32MP1_LAST_CLK 232
|
||||||
|
|
||||||
#define LTDC_K LTDC_PX
|
|
||||||
#define ETHMAC_K ETHCK_K
|
|
||||||
|
|
||||||
#endif /* _DT_BINDINGS_STM32MP1_CLKS_H_ */
|
#endif /* _DT_BINDINGS_STM32MP1_CLKS_H_ */
|
||||||
|
@ -8,6 +8,39 @@
|
|||||||
|
|
||||||
typedef int (*init_fnc_t)(void);
|
typedef int (*init_fnc_t)(void);
|
||||||
|
|
||||||
int initcall_run_list(const init_fnc_t init_sequence[]);
|
#include <common.h>
|
||||||
|
#include <initcall.h>
|
||||||
|
#include <efi.h>
|
||||||
|
|
||||||
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
static inline int initcall_run_list(const init_fnc_t init_sequence[])
|
||||||
|
{
|
||||||
|
const init_fnc_t *init_fnc_ptr;
|
||||||
|
|
||||||
|
for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
|
||||||
|
unsigned long reloc_ofs = 0;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
if (gd->flags & GD_FLG_RELOC)
|
||||||
|
reloc_ofs = gd->reloc_off;
|
||||||
|
#ifdef CONFIG_EFI_APP
|
||||||
|
reloc_ofs = (unsigned long)image_base;
|
||||||
|
#endif
|
||||||
|
debug("initcall: %p", (char *)*init_fnc_ptr - reloc_ofs);
|
||||||
|
if (gd->flags & GD_FLG_RELOC)
|
||||||
|
debug(" (relocated to %p)\n", (char *)*init_fnc_ptr);
|
||||||
|
else
|
||||||
|
debug("\n");
|
||||||
|
ret = (*init_fnc_ptr)();
|
||||||
|
if (ret) {
|
||||||
|
printf("initcall sequence %p failed at call %p (err=%d)\n",
|
||||||
|
init_sequence,
|
||||||
|
(char *)*init_fnc_ptr - reloc_ofs, ret);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
14
include/test/lib.h
Normal file
14
include/test/lib.h
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __TEST_LIB_H__
|
||||||
|
#define __TEST_LIB_H__
|
||||||
|
|
||||||
|
#include <test/test.h>
|
||||||
|
|
||||||
|
/* Declare a new library function test */
|
||||||
|
#define LIB_TEST(_name, _flags) UNIT_TEST(_name, _flags, lib_test)
|
||||||
|
|
||||||
|
#endif /* __TEST_LIB_H__ */
|
@ -27,6 +27,7 @@ int do_ut_bloblist(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
|
|||||||
int do_ut_compression(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
|
int do_ut_compression(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
|
||||||
int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
|
int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
int do_ut_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
int do_ut_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
||||||
|
@ -35,7 +35,6 @@ obj-$(CONFIG_TEST_FDTDEC) += fdtdec_test.o
|
|||||||
obj-$(CONFIG_GZIP_COMPRESSED) += gzip.o
|
obj-$(CONFIG_GZIP_COMPRESSED) += gzip.o
|
||||||
obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += smbios.o
|
obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += smbios.o
|
||||||
obj-$(CONFIG_IMAGE_SPARSE) += image-sparse.o
|
obj-$(CONFIG_IMAGE_SPARSE) += image-sparse.o
|
||||||
obj-y += initcall.o
|
|
||||||
obj-y += ldiv.o
|
obj-y += ldiv.o
|
||||||
obj-$(CONFIG_MD5) += md5.o
|
obj-$(CONFIG_MD5) += md5.o
|
||||||
obj-y += net_utils.o
|
obj-y += net_utils.o
|
||||||
|
@ -40,6 +40,9 @@
|
|||||||
#define CONFIG_ENV_MAX_ENTRIES 512
|
#define CONFIG_ENV_MAX_ENTRIES 512
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define USED_FREE 0
|
||||||
|
#define USED_DELETED -1
|
||||||
|
|
||||||
#include <env_callback.h>
|
#include <env_callback.h>
|
||||||
#include <env_flags.h>
|
#include <env_flags.h>
|
||||||
#include <search.h>
|
#include <search.h>
|
||||||
@ -303,7 +306,7 @@ int hsearch_r(ENTRY item, ACTION action, ENTRY ** retval,
|
|||||||
*/
|
*/
|
||||||
unsigned hval2;
|
unsigned hval2;
|
||||||
|
|
||||||
if (htab->table[idx].used == -1
|
if (htab->table[idx].used == USED_DELETED
|
||||||
&& !first_deleted)
|
&& !first_deleted)
|
||||||
first_deleted = idx;
|
first_deleted = idx;
|
||||||
|
|
||||||
@ -335,13 +338,17 @@ int hsearch_r(ENTRY item, ACTION action, ENTRY ** retval,
|
|||||||
if (idx == hval)
|
if (idx == hval)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
if (htab->table[idx].used == USED_DELETED
|
||||||
|
&& !first_deleted)
|
||||||
|
first_deleted = idx;
|
||||||
|
|
||||||
/* If entry is found use it. */
|
/* If entry is found use it. */
|
||||||
ret = _compare_and_overwrite_entry(item, action, retval,
|
ret = _compare_and_overwrite_entry(item, action, retval,
|
||||||
htab, flag, hval, idx);
|
htab, flag, hval, idx);
|
||||||
if (ret != -1)
|
if (ret != -1)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
while (htab->table[idx].used);
|
while (htab->table[idx].used != USED_FREE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* An empty bucket has been found. */
|
/* An empty bucket has been found. */
|
||||||
@ -433,7 +440,7 @@ static void _hdelete(const char *key, struct hsearch_data *htab, ENTRY *ep,
|
|||||||
free(ep->data);
|
free(ep->data);
|
||||||
ep->callback = NULL;
|
ep->callback = NULL;
|
||||||
ep->flags = 0;
|
ep->flags = 0;
|
||||||
htab->table[idx].used = -1;
|
htab->table[idx].used = USED_DELETED;
|
||||||
|
|
||||||
--htab->filled;
|
--htab->filled;
|
||||||
}
|
}
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0+
|
|
||||||
/*
|
|
||||||
* Copyright (c) 2013 The Chromium OS Authors.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <common.h>
|
|
||||||
#include <initcall.h>
|
|
||||||
#include <efi.h>
|
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
|
||||||
|
|
||||||
int initcall_run_list(const init_fnc_t init_sequence[])
|
|
||||||
{
|
|
||||||
const init_fnc_t *init_fnc_ptr;
|
|
||||||
|
|
||||||
for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
|
|
||||||
unsigned long reloc_ofs = 0;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
if (gd->flags & GD_FLG_RELOC)
|
|
||||||
reloc_ofs = gd->reloc_off;
|
|
||||||
#ifdef CONFIG_EFI_APP
|
|
||||||
reloc_ofs = (unsigned long)image_base;
|
|
||||||
#endif
|
|
||||||
debug("initcall: %p", (char *)*init_fnc_ptr - reloc_ofs);
|
|
||||||
if (gd->flags & GD_FLG_RELOC)
|
|
||||||
debug(" (relocated to %p)\n", (char *)*init_fnc_ptr);
|
|
||||||
else
|
|
||||||
debug("\n");
|
|
||||||
ret = (*init_fnc_ptr)();
|
|
||||||
if (ret) {
|
|
||||||
printf("initcall sequence %p failed at call %p (err=%d)\n",
|
|
||||||
init_sequence,
|
|
||||||
(char *)*init_fnc_ptr - reloc_ofs, ret);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -6,6 +6,14 @@ menuconfig UNIT_TEST
|
|||||||
This does not require sandbox to be included, but it is most
|
This does not require sandbox to be included, but it is most
|
||||||
often used there.
|
often used there.
|
||||||
|
|
||||||
|
config UT_LIB
|
||||||
|
bool "Unit tests for library functions"
|
||||||
|
depends on UNIT_TEST
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
Enables the 'ut lib' command which tests library functions like
|
||||||
|
memcat(), memcyp(), memmove().
|
||||||
|
|
||||||
config UT_TIME
|
config UT_TIME
|
||||||
bool "Unit tests for time functions"
|
bool "Unit tests for time functions"
|
||||||
depends on UNIT_TEST
|
depends on UNIT_TEST
|
||||||
|
@ -46,6 +46,9 @@ static cmd_tbl_t cmd_ut_sub[] = {
|
|||||||
#ifdef CONFIG_UT_OVERLAY
|
#ifdef CONFIG_UT_OVERLAY
|
||||||
U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
|
U_BOOT_CMD_MKENT(overlay, CONFIG_SYS_MAXARGS, 1, do_ut_overlay, "", ""),
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_UT_LIB
|
||||||
|
U_BOOT_CMD_MKENT(lib, CONFIG_SYS_MAXARGS, 1, do_ut_lib, "", ""),
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_UT_TIME
|
#ifdef CONFIG_UT_TIME
|
||||||
U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
|
U_BOOT_CMD_MKENT(time, CONFIG_SYS_MAXARGS, 1, do_ut_time, "", ""),
|
||||||
#endif
|
#endif
|
||||||
@ -108,6 +111,9 @@ static char ut_help_text[] =
|
|||||||
#ifdef CONFIG_UT_ENV
|
#ifdef CONFIG_UT_ENV
|
||||||
"ut env [test-name]\n"
|
"ut env [test-name]\n"
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_UT_LIB
|
||||||
|
"ut lib [test-name] - test library functions\n"
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_UT_OVERLAY
|
#ifdef CONFIG_UT_OVERLAY
|
||||||
"ut overlay [test-name]\n"
|
"ut overlay [test-name]\n"
|
||||||
#endif
|
#endif
|
||||||
|
@ -749,6 +749,10 @@ static int dm_test_uclass_devices_find(struct unit_test_state *uts)
|
|||||||
ut_assert(dev);
|
ut_assert(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ret = uclass_find_first_device(UCLASS_TEST_DUMMY, &dev);
|
||||||
|
ut_assert(ret == -ENODEV);
|
||||||
|
ut_assert(!dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
DM_TEST(dm_test_uclass_devices_find, DM_TESTF_SCAN_PDATA);
|
DM_TEST(dm_test_uclass_devices_find, DM_TESTF_SCAN_PDATA);
|
||||||
|
1
test/env/Makefile
vendored
1
test/env/Makefile
vendored
@ -4,3 +4,4 @@
|
|||||||
|
|
||||||
obj-y += cmd_ut_env.o
|
obj-y += cmd_ut_env.o
|
||||||
obj-y += attr.o
|
obj-y += attr.o
|
||||||
|
obj-y += hashtable.o
|
||||||
|
125
test/env/hashtable.c
vendored
Normal file
125
test/env/hashtable.c
vendored
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2019
|
||||||
|
* Roman Kapl, SYSGO, rka@sysgo.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <command.h>
|
||||||
|
#include <search.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <test/env.h>
|
||||||
|
#include <test/ut.h>
|
||||||
|
|
||||||
|
#define SIZE 32
|
||||||
|
#define ITERATIONS 10000
|
||||||
|
|
||||||
|
static int htab_fill(struct unit_test_state *uts,
|
||||||
|
struct hsearch_data *htab, size_t size)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
ENTRY item;
|
||||||
|
ENTRY *ritem;
|
||||||
|
char key[20];
|
||||||
|
|
||||||
|
for (i = 0; i < size; i++) {
|
||||||
|
sprintf(key, "%d", (int)i);
|
||||||
|
item.callback = NULL;
|
||||||
|
item.data = key;
|
||||||
|
item.flags = 0;
|
||||||
|
item.key = key;
|
||||||
|
ut_asserteq(1, hsearch_r(item, ENTER, &ritem, htab, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int htab_check_fill(struct unit_test_state *uts,
|
||||||
|
struct hsearch_data *htab, size_t size)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
ENTRY item;
|
||||||
|
ENTRY *ritem;
|
||||||
|
char key[20];
|
||||||
|
|
||||||
|
for (i = 0; i < size; i++) {
|
||||||
|
sprintf(key, "%d", (int)i);
|
||||||
|
item.callback = NULL;
|
||||||
|
item.flags = 0;
|
||||||
|
item.data = key;
|
||||||
|
item.key = key;
|
||||||
|
hsearch_r(item, FIND, &ritem, htab, 0);
|
||||||
|
ut_assert(ritem);
|
||||||
|
ut_asserteq_str(key, ritem->key);
|
||||||
|
ut_asserteq_str(key, ritem->data);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int htab_create_delete(struct unit_test_state *uts,
|
||||||
|
struct hsearch_data *htab, size_t iterations)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
ENTRY item;
|
||||||
|
ENTRY *ritem;
|
||||||
|
char key[20];
|
||||||
|
|
||||||
|
for (i = 0; i < iterations; i++) {
|
||||||
|
sprintf(key, "cd-%d", (int)i);
|
||||||
|
item.callback = NULL;
|
||||||
|
item.flags = 0;
|
||||||
|
item.data = key;
|
||||||
|
item.key = key;
|
||||||
|
hsearch_r(item, ENTER, &ritem, htab, 0);
|
||||||
|
ritem = NULL;
|
||||||
|
|
||||||
|
hsearch_r(item, FIND, &ritem, htab, 0);
|
||||||
|
ut_assert(ritem);
|
||||||
|
ut_asserteq_str(key, ritem->key);
|
||||||
|
ut_asserteq_str(key, ritem->data);
|
||||||
|
|
||||||
|
ut_asserteq(1, hdelete_r(key, htab, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Completely fill up the hash table */
|
||||||
|
static int env_test_htab_fill(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
struct hsearch_data htab;
|
||||||
|
|
||||||
|
memset(&htab, 0, sizeof(htab));
|
||||||
|
ut_asserteq(1, hcreate_r(SIZE, &htab));
|
||||||
|
|
||||||
|
ut_assertok(htab_fill(uts, &htab, SIZE));
|
||||||
|
ut_assertok(htab_check_fill(uts, &htab, SIZE));
|
||||||
|
ut_asserteq(SIZE, htab.filled);
|
||||||
|
|
||||||
|
hdestroy_r(&htab);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ENV_TEST(env_test_htab_fill, 0);
|
||||||
|
|
||||||
|
/* Fill the hashtable up halfway an repeateadly delete/create elements
|
||||||
|
* and check for corruption
|
||||||
|
*/
|
||||||
|
static int env_test_htab_deletes(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
struct hsearch_data htab;
|
||||||
|
|
||||||
|
memset(&htab, 0, sizeof(htab));
|
||||||
|
ut_asserteq(1, hcreate_r(SIZE, &htab));
|
||||||
|
|
||||||
|
ut_assertok(htab_fill(uts, &htab, SIZE / 2));
|
||||||
|
ut_assertok(htab_create_delete(uts, &htab, ITERATIONS));
|
||||||
|
ut_assertok(htab_check_fill(uts, &htab, SIZE / 2));
|
||||||
|
ut_asserteq(SIZE / 2, htab.filled);
|
||||||
|
|
||||||
|
hdestroy_r(&htab);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ENV_TEST(env_test_htab_deletes, 0);
|
@ -2,5 +2,7 @@
|
|||||||
#
|
#
|
||||||
# (C) Copyright 2018
|
# (C) Copyright 2018
|
||||||
# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
||||||
|
obj-y += cmd_ut_lib.o
|
||||||
obj-y += hexdump.o
|
obj-y += hexdump.o
|
||||||
obj-y += lmb.o
|
obj-y += lmb.o
|
||||||
|
obj-y += string.o
|
||||||
|
20
test/lib/cmd_ut_lib.c
Normal file
20
test/lib/cmd_ut_lib.c
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de>
|
||||||
|
*
|
||||||
|
* Unit tests for library functions
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <command.h>
|
||||||
|
#include <test/lib.h>
|
||||||
|
#include <test/suites.h>
|
||||||
|
#include <test/ut.h>
|
||||||
|
|
||||||
|
int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||||
|
{
|
||||||
|
struct unit_test *tests = ll_entry_start(struct unit_test, lib_test);
|
||||||
|
const int n_ents = ll_entry_count(struct unit_test, lib_test);
|
||||||
|
|
||||||
|
return cmd_ut_category("lib", tests, n_ents, argc, argv);
|
||||||
|
}
|
194
test/lib/string.c
Normal file
194
test/lib/string.c
Normal file
@ -0,0 +1,194 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de>
|
||||||
|
*
|
||||||
|
* Unit tests for memory functions
|
||||||
|
*
|
||||||
|
* The architecture dependent implementations run through different lines of
|
||||||
|
* code depending on the alignment and length of memory regions copied or set.
|
||||||
|
* This has to be considered in testing.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <command.h>
|
||||||
|
#include <test/lib.h>
|
||||||
|
#include <test/test.h>
|
||||||
|
#include <test/ut.h>
|
||||||
|
|
||||||
|
/* Xor mask used for marking memory regions */
|
||||||
|
#define MASK 0xA5
|
||||||
|
/* Number of different alignment values */
|
||||||
|
#define SWEEP 16
|
||||||
|
/* Allow for copying up to 32 bytes */
|
||||||
|
#define BUFLEN (SWEEP + 33)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* init_buffer() - initialize buffer
|
||||||
|
*
|
||||||
|
* The buffer is filled with incrementing values xor'ed with the mask.
|
||||||
|
*
|
||||||
|
* @buf: buffer
|
||||||
|
* @mask: xor mask
|
||||||
|
*/
|
||||||
|
static void init_buffer(u8 buf[], u8 mask)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < BUFLEN; ++i)
|
||||||
|
buf[i] = i ^ mask;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* test_memset() - test result of memset()
|
||||||
|
*
|
||||||
|
* @uts: unit test state
|
||||||
|
* @buf: buffer
|
||||||
|
* @mask: value set by memset()
|
||||||
|
* @offset: relative start of region changed by memset() in buffer
|
||||||
|
* @len: length of region changed by memset()
|
||||||
|
* Return: 0 = success, 1 = failure
|
||||||
|
*/
|
||||||
|
static int test_memset(struct unit_test_state *uts, u8 buf[], u8 mask,
|
||||||
|
int offset, int len)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < BUFLEN; ++i) {
|
||||||
|
if (i < offset || i >= offset + len) {
|
||||||
|
ut_asserteq(i, buf[i]);
|
||||||
|
} else {
|
||||||
|
ut_asserteq(mask, buf[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lib_memset() - unit test for memset()
|
||||||
|
*
|
||||||
|
* Test memset() with varied alignment and length of the changed buffer.
|
||||||
|
*
|
||||||
|
* @uts: unit test state
|
||||||
|
* Return: 0 = success, 1 = failure
|
||||||
|
*/
|
||||||
|
static int lib_memset(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
u8 buf[BUFLEN];
|
||||||
|
int offset, len;
|
||||||
|
void *ptr;
|
||||||
|
|
||||||
|
for (offset = 0; offset <= SWEEP; ++offset) {
|
||||||
|
for (len = 1; len < BUFLEN - SWEEP; ++len) {
|
||||||
|
init_buffer(buf, 0);
|
||||||
|
ptr = memset(buf + offset, MASK, len);
|
||||||
|
ut_asserteq_ptr(buf + offset, (u8 *)ptr);
|
||||||
|
if (test_memset(uts, buf, MASK, offset, len)) {
|
||||||
|
debug("%s: failure %d, %d\n",
|
||||||
|
__func__, offset, len);
|
||||||
|
return CMD_RET_FAILURE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
LIB_TEST(lib_memset, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* test_memmove() - test result of memcpy() or memmove()
|
||||||
|
*
|
||||||
|
* @uts: unit test state
|
||||||
|
* @buf: buffer
|
||||||
|
* @mask: xor mask used to initialize source buffer
|
||||||
|
* @offset1: relative start of copied region in source buffer
|
||||||
|
* @offset2: relative start of copied region in destination buffer
|
||||||
|
* @len: length of region changed by memset()
|
||||||
|
* Return: 0 = success, 1 = failure
|
||||||
|
*/
|
||||||
|
static int test_memmove(struct unit_test_state *uts, u8 buf[], u8 mask,
|
||||||
|
int offset1, int offset2, int len)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < BUFLEN; ++i) {
|
||||||
|
if (i < offset2 || i >= offset2 + len) {
|
||||||
|
ut_asserteq(i, buf[i]);
|
||||||
|
} else {
|
||||||
|
ut_asserteq((i + offset1 - offset2) ^ mask, buf[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lib_memcpy() - unit test for memcpy()
|
||||||
|
*
|
||||||
|
* Test memcpy() with varied alignment and length of the copied buffer.
|
||||||
|
*
|
||||||
|
* @uts: unit test state
|
||||||
|
* Return: 0 = success, 1 = failure
|
||||||
|
*/
|
||||||
|
static int lib_memcpy(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
u8 buf1[BUFLEN];
|
||||||
|
u8 buf2[BUFLEN];
|
||||||
|
int offset1, offset2, len;
|
||||||
|
void *ptr;
|
||||||
|
|
||||||
|
init_buffer(buf1, MASK);
|
||||||
|
|
||||||
|
for (offset1 = 0; offset1 <= SWEEP; ++offset1) {
|
||||||
|
for (offset2 = 0; offset2 <= SWEEP; ++offset2) {
|
||||||
|
for (len = 1; len < BUFLEN - SWEEP; ++len) {
|
||||||
|
init_buffer(buf2, 0);
|
||||||
|
ptr = memcpy(buf2 + offset2, buf1 + offset1,
|
||||||
|
len);
|
||||||
|
ut_asserteq_ptr(buf2 + offset2, (u8 *)ptr);
|
||||||
|
if (test_memmove(uts, buf2, MASK, offset1,
|
||||||
|
offset2, len)) {
|
||||||
|
debug("%s: failure %d, %d, %d\n",
|
||||||
|
__func__, offset1, offset2, len);
|
||||||
|
return CMD_RET_FAILURE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
LIB_TEST(lib_memcpy, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lib_memmove() - unit test for memmove()
|
||||||
|
*
|
||||||
|
* Test memmove() with varied alignment and length of the copied buffer.
|
||||||
|
*
|
||||||
|
* @uts: unit test state
|
||||||
|
* Return: 0 = success, 1 = failure
|
||||||
|
*/
|
||||||
|
static int lib_memmove(struct unit_test_state *uts)
|
||||||
|
{
|
||||||
|
u8 buf[BUFLEN];
|
||||||
|
int offset1, offset2, len;
|
||||||
|
void *ptr;
|
||||||
|
|
||||||
|
for (offset1 = 0; offset1 <= SWEEP; ++offset1) {
|
||||||
|
for (offset2 = 0; offset2 <= SWEEP; ++offset2) {
|
||||||
|
for (len = 1; len < BUFLEN - SWEEP; ++len) {
|
||||||
|
init_buffer(buf, 0);
|
||||||
|
ptr = memmove(buf + offset2, buf + offset1,
|
||||||
|
len);
|
||||||
|
ut_asserteq_ptr(buf + offset2, (u8 *)ptr);
|
||||||
|
if (test_memmove(uts, buf, 0, offset1, offset2,
|
||||||
|
len)) {
|
||||||
|
debug("%s: failure %d, %d, %d\n",
|
||||||
|
__func__, offset1, offset2, len);
|
||||||
|
return CMD_RET_FAILURE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
LIB_TEST(lib_memmove, 0);
|
@ -42,7 +42,7 @@
|
|||||||
# salt = FORMAT:HEX,OCT:TEST_IMAGE_KEY_DERIVE_SALT
|
# salt = FORMAT:HEX,OCT:TEST_IMAGE_KEY_DERIVE_SALT
|
||||||
|
|
||||||
[ debug ]
|
[ debug ]
|
||||||
|
debugUID = FORMAT:HEX,OCT:0000000000000000000000000000000000000000000000000000000000000000
|
||||||
debugType = INTEGER:4
|
debugType = INTEGER:4
|
||||||
coreDbgEn = INTEGER:0
|
coreDbgEn = INTEGER:0
|
||||||
coreDbgSecEn = INTEGER:0
|
coreDbgSecEn = INTEGER:0
|
||||||
debugUID = FORMAT:HEX,OCT:0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
|
@ -545,6 +545,28 @@ def confirm(options, prompt):
|
|||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def cleanup_empty_blocks(header_path, options):
|
||||||
|
"""Clean up empty conditional blocks
|
||||||
|
|
||||||
|
Arguments:
|
||||||
|
header_path: path to the cleaned file.
|
||||||
|
options: option flags.
|
||||||
|
"""
|
||||||
|
pattern = re.compile(r'^\s*#\s*if.*$\n^\s*#\s*endif.*$\n*', flags=re.M)
|
||||||
|
with open(header_path) as f:
|
||||||
|
data = f.read()
|
||||||
|
|
||||||
|
new_data = pattern.sub('\n', data)
|
||||||
|
|
||||||
|
show_diff(data.splitlines(True), new_data.splitlines(True), header_path,
|
||||||
|
options.color)
|
||||||
|
|
||||||
|
if options.dry_run:
|
||||||
|
return
|
||||||
|
|
||||||
|
with open(header_path, 'w') as f:
|
||||||
|
f.write(new_data)
|
||||||
|
|
||||||
def cleanup_one_header(header_path, patterns, options):
|
def cleanup_one_header(header_path, patterns, options):
|
||||||
"""Clean regex-matched lines away from a file.
|
"""Clean regex-matched lines away from a file.
|
||||||
|
|
||||||
@ -626,8 +648,9 @@ def cleanup_headers(configs, options):
|
|||||||
continue
|
continue
|
||||||
for filename in filenames:
|
for filename in filenames:
|
||||||
if not fnmatch.fnmatch(filename, '*~'):
|
if not fnmatch.fnmatch(filename, '*~'):
|
||||||
cleanup_one_header(os.path.join(dirpath, filename),
|
header_path = os.path.join(dirpath, filename)
|
||||||
patterns, options)
|
cleanup_one_header(header_path, patterns, options)
|
||||||
|
cleanup_empty_blocks(header_path, options)
|
||||||
|
|
||||||
def cleanup_one_extra_option(defconfig_path, configs, options):
|
def cleanup_one_extra_option(defconfig_path, configs, options):
|
||||||
"""Delete config defines in CONFIG_SYS_EXTRA_OPTIONS in one defconfig file.
|
"""Delete config defines in CONFIG_SYS_EXTRA_OPTIONS in one defconfig file.
|
||||||
|
Loading…
Reference in New Issue
Block a user