arm: mach-k3: Cleanup common start_non_linux_remote_cores()
The mach-k3 common code defined a weak start_non_linux_remote_cores() function so that the proper implementation can be plugged in the SoC-specific source files. This won't be needed anymore, so remove the the common code. Signed-off-by: Suman Anna <s-anna@ti.com>
This commit is contained in:
parent
2a6b2ac48a
commit
010b4efbd1
|
|
@ -171,10 +171,6 @@ int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__weak void start_non_linux_remote_cores(void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
||||||
{
|
{
|
||||||
typedef void __noreturn (*image_entry_noargs_t)(void);
|
typedef void __noreturn (*image_entry_noargs_t)(void);
|
||||||
|
|
@ -190,7 +186,6 @@ void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
||||||
panic("rproc failed to be initialized (%d)\n", ret);
|
panic("rproc failed to be initialized (%d)\n", ret);
|
||||||
|
|
||||||
init_env();
|
init_env();
|
||||||
start_non_linux_remote_cores();
|
|
||||||
size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load",
|
size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load",
|
||||||
&loadaddr);
|
&loadaddr);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ void setup_k3_mpu_regions(void);
|
||||||
int early_console_init(void);
|
int early_console_init(void);
|
||||||
void disable_linefill_optimization(void);
|
void disable_linefill_optimization(void);
|
||||||
void remove_fwl_configs(struct fwl_data *fwl_data, size_t fwl_data_size);
|
void remove_fwl_configs(struct fwl_data *fwl_data, size_t fwl_data_size);
|
||||||
void start_non_linux_remote_cores(void);
|
|
||||||
int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr);
|
int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr);
|
||||||
void k3_sysfw_print_ver(void);
|
void k3_sysfw_print_ver(void);
|
||||||
void spl_enable_dcache(void);
|
void spl_enable_dcache(void);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue