138774Snsouch/*-
238774Snsouch * Copyright (c) 1998 Nicolas Souchu
338774Snsouch * All rights reserved.
438774Snsouch *
538774Snsouch * Redistribution and use in source and binary forms, with or without
638774Snsouch * modification, are permitted provided that the following conditions
738774Snsouch * are met:
838774Snsouch * 1. Redistributions of source code must retain the above copyright
938774Snsouch *    notice, this list of conditions and the following disclaimer.
1038774Snsouch * 2. Redistributions in binary form must reproduce the above copyright
1138774Snsouch *    notice, this list of conditions and the following disclaimer in the
1238774Snsouch *    documentation and/or other materials provided with the distribution.
1338774Snsouch *
1438774Snsouch * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1538774Snsouch * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1638774Snsouch * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1738774Snsouch * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1838774Snsouch * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1938774Snsouch * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2038774Snsouch * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2138774Snsouch * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2238774Snsouch * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2338774Snsouch * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2438774Snsouch * SUCH DAMAGE.
2538774Snsouch *
2650477Speter * $FreeBSD$
2738774Snsouch *
2838774Snsouch */
2938774Snsouch#ifndef __IICBUS_H
3038774Snsouch#define __IICBUS_H
3138774Snsouch
32181304Sjhb#include <sys/_lock.h>
33181304Sjhb#include <sys/_mutex.h>
34181304Sjhb
35167854Simp#define IICBUS_IVAR(d) (struct iicbus_ivar *) device_get_ivars(d)
36167854Simp#define IICBUS_SOFTC(d) (struct iicbus_softc *) device_get_softc(d)
3738774Snsouch
38167854Simpstruct iicbus_softc
39167854Simp{
40167854Simp	device_t dev;		/* Myself */
4138774Snsouch	device_t owner;		/* iicbus owner device structure */
4242442Snsouch	u_char started;		/* address of the 'started' slave
4342442Snsouch				 * 0 if no start condition succeeded */
44181304Sjhb	struct mtx lock;
4538774Snsouch};
4638774Snsouch
47167854Simpstruct iicbus_ivar
48167854Simp{
49167854Simp	uint32_t	addr;
50167854Simp};
51167854Simp
52167854Simpenum {
53167854Simp	IICBUS_IVAR_ADDR		/* Address or base address */
54167854Simp};
55167854Simp
56167854Simp#define IICBUS_ACCESSOR(A, B, T)					\
57181304Sjhb	__BUS_ACCESSOR(iicbus, A, IICBUS, B, T)
58167854Simp
59167854SimpIICBUS_ACCESSOR(addr,		ADDR,		uint32_t)
60167854Simp
61181304Sjhb#define	IICBUS_LOCK(sc)			mtx_lock(&(sc)->lock)
62181304Sjhb#define	IICBUS_UNLOCK(sc)      		mtx_unlock(&(sc)->lock)
63181304Sjhb#define	IICBUS_ASSERT_LOCKED(sc)       	mtx_assert(&(sc)->lock, MA_OWNED)
64181304Sjhb
6538774Snsouchextern int iicbus_generic_intr(device_t dev, int event, char *buf);
6638774Snsouch
67160372Simpextern driver_t iicbus_driver;
68160372Simpextern devclass_t iicbus_devclass;
69160372Simp
7038774Snsouch#endif
71