2020-01-12 20:48:42 +03:00
|
|
|
/* $NetBSD: gttwsivar.h,v 1.6 2020/01/12 17:48:42 thorpej Exp $ */
|
2013-09-06 04:56:12 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Eiji Kawauchi.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed for the NetBSD Project by
|
|
|
|
* Eiji Kawauchi.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2005 Brocade Communcations, inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Written by Matt Thomas for Brocade Communcations, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of Brocade Communications, Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY BROCADE COMMUNICATIONS, INC. ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL EITHER BROCADE COMMUNICATIONS, INC. BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DEV_MARVELL_GTTWSIVAR_H_
|
|
|
|
#define _DEV_MARVELL_GTTWSIVAR_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Marvell Two-Wire Serial Interface (aka I2C) master driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/condvar.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
|
|
|
|
#include <dev/i2c/i2cvar.h>
|
|
|
|
|
|
|
|
struct gttwsi_softc {
|
|
|
|
device_t sc_dev;
|
|
|
|
bus_space_tag_t sc_bust;
|
|
|
|
bus_space_handle_t sc_bush;
|
|
|
|
bool sc_started;
|
|
|
|
struct i2c_controller sc_i2c;
|
|
|
|
kmutex_t sc_buslock;
|
|
|
|
kmutex_t sc_mtx;
|
|
|
|
kcondvar_t sc_cv;
|
2014-11-23 16:37:27 +03:00
|
|
|
|
2020-01-12 20:48:42 +03:00
|
|
|
const bus_size_t *sc_regmap; /* GTTWSI_NREGS entries */
|
2017-10-29 17:59:05 +03:00
|
|
|
|
2020-01-12 20:48:42 +03:00
|
|
|
bool sc_iflg_rwc;
|
2013-09-06 04:56:12 +04:00
|
|
|
};
|
|
|
|
|
2020-01-12 20:48:42 +03:00
|
|
|
void gttwsi_attach_subr(device_t, bus_space_tag_t, bus_space_handle_t,
|
|
|
|
const bus_size_t *);
|
2013-09-06 04:56:12 +04:00
|
|
|
void gttwsi_config_children(device_t);
|
|
|
|
|
2020-01-12 20:48:42 +03:00
|
|
|
uint32_t gttwsi_read_4(struct gttwsi_softc *, uint32_t);
|
|
|
|
void gttwsi_write_4(struct gttwsi_softc *, uint32_t, uint32_t);
|
|
|
|
|
2013-09-06 04:56:12 +04:00
|
|
|
int gttwsi_intr(void *);
|
|
|
|
|
|
|
|
#endif /* _DEV_MARVELL_GTTSWI_VAR_H_ */
|