u-boot-brain/arch/arm/cpu/pxa/timer.c

17 lines
259 B
C
Raw Normal View History

2002-10-11 16:57:01 +09:00
/*
* Marvell PXA2xx/3xx timer driver
2002-10-11 16:57:01 +09:00
*
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
2002-10-11 16:57:01 +09:00
*
* SPDX-License-Identifier: GPL-2.0+
2002-10-11 16:57:01 +09:00
*/
#include <common.h>
#include <asm/io.h>
2002-10-11 16:57:01 +09:00
int timer_init(void)
2002-10-11 16:57:01 +09:00
{
writel(0, CONFIG_SYS_TIMER_COUNTER);
return 0;
2002-10-11 16:57:01 +09:00
}