at91rm9200.c 1.2 KB
Newer Older
1
/*
2
 * arch/arm/mach-at91/at91rm9200.c
3 4 5 6 7 8 9 10 11 12 13
 *
 *  Copyright (C) 2005 SAN People
 *
 * 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; either version 2 of the License, or
 * (at your option) any later version.
 *
 */

#include <linux/module.h>
14
#include <linux/clk/at91_pmc.h>
15 16

#include <asm/mach/map.h>
17
#include <asm/system_misc.h>
18
#include <mach/at91_st.h>
19
#include <mach/hardware.h>
20

21
#include "soc.h"
22
#include "generic.h"
A
Andrew Victor 已提交
23

24

25
static void at91rm9200_restart(enum reboot_mode reboot_mode, const char *cmd)
26 27 28 29
{
	/*
	 * Perform a hardware reset with the use of the Watchdog timer.
	 */
30 31
	at91_st_write(AT91_ST_WDMR, AT91_ST_RSTEN | AT91_ST_EXTEN | 1);
	at91_st_write(AT91_ST_CR, AT91_ST_WDRST);
32 33
}

A
Andrew Victor 已提交
34 35 36 37
/* --------------------------------------------------------------------
 *  AT91RM9200 processor initialization
 * -------------------------------------------------------------------- */

38
static void __init at91rm9200_initialize(void)
39
{
40
	arm_pm_idle = at91rm9200_idle;
41
	arm_pm_restart = at91rm9200_restart;
42 43
}

44
AT91_SOC_START(at91rm9200)
45
	.init = at91rm9200_initialize,
46
AT91_SOC_END