Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012-2013 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/of_platform.h> |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 11 | #include <linux/irqchip.h> |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 12 | #include <asm/mach/arch.h> |
| 13 | #include <asm/hardware/cache-l2x0.h> |
| 14 | |
Shawn Guo | 8756dd9 | 2014-07-01 16:03:00 +0800 | [diff] [blame] | 15 | static const char * const vf610_dt_compat[] __initconst = { |
Stefan Agner | da06aae | 2014-11-28 00:27:05 +0100 | [diff] [blame] | 16 | "fsl,vf500", |
| 17 | "fsl,vf510", |
| 18 | "fsl,vf600", |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 19 | "fsl,vf610", |
Stefan Agner | 8064887 | 2015-05-20 00:03:52 +0200 | [diff] [blame] | 20 | "fsl,vf610m4", |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 21 | NULL, |
| 22 | }; |
| 23 | |
Stefan Agner | da06aae | 2014-11-28 00:27:05 +0100 | [diff] [blame] | 24 | DT_MACHINE_START(VYBRID_VF610, "Freescale Vybrid VF5xx/VF6xx (Device Tree)") |
Russell King | b9f71aa | 2014-04-28 15:48:14 +0100 | [diff] [blame] | 25 | .l2c_aux_val = 0, |
| 26 | .l2c_aux_mask = ~0, |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 27 | .dt_compat = vf610_dt_compat, |
Jingchang Lu | 5be913c | 2013-05-28 17:12:21 +0800 | [diff] [blame] | 28 | MACHINE_END |