diff options
author | Tom Rini <trini@konsulko.com> | 2020-08-11 23:03:46 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-11 23:03:46 -0400 |
commit | c25344ff9ae1d764a8e85296736d6e150e34b4fd (patch) | |
tree | 3fa53ec91a805d19b4c4ab7a30f60d2bba2d5554 /arch/arm/mach-k3/common.h | |
parent | b298720900752967dd46a5b54a5a303eb11eed95 (diff) | |
parent | db6451ec0e8483f76f3364293d48e86249c52322 (diff) |
Merge tag 'ti-v2020.10-rc3' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
- Added support for J7200 evm
- DM_ETH and DM_USB migrations for omap3
- USB DFU and mass storage support for AM65x evm
- RTI watchdog support for K3 devices
- Fix an issue with L3 cache on K3 devices
Diffstat (limited to 'arch/arm/mach-k3/common.h')
-rw-r--r-- | arch/arm/mach-k3/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-k3/common.h b/arch/arm/mach-k3/common.h index ba344c5bc9d..a6dbc7808b8 100644 --- a/arch/arm/mach-k3/common.h +++ b/arch/arm/mach-k3/common.h @@ -7,6 +7,10 @@ */ #include <asm/armv7_mpu.h> +#include <asm/hardware.h> + +#define J721E 0xbb64 +#define J7200 0xbb6d struct fwl_data { const char *name; @@ -22,3 +26,5 @@ void start_non_linux_remote_cores(void); int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr); void k3_sysfw_print_ver(void); void spl_enable_dcache(void); +void mmr_unlock(phys_addr_t base, u32 partition); +bool is_rom_loaded_sysfw(struct rom_extended_boot_data *data); |