/*-1* SPDX-License-Identifier: BSD-2-Clause2*3* Copyright (c) 2018, 2019 Rubicon Communications, LLC (Netgate)4*5* Redistribution and use in source and binary forms, with or without6* modification, are permitted provided that the following conditions7* are met:8* 1. Redistributions of source code must retain the above copyright9* notice, this list of conditions and the following disclaimer.10* 2. Redistributions in binary form must reproduce the above copyright11* notice, this list of conditions and the following disclaimer in the12* documentation and/or other materials provided with the distribution.13*14* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND15* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE16* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE17* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE18* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL19* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS20* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)21* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT22* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY23* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF24* SUCH DAMAGE.25*/2627#ifndef _A37X0_IICREG_H_28#define _A37X0_IICREG_H_2930#define A37X0_IIC_IBMR 0x0031#define A37X0_IIC_IDBR 0x0432#define A37X0_IIC_ICR 0x0833#define ICR_START (1 << 0)34#define ICR_STOP (1 << 1)35#define ICR_ACKNAK (1 << 2)36#define ICR_TB (1 << 3)37#define ICR_MA (1 << 4)38#define ICR_SCLE (1 << 5)39#define ICR_IUE (1 << 6)40#define ICR_GCD (1 << 7)41#define ICR_ITEIE (1 << 8)42#define ICR_IRFIE (1 << 9)43#define ICR_BEIE (1 << 10)44#define ICR_SSDIE (1 << 11)45#define ICR_ALDIE (1 << 12)46#define ICR_SADIE (1 << 13)47#define ICR_UR (1 << 14)48#define ICR_FAST_MODE (1 << 16)49#define ICR_HIGH_SPEED (1 << 17)50#define ICR_MODE_MASK (ICR_FAST_MODE | ICR_HIGH_SPEED)51#define ICR_INIT \52(ICR_BEIE | ICR_IRFIE | ICR_ITEIE | ICR_GCD | ICR_SCLE)53#define A37X0_IIC_ISR 0x0c54#define ISR_RWM (1 << 0)55#define ISR_ACKNAK (1 << 1)56#define ISR_UB (1 << 2)57#define ISR_IBB (1 << 3)58#define ISR_SSD (1 << 4)59#define ISR_ALD (1 << 5)60#define ISR_ITE (1 << 6)61#define ISR_IRF (1 << 7)62#define ISR_GCAD (1 << 8)63#define ISR_SAD (1 << 9)64#define ISR_BED (1 << 10)6566#endif /* _A37X0_IICREG_H_ */676869