timer.c 259 B

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