ixp4xx-of.c 507 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * IXP4xx Device Tree boot support
  4. */
  5. #include <asm/mach/arch.h>
  6. /*
  7. * We handle 4 different SoC families. These compatible strings are enough
  8. * to provide the core so that different boards can add their more detailed
  9. * specifics.
  10. */
  11. static const char *ixp4xx_of_board_compat[] = {
  12. "intel,ixp42x",
  13. "intel,ixp43x",
  14. "intel,ixp45x",
  15. "intel,ixp46x",
  16. NULL,
  17. };
  18. DT_MACHINE_START(IXP4XX_DT, "IXP4xx (Device Tree)")
  19. .dt_compat = ixp4xx_of_board_compat,
  20. MACHINE_END