Linux Audio

Check our new training course

Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/****************************************************************************/
 3
 4/*
 5 *	mcfslt.h -- ColdFire internal Slice (SLT) timer support defines.
 6 *
 7 *	(C) Copyright 2004, Greg Ungerer (gerg@snapgear.com)
 8 *	(C) Copyright 2009, Philippe De Muyter (phdm@macqel.be)
 9 */
10
11/****************************************************************************/
12#ifndef mcfslt_h
13#define mcfslt_h
14/****************************************************************************/
 
 
 
 
 
 
 
15
16/*
17 *	Define the SLT timer register set addresses.
18 */
19#define MCFSLT_STCNT		0x00	/* Terminal count */
20#define MCFSLT_SCR		0x04	/* Control */
21#define MCFSLT_SCNT		0x08	/* Current count */
22#define MCFSLT_SSR		0x0C	/* Status */
23
24/*
25 *	Bit definitions for the SCR control register.
26 */
27#define MCFSLT_SCR_RUN		0x04000000	/* Run mode (continuous) */
28#define MCFSLT_SCR_IEN		0x02000000	/* Interrupt enable */
29#define MCFSLT_SCR_TEN		0x01000000	/* Timer enable */
30
31/*
32 *	Bit definitions for the SSR status register.
33 */
34#define MCFSLT_SSR_BE		0x02000000	/* Bus error condition */
35#define MCFSLT_SSR_TE		0x01000000	/* Timeout condition */
36
37/****************************************************************************/
38#endif	/* mcfslt_h */
v3.1
 
 1/****************************************************************************/
 2
 3/*
 4 *	mcfslt.h -- ColdFire internal Slice (SLT) timer support defines.
 5 *
 6 *	(C) Copyright 2004, Greg Ungerer (gerg@snapgear.com)
 7 *	(C) Copyright 2009, Philippe De Muyter (phdm@macqel.be)
 8 */
 9
10/****************************************************************************/
11#ifndef mcfslt_h
12#define mcfslt_h
13/****************************************************************************/
14
15/*
16 *	Get address specific defines for the 547x.
17 */
18#define MCFSLT_TIMER0		0x900	/* Base address of TIMER0 */
19#define MCFSLT_TIMER1		0x910	/* Base address of TIMER1 */
20
21
22/*
23 *	Define the SLT timer register set addresses.
24 */
25#define MCFSLT_STCNT		0x00	/* Terminal count */
26#define MCFSLT_SCR		0x04	/* Control */
27#define MCFSLT_SCNT		0x08	/* Current count */
28#define MCFSLT_SSR		0x0C	/* Status */
29
30/*
31 *	Bit definitions for the SCR control register.
32 */
33#define MCFSLT_SCR_RUN		0x04000000	/* Run mode (continuous) */
34#define MCFSLT_SCR_IEN		0x02000000	/* Interrupt enable */
35#define MCFSLT_SCR_TEN		0x01000000	/* Timer enable */
36
37/*
38 *	Bit definitions for the SSR status register.
39 */
40#define MCFSLT_SSR_BE		0x02000000	/* Bus error condition */
41#define MCFSLT_SSR_TE		0x01000000	/* Timeout condition */
42
43/****************************************************************************/
44#endif	/* mcfslt_h */