mach-vf610.c 742 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2012-2013 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. */
  9. #include <linux/of_platform.h>
  10. #include <linux/irqchip.h>
  11. #include <asm/mach/arch.h>
  12. #include <asm/hardware/cache-l2x0.h>
  13. static const char * const vf610_dt_compat[] __initconst = {
  14. "fsl,vf500",
  15. "fsl,vf510",
  16. "fsl,vf600",
  17. "fsl,vf610",
  18. "fsl,vf610m4",
  19. NULL,
  20. };
  21. DT_MACHINE_START(VYBRID_VF610, "Freescale Vybrid VF5xx/VF6xx (Device Tree)")
  22. .l2c_aux_val = 0,
  23. .l2c_aux_mask = ~0,
  24. .dt_compat = vf610_dt_compat,
  25. MACHINE_END