emu.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * emu.c
  3. *
  4. * ETM and ETB CoreSight components' resources as found in OMAP3xxx.
  5. *
  6. * Copyright (C) 2009 Nokia Corporation.
  7. * Alexander Shishkin
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/types.h>
  16. #include <linux/module.h>
  17. #include <linux/device.h>
  18. #include <linux/amba/bus.h>
  19. #include <linux/io.h>
  20. #include <linux/clk.h>
  21. #include <linux/err.h>
  22. #include <mach/hardware.h>
  23. #include "iomap.h"
  24. MODULE_LICENSE("GPL");
  25. MODULE_AUTHOR("Alexander Shishkin");
  26. /* Cortex CoreSight components within omap3xxx EMU */
  27. #define ETM_BASE (L4_EMU_34XX_PHYS + 0x10000)
  28. #define DBG_BASE (L4_EMU_34XX_PHYS + 0x11000)
  29. #define ETB_BASE (L4_EMU_34XX_PHYS + 0x1b000)
  30. #define DAPCTL (L4_EMU_34XX_PHYS + 0x1d000)
  31. static AMBA_APB_DEVICE(omap3_etb, "etb", 0x000bb907, ETB_BASE, { }, NULL);
  32. static AMBA_APB_DEVICE(omap3_etm, "etm", 0x102bb921, ETM_BASE, { }, NULL);
  33. static int __init emu_init(void)
  34. {
  35. if (!cpu_is_omap34xx())
  36. return -ENODEV;
  37. amba_device_register(&omap3_etb_device, &iomem_resource);
  38. amba_device_register(&omap3_etm_device, &iomem_resource);
  39. return 0;
  40. }
  41. subsys_initcall(emu_init);