Path: blob/master/arch/arm/mach-nuc93x/mach-nuc932evb.c
10817 views
/*1* linux/arch/arm/mach-w90x900/mach-nuc910evb.c2*3* Based on mach-s3c2410/mach-smdk2410.c by Jonas Dietsche4*5* Copyright (C) 2008 Nuvoton technology corporation.6*7* Wan ZongShun <[email protected]>8*9* This program is free software; you can redistribute it and/or10* modify it under the terms of the GNU General Public License as11* published by the Free Software Foundation;version 2 of the License.12*13*/1415#include <linux/platform_device.h>16#include <asm/mach/arch.h>17#include <asm/mach/map.h>18#include <asm/mach-types.h>19#include <mach/map.h>2021#include "nuc932.h"2223static void __init nuc932evb_map_io(void)24{25nuc932_map_io();26nuc932_init_clocks();27nuc932_init_uartclk();28}2930static void __init nuc932evb_init(void)31{32nuc932_board_init();33}3435MACHINE_START(NUC932EVB, "NUC932EVB")36/* Maintainer: Wan ZongShun */37.boot_params = 0,38.map_io = nuc932evb_map_io,39.init_irq = nuc93x_init_irq,40.init_machine = nuc932evb_init,41.timer = &nuc93x_timer,42MACHINE_END434445