forked from Minki/linux
a62e90308f
The previous nuc932 support patches have been discarded by me and because it belongs to another SoCs series named nuc93x,at present, which included nuc931 and nuc932, I think it is better to create a new mach-nuc93x,So I made the patch,and request your advice.Thanks! Signed-off-by: Wan ZongShun <mcuos.com@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
/*
|
|
* linux/arch/arm/mach-nuc93x/dev.c
|
|
*
|
|
* Copyright (C) 2009 Nuvoton corporation.
|
|
*
|
|
* Wan ZongShun <mcuos.com@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation;version 2 of the License.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/types.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/list.h>
|
|
#include <linux/timer.h>
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach/map.h>
|
|
#include <asm/mach/irq.h>
|
|
#include <asm/mach-types.h>
|
|
|
|
#include "cpu.h"
|
|
|
|
/*Here should be your evb resourse,such as LCD*/
|
|
|
|
static struct platform_device *nuc93x_public_dev[] __initdata = {
|
|
&nuc93x_serial_device,
|
|
};
|
|
|
|
/* Provide adding specific CPU platform devices API */
|
|
|
|
void __init nuc93x_board_init(struct platform_device **device, int size)
|
|
{
|
|
platform_add_devices(device, size);
|
|
platform_add_devices(nuc93x_public_dev, ARRAY_SIZE(nuc93x_public_dev));
|
|
}
|
|
|