These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / staging / board / kzm9d.c
1 /* Staging board support for KZM9D. Enable not-yet-DT-capable devices here. */
2
3 #include <linux/kernel.h>
4 #include <linux/platform_device.h>
5 #include "board.h"
6
7 static struct resource usbs1_res[] __initdata = {
8         DEFINE_RES_MEM(0xe2800000, 0x2000),
9         DEFINE_RES_IRQ(159),
10 };
11
12 static void __init kzm9d_init(void)
13 {
14         board_staging_gic_setup_xlate("arm,cortex-a9-gic", 32);
15
16         if (!board_staging_dt_node_available(usbs1_res,
17                                              ARRAY_SIZE(usbs1_res))) {
18                 board_staging_gic_fixup_resources(usbs1_res,
19                                                   ARRAY_SIZE(usbs1_res));
20                 platform_device_register_simple("emxx_udc", -1, usbs1_res,
21                                                 ARRAY_SIZE(usbs1_res));
22         }
23 }
24
25 board_staging("renesas,kzm9d", kzm9d_init);