1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-w90x900/nuc910.c
5 * Based on linux/arch/arm/plat-s3c24xx/s3c244x.c by Ben Dooks
7 * Copyright (c) 2009 Nuvoton corporation.
9 * Wan ZongShun <mcuos.com@gmail.com>
14 #include <linux/platform_device.h>
15 #include <asm/mach/map.h>
16 #include <mach/hardware.h>
20 /* define specific CPU platform device */
22 static struct platform_device
*nuc910_dev
[] __initdata
= {
29 /* define specific CPU platform io map */
31 static struct map_desc nuc910evb_iodesc
[] __initdata
= {
32 IODESC_ENT(USBEHCIHOST
),
33 IODESC_ENT(USBOHCIHOST
),
39 /*Init NUC910 evb io*/
41 void __init
nuc910_map_io(void)
43 nuc900_map_io(nuc910evb_iodesc
, ARRAY_SIZE(nuc910evb_iodesc
));
48 void __init
nuc910_init_clocks(void)
53 /*Init NUC910 board info*/
55 void __init
nuc910_board_init(void)
57 nuc900_board_init(nuc910_dev
, ARRAY_SIZE(nuc910_dev
));