board-dt.c 417 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Device Tree board file for NXP LPC18xx/43xx
  4. *
  5. * Copyright (C) 2015 Joachim Eastwood <[email protected]>
  6. */
  7. #include <asm/mach/arch.h>
  8. static const char *const lpc18xx_43xx_compat[] __initconst = {
  9. "nxp,lpc1850",
  10. "nxp,lpc4350",
  11. "nxp,lpc4370",
  12. NULL
  13. };
  14. DT_MACHINE_START(LPC18XXDT, "NXP LPC18xx/43xx (Device Tree)")
  15. .dt_compat = lpc18xx_43xx_compat,
  16. MACHINE_END