xref: /openbmc/linux/arch/arm/mach-bcm/bcm_5301x.c (revision a8fe58ce)
1 /*
2  * Broadcom BCM470X / BCM5301X ARM platform code.
3  *
4  * Copyright 2013 Hauke Mehrtens <hauke@hauke-m.de>
5  *
6  * Licensed under the GNU/GPL. See COPYING for details.
7  */
8 #include <linux/of_platform.h>
9 #include <asm/hardware/cache-l2x0.h>
10 
11 #include <asm/mach/arch.h>
12 
13 static const char *const bcm5301x_dt_compat[] __initconst = {
14 	"brcm,bcm4708",
15 	NULL,
16 };
17 
18 DT_MACHINE_START(BCM5301X, "BCM5301X")
19 	.l2c_aux_val	= 0,
20 	.l2c_aux_mask	= ~0,
21 	.dt_compat	= bcm5301x_dt_compat,
22 MACHINE_END
23