board-dt.c 566 B

1234567891011121314151617181920212223
  1. /*
  2. * Device Tree board file for NXP LPC18xx/43xx
  3. *
  4. * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #include <asm/mach/arch.h>
  11. static const char *const lpc18xx_43xx_compat[] __initconst = {
  12. "nxp,lpc1850",
  13. "nxp,lpc4350",
  14. "nxp,lpc4370",
  15. NULL
  16. };
  17. DT_MACHINE_START(LPC18XXDT, "NXP LPC18xx/43xx (Device Tree)")
  18. .dt_compat = lpc18xx_43xx_compat,
  19. MACHINE_END