common: Move some cache and MMU functions out of common.h

These functions belong in cpu_func.h. Another option would be cache.h
but that code uses driver model and we have not moved these cache
functions to use driver model. Since they are CPU-related it seems
reasonable to put them here.

Move them over.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass 2019-11-14 12:57:37 -07:00 committed by Tom Rini
parent 6cc915b5fb
commit 9edefc2776
94 changed files with 101 additions and 9 deletions

View File

@ -5,6 +5,7 @@
#include <config.h>
#include <common.h>
#include <cpu_func.h>
#include <linux/compiler.h>
#include <linux/kernel.h>
#include <linux/log2.h>

View File

@ -16,6 +16,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -14,6 +14,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/arch/cpu.h>
#include <asm/arch/armada100.h>

View File

@ -3,6 +3,7 @@
* (C) Copyright 2011
* Ilya Yanok, EmCraft Systems
*/
#include <cpu_func.h>
#include <linux/types.h>
#include <common.h>

View File

@ -14,6 +14,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <env.h>
#include <i2c.h>
#include <net.h>

View File

@ -14,6 +14,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/io.h>

View File

@ -16,6 +16,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/cache.h>
#include <asm/armv7.h>

View File

@ -10,6 +10,7 @@
#include <common.h>
#include <bootm.h>
#include <cpu_func.h>
#include <asm/armv7.h>
#include <asm/secure.h>
#include <asm/setjmp.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
void enable_caches(void)

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <linux/sizes.h>
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/armv7.h>
#include <asm/system.h>
#include <asm/barriers.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/arch/imx-regs.h>
#include <asm/arch/clock.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <errno.h>
#include <asm/armv7m.h>
#include <asm/io.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/armv7m.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/armv8/mmu.h>

View File

@ -12,6 +12,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/secure.h>
#include <linux/compiler.h>

View File

@ -10,6 +10,7 @@
#include <common.h>
#include <bootm.h>
#include <cpu_func.h>
#include <asm/setjmp.h>
/**

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <env.h>
#include <spl.h>
#include <asm/io.h>

View File

@ -10,6 +10,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/arch/pxa-regs.h>
#include <asm/io.h>
#include <asm/system.h>

View File

@ -15,6 +15,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/system.h>
#include <asm/cache.h>
#include <linux/compiler.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <vsprintf.h>
#include <asm/io.h>
#include <asm/arch/hardware.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm/device.h>
#include <fdt_support.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/system.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/armv7.h>
#include <asm/pl310.h>
#include <asm/io.h>

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <clk.h>
#include <cpu.h>
#include <cpu_func.h>
#include <dm.h>
#include <dm/device-internal.h>
#include <dm/lists.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/arch/imx-regs.h>
#include <asm/io.h>
#include <asm/arch/clock.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/arch/imx-regs.h>
#include <asm/arch/clock.h>
#include <asm/arch/sys_proto.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <ns16550.h>
#include <asm/io.h>
#include <asm/arch/msmc.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <wdt.h>
#include <dm/uclass-internal.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <fdtdec.h>
#include <linux/libfdt.h>

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <ahci.h>
#include <cpu_func.h>
#include <linux/mbus.h>
#include <asm/io.h>
#include <asm/pl310.h>

View File

@ -12,6 +12,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/cache.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <netdev.h>
#include <asm/cache.h>
#include <asm/io.h>

View File

@ -4,6 +4,7 @@
* (C) Copyright 2012 Renesas Solutions Corp.
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <env.h>
#include <linux/ctype.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/armv8/mmu.h>
#define GEN3_NR_REGIONS 16

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <clk.h>
#include <cpu_func.h>
#include <dm.h>
#include <ram.h>
#include <syscon.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
void enable_caches(void)

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <errno.h>
#include <fdtdec.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/pl310.h>
#include <asm/u-boot.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <clk.h>
#include <cpu_func.h>
#include <debug_uart.h>
#include <env.h>
#include <misc.h>

View File

@ -10,6 +10,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <mmc.h>
#include <i2c.h>
#include <serial.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <ns16550.h>
#include <spl.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <asm/armv7.h>

View File

@ -4,6 +4,7 @@
* Copyright (C) 2012 Xilinx, Inc. All rights reserved.
*/
#include <common.h>
#include <cpu_func.h>
#include <zynqpl.h>
#include <asm/io.h>
#include <asm/arch/clk.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>
#include <asm/io.h>

View File

@ -18,6 +18,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>
#include <asm/io.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>
#include <asm/io.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/immap.h>
#include <asm/processor.h>

View File

@ -10,6 +10,7 @@
#include <common.h>
#include <MCD_dma.h>
#include <cpu_func.h>
#include <asm/immap.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/immap.h>
#include <asm/cache.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/asm.h>
int dcache_status(void)

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/cacheops.h>
#ifdef CONFIG_MIPS_L2_CACHE
#include <asm/cm.h>

View File

@ -15,6 +15,7 @@
/* CPU specific code */
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/cache.h>

View File

@ -15,6 +15,7 @@
/* CPU specific code */
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <watchdog.h>
#include <asm/cache.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
static inline unsigned long CACHE_SET(unsigned char cache)
{

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/cache.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -13,6 +13,7 @@
#ifndef CONFIG_MPC83XX_SDRAM
#include <common.h>
#include <cpu_func.h>
#include <vsprintf.h>
#include <asm/processor.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/processor.h>
#include <asm/ppc.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <dm/uclass-internal.h>
#include <cache.h>

View File

@ -6,6 +6,7 @@
/* CPU specific code */
#include <common.h>
#include <cpu_func.h>
#include <asm/cache.h>
/*

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
void invalidate_icache_all(void)
{

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/processor.h>
#include <asm/system.h>

View File

@ -21,6 +21,7 @@
#include <common.h>
#include <acpi_s3.h>
#include <command.h>
#include <cpu_func.h>
#include <dm.h>
#include <errno.h>
#include <malloc.h>

View File

@ -19,6 +19,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <malloc.h>
#include <asm/control_regs.h>
#include <asm/cpu.h>

View File

@ -17,6 +17,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <asm/msr.h>
#include <asm/mtrr.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <debug_uart.h>
#include <dm.h>
#include <malloc.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/cache.h>
/*

View File

@ -17,6 +17,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <env.h>
#include <netdev.h>

View File

@ -15,6 +15,7 @@
#include <config.h>
#include <common.h>
#include <cpu_func.h>
#include <netdev.h>
#include <status_led.h>
#include <asm/io.h>

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <console.h>
#include <cpu_func.h>
#define PHYS_FLASH_1 CONFIG_SYS_FLASH_BASE
#define FLASH_BANK_SIZE 0x200000

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <ahci.h>
#include <cpu_func.h>
#include <env.h>
#include <netdev.h>
#include <scsi.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <linux/usb/otg.h>
#include <dwc3-sti-glue.h>
#include <dwc3-uboot.h>

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <config.h>
#include <cpu_func.h>
#include <env.h>
#include <linux/printk.h>
#include <linux/kernel.h>

View File

@ -14,6 +14,7 @@
* RedBoot tx25_misc.c Copyright (C) 2009 Red Hat
*/
#include <common.h>
#include <cpu_func.h>
#include <asm/gpio.h>
#include <asm/io.h>
#include <asm/arch/imx-regs.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <asm/arch/hardware.h>
#include <asm/arch/pxa.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <env.h>
#include <malloc.h>
#include <zynqmp_firmware.h>

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <linux/compiler.h>
static int parse_argv(const char *);

View File

@ -5,6 +5,7 @@
* Copyright (C) 2012-2017 Texas Instruments Incorporated, <www.ti.com>
*/
#include <cpu_func.h>
#include <asm/arch/hardware.h>
#include <asm/cache.h>
#include <asm/emif.h>

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <bootm.h>
#include <cpu_func.h>
#include <env.h>
#include <fdt_support.h>
#include <linux/libfdt.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <kgdb.h>
#include <serial.h>

View File

@ -11,6 +11,7 @@
#include <common.h>
#include <atf_common.h>
#include <cpu_func.h>
#include <errno.h>
#include <spl.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <errno.h>
#include <fdtdec.h>
#include <malloc.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <dm.h>
#include <errno.h>
#include <div64.h>

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <console.h>
#include <cpu_func.h>
#include <asm/io.h>
#include <fs.h>
#include <zynqpl.h>

View File

@ -65,6 +65,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <env.h>
#include <fdtdec.h>
#include <gzip.h>

View File

@ -3,7 +3,7 @@
* Common header file for U-Boot
*
* This file still includes quite a bit of stuff that should be in separate
* headers like command.h and cpu.h. Please think before adding more things.
* headers like command.h. Please think before adding more things.
* Patches to remove things are welcome.
*
* (C) Copyright 2000-2009
@ -185,14 +185,6 @@ int board_early_init_r (void);
int testdram(void);
#endif /* CONFIG_SYS_DRAM_TEST */
/* $(CPU)/start.S */
int icache_status (void);
void icache_enable (void);
void icache_disable(void);
int dcache_status(void);
void dcache_enable (void);
void dcache_disable(void);
void mmu_disable(void);
#if defined(CONFIG_ARM)
void relocate_code(ulong);
#else

View File

@ -52,4 +52,12 @@ int checkcpu(void);
void smp_set_core_boot_addr(unsigned long addr, int corenr);
void smp_kick_all_cpus(void);
int icache_status(void);
void icache_enable(void);
void icache_disable(void);
int dcache_status(void);
void dcache_enable(void);
void dcache_disable(void);
void mmu_disable(void);
#endif

View File

@ -9,6 +9,7 @@
*/
#include <common.h>
#include <cpu_func.h>
#include <mpc83xx.h>
#include <watchdog.h>
#include <asm/io.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <cpu_func.h>
/*
* CPU test