Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 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> |
Hauke Mehrtens | fdf4850 | 2014-02-04 00:01:46 +0100 | [diff] [blame] | 12 | |
Nicolas Pitre | 19c233b | 2015-07-27 18:27:52 -0400 | [diff] [blame] | 13 | static const char *const bcm5301x_dt_compat[] __initconst = { |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 14 | "brcm,bcm4708", |
| 15 | NULL, |
| 16 | }; |
| 17 | |
| 18 | DT_MACHINE_START(BCM5301X, "BCM5301X") |
Russell King | d458773f | 2014-04-28 15:27:59 +0100 | [diff] [blame] | 19 | .l2c_aux_val = 0, |
| 20 | .l2c_aux_mask = ~0, |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 21 | .dt_compat = bcm5301x_dt_compat, |
| 22 | MACHINE_END |