v2m.c 373 B

1234567891011121314151617
  1. #include <asm/mach/arch.h>
  2. #include "core.h"
  3. static const char * const v2m_dt_match[] __initconst = {
  4. "arm,vexpress",
  5. NULL,
  6. };
  7. DT_MACHINE_START(VEXPRESS_DT, "ARM-Versatile Express")
  8. .dt_compat = v2m_dt_match,
  9. .l2c_aux_val = 0x00400000,
  10. .l2c_aux_mask = 0xfe0fffff,
  11. .smp = smp_ops(vexpress_smp_dt_ops),
  12. .smp_init = smp_init_ops(vexpress_smp_init_ops),
  13. MACHINE_END