at91_twireg.h revision 167852
1/*-
2 * Copyright (c) 2006 M. Warner Losh.  All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25/* $FreeBSD: head/sys/arm/at91/at91_twireg.h 167852 2007-03-23 22:57:24Z imp $ */
26
27#ifndef ARM_AT91_AT91_TWIREG_H
28#define ARM_AT91_AT91_TWIREG_H
29
30#define TWI_CR		0x00		/* TWI Control Register */
31#define TWI_MMR		0x04		/* TWI Master Mode Register */
32#define TWI_SMR		0x08		/* TWI Master Mode Register */
33#define TWI_IADR	0x0c		/* TWI Internal Address Register */
34#define TWI_CWGR	0x10		/* TWI Clock Waveform Generator Reg */
35		/*	0x14		   reserved */
36		/*	0x18		   reserved */
37		/*	0x1c		   reserved */
38#define TWI_SR		0x20		/* TWI Status Register */
39#define TWI_IER		0x24		/* TWI Interrupt Enable Register */
40#define TWI_IDR		0x28		/* TWI Interrupt Disable Register */
41#define TWI_IMR		0x2c		/* TWI Interrupt Mask Register */
42#define TWI_RHR		0x30		/* TWI Receiver Holding Register */
43#define TWI_THR		0x34		/* TWI Transmit Holding Register */
44
45/* TWI_CR */
46#define TWI_CR_START	(1U << 0)	/* Send a start */
47#define TWI_CR_STOP	(1U << 1)	/* Send a stop */
48#define TWI_CR_MSEN	(1U << 2)	/* Master Transfer Enable */
49#define TWI_CR_MSDIS	(1U << 3)	/* Master Transfer Disable */
50#define TWI_CR_SVEN	(1U << 4)	/* Slave Transfer Enable */
51#define TWI_CR_SVDIS	(1U << 5)	/* Slave Transfer Disable */
52#define TWI_CR_SWRST	(1U << 7)	/* Software Reset */
53
54/* TWI_MMR */
55/* TWI_SMR */
56#define TWI_MMR_IADRSZ(n) ((n) << 8)	/* Set size of transfer */
57#define TWI_MMR_MWRITE	0U		/* Master Read Direction */
58#define TWI_MMR_MREAD	(1U << 12)	/* Master Read Direction */
59#define TWI_MMR_DADR(n)	((n) << 15)	/* Device Address */
60
61/* TWI_CWGR */
62#define TWI_CWGR_CKDIV(x) ((x) << 16)	/* Clock Divider */
63#define TWI_CWGR_CHDIV(x) ((x) << 8)	/* Clock High Divider */
64#define TWI_CWGR_CLDIV(x) ((x) << 0)	/* Clock Low Divider */
65#define TWI_CWGR_DIV(rate) ((AT91C_MASTER_CLOCK /(4*(rate))) - 2)
66
67/* TWI_SR */
68/* TWI_IER */
69/* TWI_IDR */
70/* TWI_IMR */
71#define TWI_SR_TXCOMP	(1U << 0)	/* Transmission Completed */
72#define TWI_SR_RXRDY	(1U << 1)	/* Receive Holding Register Ready */
73#define TWI_SR_TXRDY	(1U << 2)	/* Transmit Holding Register Ready */
74#define TWI_SR_SVREAD	(1U << 3)	/* Slave Read */
75#define TWI_SR_SVACC	(1U << 4)	/* Slave Access */
76#define TWI_SR_GCACC	(1U << 5)	/* General Call Access */
77#define TWI_SR_OVRE	(1U << 6)	/* Overrun error */
78#define TWI_SR_UNRE	(1U << 7)	/* Underrun Error */
79#define TWI_SR_NACK	(1U << 8)	/* Not Acknowledged */
80#define TWI_SR_ARBLST	(1U << 9)	/* Arbitration Lost */
81
82#endif /* ARM_AT91_AT91_TWIREG_H */
83