gxp.c 372 B

12345678910111213141516
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* Copyright (C) 2022 Hewlett-Packard Enterprise Development Company, L.P. */
  3. #include <linux/of_platform.h>
  4. #include <asm/mach/arch.h>
  5. static const char * const gxp_board_dt_compat[] = {
  6. "hpe,gxp",
  7. NULL,
  8. };
  9. DT_MACHINE_START(GXP_DT, "HPE GXP")
  10. .dt_compat = gxp_board_dt_compat,
  11. .l2c_aux_val = 0,
  12. .l2c_aux_mask = ~0,
  13. MACHINE_END