|
@@ -215,11 +215,48 @@ void __init bfin_relocate_l1_mem(void)
|
|
|
|
|
|
early_dma_memcpy_done();
|
|
|
|
|
|
+#if defined(CONFIG_SMP) && defined(CONFIG_ICACHE_FLUSH_L1)
|
|
|
+ blackfin_iflush_l1_entry[0] = (unsigned long)blackfin_icache_flush_range_l1;
|
|
|
+#endif
|
|
|
+
|
|
|
/* if necessary, copy L2 text/data to L2 SRAM */
|
|
|
if (L2_LENGTH && l2_len)
|
|
|
memcpy(_stext_l2, _l2_lma, l2_len);
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_SMP
|
|
|
+void __init bfin_relocate_coreb_l1_mem(void)
|
|
|
+{
|
|
|
+ unsigned long text_l1_len = (unsigned long)_text_l1_len;
|
|
|
+ unsigned long data_l1_len = (unsigned long)_data_l1_len;
|
|
|
+ unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len;
|
|
|
+
|
|
|
+ blackfin_dma_early_init();
|
|
|
+
|
|
|
+ /* if necessary, copy L1 text to L1 instruction SRAM */
|
|
|
+ if (L1_CODE_LENGTH && text_l1_len)
|
|
|
+ early_dma_memcpy((void *)COREB_L1_CODE_START, _text_l1_lma,
|
|
|
+ text_l1_len);
|
|
|
+
|
|
|
+ /* if necessary, copy L1 data to L1 data bank A SRAM */
|
|
|
+ if (L1_DATA_A_LENGTH && data_l1_len)
|
|
|
+ early_dma_memcpy((void *)COREB_L1_DATA_A_START, _data_l1_lma,
|
|
|
+ data_l1_len);
|
|
|
+
|
|
|
+ /* if necessary, copy L1 data B to L1 data bank B SRAM */
|
|
|
+ if (L1_DATA_B_LENGTH && data_b_l1_len)
|
|
|
+ early_dma_memcpy((void *)COREB_L1_DATA_B_START, _data_b_l1_lma,
|
|
|
+ data_b_l1_len);
|
|
|
+
|
|
|
+ early_dma_memcpy_done();
|
|
|
+
|
|
|
+#ifdef CONFIG_ICACHE_FLUSH_L1
|
|
|
+ blackfin_iflush_l1_entry[1] = (unsigned long)blackfin_icache_flush_range_l1 -
|
|
|
+ (unsigned long)_stext_l1 + COREB_L1_CODE_START;
|
|
|
+#endif
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
#ifdef CONFIG_ROMKERNEL
|
|
|
void __init bfin_relocate_xip_data(void)
|
|
|
{
|