From: Thomas Chou <thomas@wytron.com.tw>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c
Date: Mon, 7 Sep 2015 16:00:07 +0800 [thread overview]
Message-ID: <55ED4407.2020101@wytron.com.tw> (raw)
In-Reply-To: <1441360276-4792-2-git-send-email-marex@denx.de>
Hi Marek,
On 09/04/2015 05:51 PM, Marek Vasut wrote
> diff --git a/arch/nios2/cpu/timer.c b/arch/nios2/cpu/timer.c
> new file mode 100644
> index 0000000..006b19b
> --- /dev/null
> +++ b/arch/nios2/cpu/timer.c
> @@ -0,0 +1,69 @@
> +/*
> + * (C) Copyright 2000-2002
> + * Wolfgang Denk, DENX Software Engineering, wd at denx.de.
> + *
> + * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
> + * Scott McNutt <smcnutt@psyent.com>
> + *
> + * SPDX-License-Identifier: GPL-2.0+
> + */
> +
> +#include <common.h>
> +#include <asm/nios2.h>
> +#include <asm/types.h>
> +#include <asm/io.h>
> +
> +struct nios_timer {
> + u32 status; /* Timer status reg */
> + u32 control; /* Timer control reg */
> + u32 periodl; /* Timeout period low */
> + u32 periodh; /* Timeout period high */
> + u32 snapl; /* Snapshot low */
> + u32 snaph; /* Snapshot high */
> +};
> +
> +/* status register */
> +#define NIOS_TIMER_TO (1 << 0) /* Timeout */
> +#define NIOS_TIMER_RUN (1 << 1) /* Timer running */
> +
> +/* control register */
> +#define NIOS_TIMER_ITO (1 << 0) /* Timeout int ena */
> +#define NIOS_TIMER_CONT (1 << 1) /* Continuous mode */
> +#define NIOS_TIMER_START (1 << 2) /* Start timer */
> +#define NIOS_TIMER_STOP (1 << 3) /* Stop timer */
> +
> +#if defined(CONFIG_SYS_TIMER_BASE) && !defined(CONFIG_SYS_TIMER_IRQ)
> +#error CONFIG_SYS_TIMER_IRQ not defined (see documentation)
> +#endif
Since the timer interrupt is removed, there is no need to perform the check.
Best regards,
Thomas Chou
next prev parent reply other threads:[~2015-09-07 8:00 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-04 9:51 [U-Boot] [PATCH 1/2] nios2: Switch to generic timer Marek Vasut
2015-09-04 9:51 ` [U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c Marek Vasut
2015-09-07 8:00 ` Thomas Chou [this message]
2015-09-04 13:33 ` [U-Boot] [PATCH 1/2] nios2: Switch to generic timer Thomas Chou
2015-09-04 14:08 ` Marek Vasut
2015-09-05 0:10 ` Thomas Chou
2015-09-07 12:33 ` Marek Vasut
2015-09-05 13:04 ` [U-Boot] [PATCH] nios2: configure STATUS_LED_BOOT Thomas Chou
2015-09-05 13:11 ` Marek Vasut
2015-09-06 11:35 ` Thomas Chou
2015-09-06 11:56 ` Marek Vasut
2015-09-15 8:39 ` Thomas Chou
2015-09-07 1:10 ` [U-Boot] [PATCH 1/2] nios2: Switch to generic timer Thomas Chou
2015-09-07 9:32 ` Marek Vasut
2015-09-07 11:15 ` Thomas Chou
-- strict thread matches above, loose matches on Subject: below --
2015-09-07 12:31 [U-Boot] [PATCH V2 " Marek Vasut
2015-09-07 12:31 ` [U-Boot] [PATCH 2/2] nios2: Split timer code into timer.c Marek Vasut
2015-09-07 14:10 ` Thomas Chou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55ED4407.2020101@wytron.com.tw \
--to=thomas@wytron.com.tw \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.