timer.c 256 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Marvell PXA2xx/3xx timer driver
  4. *
  5. * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
  6. */
  7. #include <common.h>
  8. #include <asm/io.h>
  9. int timer_init(void)
  10. {
  11. writel(0, CONFIG_SYS_TIMER_COUNTER);
  12. return 0;
  13. }