2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2012-08-05 16:07:21 +00:00
|
|
|
/*
|
2015-02-16 12:16:14 -07:00
|
|
|
* (C) Copyright 2012,2015 Stephen Warren
|
2012-08-05 16:07:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BCM2835_TIMER_H
|
|
|
|
#define _BCM2835_TIMER_H
|
|
|
|
|
2019-11-19 16:01:03 +01:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <asm/arch/base.h>
|
2020-05-10 11:40:08 -06:00
|
|
|
#include <linux/bug.h>
|
2019-11-19 16:01:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BCM2835_TIMER_PHYSADDR ({ BUG_ON(!rpi_bcm283x_base); \
|
|
|
|
rpi_bcm283x_base + 0x00003000; })
|
2012-08-05 16:07:21 +00:00
|
|
|
|
2015-05-04 22:54:35 +02:00
|
|
|
#define BCM2835_TIMER_CS_M3 (1 << 3)
|
|
|
|
#define BCM2835_TIMER_CS_M2 (1 << 2)
|
|
|
|
#define BCM2835_TIMER_CS_M1 (1 << 1)
|
|
|
|
#define BCM2835_TIMER_CS_M0 (1 << 0)
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2012-08-05 16:07:21 +00:00
|
|
|
struct bcm2835_timer_regs {
|
|
|
|
u32 cs;
|
|
|
|
u32 clo;
|
|
|
|
u32 chi;
|
|
|
|
u32 c0;
|
|
|
|
u32 c1;
|
|
|
|
u32 c2;
|
|
|
|
u32 c3;
|
|
|
|
};
|
|
|
|
#endif
|
2015-05-04 22:54:35 +02:00
|
|
|
|
|
|
|
#endif
|