Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 26291c54e111ff6ba87a164d85d4a4e134b7315c authored by Linus Torvalds on 30 January 2022, 13:37:07 UTC
Linux 5.17-rc2
Tip revision: 26291c5
kzm9d.c
// SPDX-License-Identifier: GPL-2.0
/* Staging board support for KZM9D. Enable not-yet-DT-capable devices here. */

#include <linux/kernel.h>
#include <linux/platform_device.h>
#include "board.h"

static struct resource usbs1_res[] __initdata = {
	DEFINE_RES_MEM(0xe2800000, 0x2000),
	DEFINE_RES_IRQ(159),
};

static void __init kzm9d_init(void)
{
	board_staging_gic_setup_xlate("arm,pl390", 32);

	if (!board_staging_dt_node_available(usbs1_res,
					     ARRAY_SIZE(usbs1_res))) {
		board_staging_gic_fixup_resources(usbs1_res,
						  ARRAY_SIZE(usbs1_res));
		platform_device_register_simple("emxx_udc", -1, usbs1_res,
						ARRAY_SIZE(usbs1_res));
	}
}

board_staging("renesas,kzm9d", kzm9d_init);
back to top