mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
dbc0416104
As the plat and mach includes need to disappear for single zImage work, we need to remove plat/hardware.h. Do this by splitting plat/hardware.h into omap1 and omap2+ specific files. The old plat/hardware.h already has omap1 only defines, so it gets moved to mach/hardware.h for omap1. For omap2+, we use the local soc.h that for now just includes the related SoC headers to keep this patch more readable. Note that the local soc.h still includes plat/cpu.h that can be dealt with in later patches. Let's also include plat/serial.h from common.h for all the board-*.c files. This allows making the include files local later on without patching these files again. Note that only minimal changes are done in this patch for the drivers/watchdog/omap_wdt.c driver to keep things compiling. Further patches are needed to eventually remove cpu_is_omap usage in the drivers. Also only minimal changes are done to sound/soc/omap/* to remove the unneeded includes and to define OMAP44XX_MCPDM_L3_BASE locally so there's no need to include omap44xx.h. While at it, also sort some of the includes in the standard way. Cc: linux-watchdog@vger.kernel.org Cc: alsa-devel@alsa-project.org Cc: Peter Ujfalusi <peter.ujfalusi@ti.com> Cc: Jarkko Nikula <jarkko.nikula@bitmer.com> Cc: Liam Girdwood <lrg@ti.com> Acked-by: Wim Van Sebroeck <wim@iguana.be> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* emu.c
|
|
*
|
|
* ETM and ETB CoreSight components' resources as found in OMAP3xxx.
|
|
*
|
|
* Copyright (C) 2009 Nokia Corporation.
|
|
* Alexander Shishkin
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/types.h>
|
|
#include <linux/module.h>
|
|
#include <linux/device.h>
|
|
#include <linux/amba/bus.h>
|
|
#include <linux/io.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/err.h>
|
|
|
|
#include "soc.h"
|
|
#include "iomap.h"
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_AUTHOR("Alexander Shishkin");
|
|
|
|
/* Cortex CoreSight components within omap3xxx EMU */
|
|
#define ETM_BASE (L4_EMU_34XX_PHYS + 0x10000)
|
|
#define DBG_BASE (L4_EMU_34XX_PHYS + 0x11000)
|
|
#define ETB_BASE (L4_EMU_34XX_PHYS + 0x1b000)
|
|
#define DAPCTL (L4_EMU_34XX_PHYS + 0x1d000)
|
|
|
|
static AMBA_APB_DEVICE(omap3_etb, "etb", 0x000bb907, ETB_BASE, { }, NULL);
|
|
static AMBA_APB_DEVICE(omap3_etm, "etm", 0x102bb921, ETM_BASE, { }, NULL);
|
|
|
|
static int __init emu_init(void)
|
|
{
|
|
if (!cpu_is_omap34xx())
|
|
return -ENODEV;
|
|
|
|
amba_device_register(&omap3_etb_device, &iomem_resource);
|
|
amba_device_register(&omap3_etm_device, &iomem_resource);
|
|
|
|
return 0;
|
|
}
|
|
|
|
subsys_initcall(emu_init);
|