1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-w90x900/nuc960.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>
19 /* define specific CPU platform device */
21 static struct platform_device
*nuc960_dev
[] __initdata
= {
26 /* define specific CPU platform io map */
28 static struct map_desc nuc960evb_iodesc
[] __initdata
= {
31 /*Init NUC960 evb io*/
33 void __init
nuc960_map_io(void)
35 nuc900_map_io(nuc960evb_iodesc
, ARRAY_SIZE(nuc960evb_iodesc
));
40 void __init
nuc960_init_clocks(void)
45 /*Init NUC960 board info*/
47 void __init
nuc960_board_init(void)
49 nuc900_board_init(nuc960_dev
, ARRAY_SIZE(nuc960_dev
));