1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-w90x900/nuc950.c
5 * Based on linux/arch/arm/plat-s3c24xx/s3c244x.c by Ben Dooks
7 * Copyright (c) 2008 Nuvoton technology 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
*nuc950_dev
[] __initdata
= {
28 /* define specific CPU platform io map */
30 static struct map_desc nuc950evb_iodesc
[] __initdata
= {
33 /*Init NUC950 evb io*/
35 void __init
nuc950_map_io(void)
37 nuc900_map_io(nuc950evb_iodesc
, ARRAY_SIZE(nuc950evb_iodesc
));
42 void __init
nuc950_init_clocks(void)
47 /*Init NUC950 board info*/
49 void __init
nuc950_board_init(void)
51 nuc900_board_init(nuc950_dev
, ARRAY_SIZE(nuc950_dev
));