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