uniphier.c 942 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  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. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #include <asm/mach/arch.h>
  15. static const char * const uniphier_dt_compat[] __initconst = {
  16. "socionext,ph1-sld3",
  17. "socionext,ph1-ld4",
  18. "socionext,ph1-pro4",
  19. "socionext,ph1-sld8",
  20. "socionext,ph1-pro5",
  21. "socionext,proxstream2",
  22. "socionext,ph1-ld6b",
  23. NULL,
  24. };
  25. DT_MACHINE_START(UNIPHIER, "Socionext UniPhier")
  26. .dt_compat = uniphier_dt_compat,
  27. MACHINE_END