zx296702.c 615 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright 2014 Linaro Ltd.
  3. * Copyright (C) 2014 ZTE Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <asm/mach/arch.h>
  10. #include <asm/mach/map.h>
  11. #include <linux/of_address.h>
  12. #include <linux/of_platform.h>
  13. static const char *const zx296702_dt_compat[] __initconst = {
  14. "zte,zx296702",
  15. NULL,
  16. };
  17. DT_MACHINE_START(ZX, "ZTE ZX296702 (Device Tree)")
  18. .dt_compat = zx296702_dt_compat,
  19. .l2c_aux_val = 0,
  20. .l2c_aux_mask = ~0,
  21. MACHINE_END