#if defined(CONFIG_BCM_KF_ARM_BCM963XX) /* <:copyright-BRCM:2013:DUAL/GPL:standard Copyright (c) 2013 Broadcom All Rights Reserved This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation (the "GPL"). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. :> */ /* * Broadcom ARM BSP * Internal API declarations */ #ifndef __PLAT_BSP_H #define __PLAT_BSP_H #include struct clk; /* 32KB, 16-way cache, Allow non-secure access, Instruction prefetch, Early BRESP */ #define BCM_L2C_AUX_VAL (L310_AUX_CTRL_ASSOCIATIVITY_16 | \ (2 << L2C_AUX_CTRL_WAY_SIZE_SHIFT) | \ L2C_AUX_CTRL_SHARED_OVERRIDE | \ L310_AUX_CTRL_NS_INT_CTRL | \ L310_AUX_CTRL_INSTR_PREFETCH | \ L310_AUX_CTRL_EARLY_BRESP ) #define BCM_L2C_AUX_MSK ~( L310_AUX_CTRL_ASSOCIATIVITY_16 | \ L2C_AUX_CTRL_WAY_SIZE_MASK | \ L2C_AUX_CTRL_SHARED_OVERRIDE | \ L310_AUX_CTRL_NS_INT_CTRL | \ L310_AUX_CTRL_INSTR_PREFETCH | \ L310_AUX_CTRL_EARLY_BRESP ) void __init soc_fixup(void); void __init soc_map_io(void); void __init soc_init_clock(void); void __init soc_init_irq(void); void __init soc_init_early(void); void __init soc_add_devices(void); void __init soc_init_timer(void); void __init soc_l2_cache_init(void); #endif /* __PLAT_BSP_H */ #endif /* CONFIG_BCM_KF_ARM_BCM963XX */