/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr> * Copyright (C) 2014 Kevin Cernekee <cernekee@gmail.com>
*/
/* * CBR addr doesn't change and we can cache it. * For broken SoC/Bootloader CBR addr might also be provided via DT * with "brcm,bmips-cbr-reg" in the "cpus" node.
*/ void __iomem *bmips_cbr_addr __read_mostly;
staticvoid bcm3384_viper_quirks(void)
{ /* * Some experimental CM boxes are set up to let CM own the Viper TP0 * and let Linux own TP1. This requires moving the kernel * load address to a non-conflicting region (e.g. via * CONFIG_PHYSICAL_START) and supplying an alternate DTB. * If we detect this condition, we need to move the MIPS exception * vectors up to an area that we own. * * This is distinct from the OTHER special case mentioned in * smp-bmips.c (boot on TP1, but enable SMP, then TP0 becomes our * logical CPU#1). For the Viper TP1 case, SMP is off limits. * * Also note that many BMIPS435x CPUs do not have a * BMIPS_RELO_VECTOR_CONTROL_1 register, so it isn't safe to just * write VMLINUX_LOAD_ADDRESS into that register on every SoC.
*/
board_ebase_setup = &kbase_setup;
bmips_smp_enabled = 0;
}
staticvoid bcm63xx_fixup_cpu1(void)
{ /* * The bootloader has set up the CPU1 reset vector at * 0xa000_0200. * This conflicts with the special interrupt vector (IV). * The bootloader has also set up CPU1 to respond to the wrong * IPI interrupt. * Here we will start up CPU1 in the background and ask it to * reconfigure itself then go back to sleep.
*/
memcpy((void *)0xa0000200, &bmips_smp_movevec, 0x20);
__sync();
set_c0_cause(C_SW0);
cpumask_set_cpu(1, &bmips_booted_mask);
}
staticvoid bcm6328_quirks(void)
{ /* Check CPU1 status in OTP (it is usually disabled) */ if (__raw_readl(REG_BCM6328_OTP) & BCM6328_TP1_DISABLED)
bmips_smp_enabled = 0; else
bcm63xx_fixup_cpu1();
}
staticvoid bcm6358_quirks(void)
{ /* * BCM3368/BCM6358 need special handling for their shared TLB, so * disable SMP for now
*/
bmips_smp_enabled = 0;
/* * RAC flush causes kernel panics on BCM6358 when booting from TP1 * because the bootloader is not initializing it properly.
*/
bmips_rac_flush_disable = !!(read_c0_brcm_cmt_local() & (1 << 31)) ||
!!bmips_cbr_addr;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.