https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 6e9ffcb5c769f77654019c8b557d6240461c7d35 authored by Jason Self on 28 February 2013, 14:33:46 UTC
Linux-libre 3.0.67-gnu1
Tip revision: 6e9ffcb
system.c
/*
 * System functions for Telechips TCCxxxx SoCs
 *
 * Copyright (C) Hans J. Koch <hjk@linutronix.de>
 *
 * Licensed under the terms of the GPL v2.
 *
 */

#include <linux/io.h>

#include <mach/tcc8k-regs.h>

/* System reboot */
void plat_tcc_reboot(void)
{
	/* Make sure clocks are on */
	__raw_writel(0xffffffff, CKC_BASE + BCLKCTR0_OFFS);

	/* Enable watchdog reset */
	__raw_writel(0x49, TIMER_BASE + TWDCFG_OFFS);
	/* Wait for reset */
	while(1)
		;
}
back to top